/* SUPER QUANTUM 2500 Design System */
:root {
	/* Quantum Color Palette */
	--quantum-primary: #00ff88;
	--quantum-secondary: #0099ff;
	--quantum-accent: #ff0066;
	--quantum-warning: #ffaa00;
	--quantum-success: #00ff88;
	--quantum-error: #ff3366;

	/* Dark Theme */
	--bg-primary: #0a0a0f;
	--bg-secondary: #1a1a2e;
	--bg-tertiary: #16213e;
	--bg-card: rgba(26, 26, 46, 0.8);
	--bg-glass: rgba(255, 255, 255, 0.05);

	/* Text Colors */
	--text-primary: #ffffff;
	--text-secondary: #b8b8d1;
	--text-muted: #7a7a95;
	--text-accent: var(--quantum-primary);

	/* Gradients */
	--gradient-primary: linear-gradient(135deg, var(--quantum-primary) 0%, var(--quantum-secondary) 100%);
	--gradient-secondary: linear-gradient(135deg, var(--quantum-secondary) 0%, var(--quantum-accent) 100%);
	--gradient-bg: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
	--gradient-card: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 153, 255, 0.1) 100%);

	/* Shadows */
	--shadow-quantum: 0 20px 40px rgba(0, 255, 136, 0.3);
	--shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
	--shadow-glow: 0 0 20px rgba(0, 255, 136, 0.5);

	/* Borders */
	--border-quantum: 1px solid rgba(0, 255, 136, 0.3);
	--border-glass: 1px solid rgba(255, 255, 255, 0.1);

	/* Typography */
	--font-primary: "Orbitron", monospace;
	--font-secondary: "Exo 2", sans-serif;
	--font-hebrew: "Heebo", "Exo 2", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
	--font-arabic: "Cairo", "Exo 2", system-ui, -apple-system, Segoe UI, Arial, sans-serif;

	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 3rem;
	--spacing-xl: 4rem;
	--spacing-2xl: 6rem;

	/* Border Radius */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 30px;

	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	background: var(--bg-primary);
}

body {
	font-family: var(--font-secondary);
	background: var(--gradient-bg);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	padding-top: 100px;
}

/* Language-aware typography */
html[lang="he"],
html[lang="he-IL"] {
	font-family: var(--font-hebrew);
}
html[lang="he"] body,
html[lang="he-IL"] body {
	font-family: var(--font-hebrew);
}
html[lang="he"],
html[lang="he-IL"] {
	--font-primary: var(--font-hebrew);
	--font-secondary: var(--font-hebrew);
}
html[lang="ar"],
html[lang^="ar-"] {
	font-family: var(--font-arabic);
}
html[lang="ar"] body,
html[lang^="ar-"] body {
	font-family: var(--font-arabic);
}
html[lang="ar"],
html[lang^="ar-"] {
	--font-primary: var(--font-arabic);
	--font-secondary: var(--font-arabic);
}
/* Improve letter spacing for RTL scripts */
html[dir="rtl"] body {
	letter-spacing: 0;
}
/* Ensure number glyphs align nicely in RTL cards */
html[dir="rtl"] .config-value,
html[dir="rtl"] .price,
html[dir="rtl"] .price-value {
	direction: ltr;
}
/* Phone numbers stay LTR in RTL layouts */
.ltr-phone {
	direction: ltr;
	unicode-bidi: isolate;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 15, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: var(--border-glass);
	z-index: 1000;
	transition: var(--transition-normal);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}

.logo {
	height: 40px;
	width: auto;
}

.company-name {
	font-family: var(--font-primary);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--quantum-primary);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: var(--spacing-lg);
}
.nav-right {
	display: flex;
	align-items: center;
	gap: var(--spacing-lg);
	/* Use logical property so it works in RTL/LTR */
	margin-inline-start: auto;
	/* Keep legacy for older browsers */
	margin-left: auto;
}

/* RTL nav alignment fix: prefer logical margin over left */
html[dir="rtl"] .nav-right {
	margin-left: 0;
}

.nav-link {
	text-decoration: none;
	color: var(--text-secondary);
	font-weight: 500;
	transition: var(--transition-fast);
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--quantum-primary);
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-cta {
	background: var(--gradient-primary);
	color: var(--bg-primary);
	padding: var(--spacing-xs) var(--spacing-md);
	border-radius: var(--radius-sm);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition-fast);
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow);
}

/* Nav Dropdown (Services) */
.nav-dropdown {
	position: relative;
}

.nav-dropdown-toggle {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: inherit;
	font-family: inherit;
	padding: 0;
}

.nav-dropdown-arrow {
	transition: var(--transition-fast);
}

.nav-dropdown.is-open .nav-dropdown-arrow {
	transform: rotate(180deg);
}

.nav-dropdown-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	background: rgba(15, 15, 25, 0.97);
	backdrop-filter: blur(20px);
	border: var(--border-glass);
	border-radius: var(--radius-sm);
	min-width: 180px;
	padding: var(--spacing-xs) 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	transform: translateX(-50%) translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-dropdown.is-open .nav-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
	display: block;
	padding: var(--spacing-xs) var(--spacing-md);
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition-fast);
	white-space: nowrap;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
	color: var(--quantum-primary);
	background: rgba(255, 255, 255, 0.05);
}

/* ── Mega dropdown (Features) ── */
.nav-dropdown--mega .nav-mega-menu {
	min-width: 560px;
	padding: var(--spacing-sm);
}
.nav-mega-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.nav-mega-col {
	display: flex;
	flex-direction: column;
}
.nav-mega-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--quantum-primary);
	padding: var(--spacing-xs) var(--spacing-sm);
	margin-bottom: 2px;
	opacity: 0.8;
}
.nav-mega-col .nav-dropdown-item {
	padding: 6px var(--spacing-sm);
	font-size: 0.875rem;
}
.nav-mega-footer {
	border-top: 1px solid rgba(255,255,255,0.08);
	margin-top: var(--spacing-xs);
	padding-top: var(--spacing-xs);
	text-align: center;
}
.nav-mega-all {
	display: inline-block;
	padding: 6px var(--spacing-sm);
	color: var(--quantum-primary);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 600;
	transition: var(--transition-fast);
}
.nav-mega-all:hover {
	text-decoration: underline;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.bar {
	width: 25px;
	height: 3px;
	background: var(--quantum-primary);
	margin: 3px 0;
	transition: var(--transition-fast);
}

/* Hero Section */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: var(--spacing-lg);
}

.hero--landing {
	min-height: calc(100vh - 100px);
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.12) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 153, 255, 0.12) 0%, transparent 50%),
		radial-gradient(circle at 60% 60%, rgba(0, 255, 136, 0.08) 0%, transparent 40%),
		radial-gradient(circle at 40% 80%, rgba(0, 153, 255, 0.06) 0%, transparent 50%);
	animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
	0% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-2xl);
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 600px;
}

.hero-title {
	font-family: var(--font-primary);
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: var(--spacing-md);
}

.title-line {
	display: block;
}

.highlight {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: quantumPulse 2s ease-in-out infinite alternate;
}

@keyframes quantumPulse {
	0% {
		filter: brightness(1);
	}
	100% {
		filter: brightness(1.2);
	}
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: var(--spacing-lg);
	line-height: 1.6;
}

.hero-cta {
	display: flex;
	gap: var(--spacing-md);
	margin-top: var(--spacing-lg);
}

/* Hero Visual */
.hero-visual {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quantum-grid {
	position: absolute;
	width: 100%;
	height: 100%;
}

.grid-line {
	position: absolute;
	background: var(--gradient-primary);
	opacity: 0.3;
	animation: quantumFlow 4s linear infinite;
}

.grid-line:nth-child(1) {
	width: 2px;
	height: 100%;
	left: 20%;
	animation-delay: 0s;
}

.grid-line:nth-child(2) {
	width: 100%;
	height: 2px;
	top: 30%;
	animation-delay: 1s;
}

.grid-line:nth-child(3) {
	width: 2px;
	height: 100%;
	right: 25%;
	animation-delay: 2s;
}

.grid-line:nth-child(4) {
	width: 100%;
	height: 2px;
	bottom: 35%;
	animation-delay: 3s;
}

.grid-line:nth-child(5) {
	width: 2px;
	height: 100%;
	left: 50%;
	animation-delay: 1.5s;
}

@keyframes quantumFlow {
	0%,
	100% {
		opacity: 0.1;
	}
	50% {
		opacity: 0.8;
	}
}

.quantum-nodes {
	position: relative;
	width: 300px;
	height: 300px;
}

.node {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--gradient-primary);
	box-shadow: var(--shadow-glow);
	animation: quantumOrbit 6s linear infinite;
}

.node-1 {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	animation-delay: 0s;
}

.node-2 {
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	animation-delay: 1.2s;
}

.node-3 {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	animation-delay: 2.4s;
}

.node-4 {
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	animation-delay: 3.6s;
}

.node-5 {
	top: 25%;
	right: 25%;
	animation-delay: 4.8s;
}

@keyframes quantumOrbit {
	0% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
	50% {
		transform: scale(1.5) rotate(180deg);
		opacity: 0.6;
	}
	100% {
		transform: scale(1) rotate(360deg);
		opacity: 1;
	}
}

/* Buttons */
.btn {
	display: inline-block;
	padding: var(--spacing-sm) var(--spacing-lg);
	border-radius: var(--radius-md);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	transition: var(--transition-fast);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: var(--transition-slow);
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: var(--gradient-primary);
	color: var(--bg-primary);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-quantum);
}

.btn-secondary {
	background: transparent;
	color: var(--quantum-primary);
	border: 2px solid var(--quantum-primary);
}

.btn-secondary:hover {
	background: var(--quantum-primary);
	color: var(--bg-primary);
	transform: translateY(-3px);
}

/* Sections */
section {
	padding: var(--spacing-2xl) 0;
	position: relative;
}

.section-title {
	font-family: var(--font-primary);
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: var(--spacing-xl);
}

.section-description {
	font-size: 1.125rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: var(--spacing-lg);
}

/* Proper AI Section */
.proper-ai {
	background: var(--bg-secondary);
	border-top: none;
	border-bottom: none;
	overflow: hidden;
}

.proper-ai::before,
.proper-ai::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.3;
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}

.proper-ai::before { top: 0; }
.proper-ai::after { bottom: 0; animation-delay: -4s; }

.proper-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-2xl);
	align-items: center;
}

.proper-benefits {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	padding: var(--spacing-sm) var(--spacing-md);
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: background var(--transition-normal), border-color var(--transition-normal),
		box-shadow var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.benefit-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 15%;
	right: 15%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.3;
	transition: opacity var(--transition-normal);
}

.benefit-item:hover {
	background: rgba(0, 255, 136, 0.03);
	border-color: rgba(0, 255, 136, 0.12);
	box-shadow: 0 0 20px rgba(0, 255, 136, 0.05);
	transform: none;
}

.benefit-item:hover::before {
	opacity: 0.8;
}

.benefit-icon {
	width: 32px;
	height: 32px;
	min-width: 32px;
	color: var(--quantum-primary);
	flex-shrink: 0;
	background: rgba(0, 255, 136, 0.06);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition-normal), border-color var(--transition-normal),
		box-shadow var(--transition-normal);
	animation: iconBreath 4s ease-in-out infinite;
}

.benefit-item:nth-child(2) .benefit-icon { animation-delay: 0.7s; }
.benefit-item:nth-child(3) .benefit-icon { animation-delay: 1.4s; }
.benefit-item:nth-child(4) .benefit-icon { animation-delay: 2.1s; }
.benefit-item:nth-child(5) .benefit-icon { animation-delay: 2.8s; }

.benefit-item:hover .benefit-icon {
	background: rgba(0, 255, 136, 0.1);
	border-color: rgba(0, 255, 136, 0.25);
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.15);
}

.benefit-icon svg {
	width: 16px;
	height: 16px;
}

/* Robot Visual */
.proper-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.robot {
	position: relative;
	width: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: robotFloat 5s ease-in-out infinite;
	filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.15));
}

@keyframes robotFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}

/* ── Ambient glow behind robot ── */
.robot-glow {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 340px;
	border-radius: 50%;
	background: radial-gradient(ellipse, rgba(0, 255, 136, 0.1) 0%, rgba(0, 153, 255, 0.06) 40%, transparent 70%);
	z-index: -1;
	animation: robotGlowPulse 5s ease-in-out infinite;
}

@keyframes robotGlowPulse {
	0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
	50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* ── Antenna ── */
.robot-antenna {
	position: relative;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	margin-bottom: -4px;
	z-index: 2;
}

.robot-antenna-rod {
	width: 2px;
	height: 32px;
	background: linear-gradient(to top, rgba(0, 255, 136, 0.3), rgba(0, 255, 136, 0.08));
	position: absolute;
	bottom: 0;
}

.robot-antenna-tip {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 10px var(--quantum-primary), 0 0 25px rgba(0, 255, 136, 0.4);
	animation: antennaPulse 2s ease-in-out infinite;
}

@keyframes antennaPulse {
	0%, 100% { box-shadow: 0 0 10px var(--quantum-primary), 0 0 25px rgba(0, 255, 136, 0.4); transform: translateX(-50%) scale(1); }
	50% { box-shadow: 0 0 16px var(--quantum-primary), 0 0 35px rgba(0, 255, 136, 0.5); transform: translateX(-50%) scale(1.2); }
}

/* Signal rings from antenna */
.robot-antenna-signal {
	position: absolute;
	top: 2px;
	left: 50%;
	transform: translateX(-50%);
	width: 10px;
	height: 10px;
	border: 1px solid rgba(0, 255, 136, 0.4);
	border-radius: 50%;
	animation: signalExpand 3s ease-out infinite;
}

.robot-antenna-signal--2 {
	animation-delay: 1.5s;
}

@keyframes signalExpand {
	0% { width: 10px; height: 10px; opacity: 0.6; }
	100% { width: 50px; height: 50px; opacity: 0; }
}

/* ── Ears ── */
.robot-ear {
	position: absolute;
	top: 72px;
	width: 14px;
	height: 40px;
	background: linear-gradient(180deg, rgba(30, 40, 65, 0.93), rgba(22, 30, 50, 0.95));
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: 6px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.robot-ear--left { left: 54px; border-radius: 6px 0 0 6px; border-right: none; box-shadow: -2px 0 8px rgba(0, 255, 136, 0.06); }
.robot-ear--right { right: 54px; border-radius: 0 6px 6px 0; border-left: none; box-shadow: 2px 0 8px rgba(0, 255, 136, 0.06); }

.robot-ear-light {
	width: 4px;
	height: 16px;
	border-radius: 2px;
	background: var(--quantum-secondary);
	opacity: 0.4;
	animation: earPulse 3s ease-in-out infinite;
}

.robot-ear--right .robot-ear-light { animation-delay: 1.5s; }

@keyframes earPulse {
	0%, 100% { opacity: 0.2; height: 12px; }
	50% { opacity: 0.7; height: 20px; }
}

/* ── Head ── */
.robot-head {
	width: 140px;
	height: 105px;
	background: linear-gradient(180deg, rgba(30, 40, 65, 0.95), rgba(22, 30, 50, 0.97));
	border: 1px solid rgba(0, 255, 136, 0.25);
	border-radius: 30px 30px 20px 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	box-shadow:
		0 4px 30px rgba(0, 0, 0, 0.3),
		0 0 25px rgba(0, 255, 136, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		inset 0 -1px 0 rgba(0, 255, 136, 0.05);
	z-index: 2;
}

/* Visor — the eye panel */
.robot-visor {
	width: 108px;
	height: 38px;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	position: relative;
	overflow: hidden;
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Scanning line across visor */
.robot-visor-scan {
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.08), transparent);
	animation: visorScan 4s ease-in-out infinite;
}

@keyframes visorScan {
	0%   { left: -30%; }
	100% { left: 130%; }
}

/* Eyes */
.robot-eye {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: radial-gradient(circle at 40% 35%, #66ffbb, var(--quantum-primary));
	box-shadow: 0 0 10px var(--quantum-primary), 0 0 25px rgba(0, 255, 136, 0.25);
	position: relative;
	animation: eyeGlow 3s ease-in-out infinite;
	z-index: 1;
}

/* Pupil / highlight */
.robot-eye::before {
	content: '';
	position: absolute;
	top: 3px;
	left: 5px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	animation: eyeLook 7s ease-in-out infinite;
}

/* Iris ring */
.robot-eye::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	border: 1px solid rgba(0, 255, 136, 0.3);
}

.robot-eye--right::before { animation-delay: 0.05s; }

@keyframes eyeGlow {
	0%, 100% { box-shadow: 0 0 10px var(--quantum-primary), 0 0 25px rgba(0, 255, 136, 0.25); }
	50% { box-shadow: 0 0 16px var(--quantum-primary), 0 0 35px rgba(0, 255, 136, 0.35); }
}

@keyframes eyeLook {
	0%, 35%, 100% { transform: translate(0, 0); }
	40%, 50%  { transform: translate(3px, -1px); }
	55%, 65%  { transform: translate(-3px, 1px); }
	70%, 80%  { transform: translate(1px, 2px); }
}

/* Mouth — equalizer bars */
.robot-mouth {
	display: flex;
	align-items: flex-end;
	gap: 3px;
	height: 14px;
}

.robot-mouth-bar {
	width: 4px;
	border-radius: 2px;
	background: var(--quantum-primary);
	opacity: 0.5;
	animation: mouthBar 1.8s ease-in-out infinite;
}

.robot-mouth-bar:nth-child(1) { height: 6px; animation-delay: 0s; }
.robot-mouth-bar:nth-child(2) { height: 10px; animation-delay: 0.15s; }
.robot-mouth-bar:nth-child(3) { height: 14px; animation-delay: 0.3s; }
.robot-mouth-bar:nth-child(4) { height: 10px; animation-delay: 0.45s; }
.robot-mouth-bar:nth-child(5) { height: 6px; animation-delay: 0.6s; }

@keyframes mouthBar {
	0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
	50% { transform: scaleY(1); opacity: 0.7; }
}

/* ── Neck ── */
.robot-neck {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	z-index: 1;
}

.robot-neck-ring {
	width: 28px;
	height: 5px;
	background: linear-gradient(180deg, rgba(0, 255, 136, 0.08), rgba(0, 255, 136, 0.03));
	border: 1px solid rgba(0, 255, 136, 0.1);
	border-radius: 2px;
}

.robot-neck-ring:first-child { width: 32px; }

/* ── Body ── */
.robot-body {
	width: 170px;
	height: 140px;
	background: linear-gradient(180deg, rgba(18, 22, 36, 0.97), rgba(10, 13, 22, 0.99));
	border: 1px solid rgba(0, 255, 136, 0.2);
	border-radius: 14px 14px 24px 24px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 20px;
	gap: 12px;
	box-shadow:
		0 6px 40px rgba(0, 0, 0, 0.3),
		0 0 25px rgba(0, 255, 136, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		inset 0 -1px 0 rgba(0, 255, 136, 0.04);
	z-index: 1;
}

/* Chest core — reactor */
.robot-chest {
	position: relative;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.robot-core {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: radial-gradient(circle at 40% 35%, #44bbff, var(--quantum-secondary));
	box-shadow: 0 0 12px var(--quantum-secondary), 0 0 30px rgba(0, 153, 255, 0.3);
	animation: corePulse 2.5s ease-in-out infinite;
	z-index: 1;
}

.robot-core-ring {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(0, 153, 255, 0.3);
	border-radius: 50%;
	animation: coreRingSpin 8s linear infinite;
	border-top-color: rgba(0, 255, 136, 0.4);
}

@keyframes corePulse {
	0%, 100% { box-shadow: 0 0 12px var(--quantum-secondary), 0 0 30px rgba(0, 153, 255, 0.3); transform: scale(1); }
	50% { box-shadow: 0 0 20px var(--quantum-secondary), 0 0 45px rgba(0, 153, 255, 0.4); transform: scale(1.1); }
}

@keyframes coreRingSpin {
	to { transform: rotate(360deg); }
}

/* Circuit lines on body */
.robot-circuits {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 70%;
}

.robot-circuit-line {
	height: 1px;
	border-radius: 1px;
	background: linear-gradient(90deg, transparent 10%, rgba(0, 255, 136, 0.12) 30%, rgba(0, 153, 255, 0.1) 70%, transparent 90%);
	position: relative;
}

/* Traveling light on circuit lines */
.robot-circuit-line::after {
	content: '';
	position: absolute;
	top: -1px;
	left: -20%;
	width: 20%;
	height: 3px;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
	animation: circuitFlow 3s linear infinite;
}

.robot-circuit-line:nth-child(2)::after { animation-delay: -1s; animation-direction: reverse; }
.robot-circuit-line:nth-child(3)::after { animation-delay: -2s; }

@keyframes circuitFlow {
	0%   { left: -20%; }
	100% { left: 120%; }
}

/* Vent slits at bottom of body */
.robot-vent {
	display: flex;
	gap: 5px;
	margin-top: auto;
	margin-bottom: 14px;
}

.robot-vent-line {
	width: 3px;
	height: 12px;
	border-radius: 1px;
	background: rgba(0, 255, 136, 0.08);
	border: 1px solid rgba(0, 255, 136, 0.06);
	animation: ventGlow 3s ease-in-out infinite;
}

.robot-vent-line:nth-child(2) { animation-delay: 0.3s; }
.robot-vent-line:nth-child(3) { animation-delay: 0.6s; }
.robot-vent-line:nth-child(4) { animation-delay: 0.9s; }

@keyframes ventGlow {
	0%, 100% { background: rgba(0, 255, 136, 0.06); }
	50% { background: rgba(0, 255, 136, 0.18); }
}

/* ── Arms ── */
.robot-arm {
	position: absolute;
	top: 152px;
	width: 22px;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 0;
}

.robot-arm--left {
	left: 40px;
	transform-origin: top center;
	animation: armSwayLeft 5s ease-in-out infinite;
}

.robot-arm--right {
	right: 40px;
	transform-origin: top center;
	animation: armSwayRight 5s ease-in-out infinite;
}

@keyframes armSwayLeft {
	0%, 100% { transform: rotate(4deg); }
	50% { transform: rotate(-4deg); }
}

@keyframes armSwayRight {
	0%, 100% { transform: rotate(-4deg); }
	50% { transform: rotate(4deg); }
}

.robot-shoulder {
	width: 20px;
	height: 18px;
	background: linear-gradient(180deg, rgba(30, 40, 65, 0.93), rgba(24, 32, 52, 0.95));
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 6px 6px 4px 4px;
}

.robot-forearm {
	width: 16px;
	height: 40px;
	background: linear-gradient(180deg, rgba(28, 38, 62, 0.93), rgba(22, 30, 48, 0.95));
	border: 1px solid rgba(0, 255, 136, 0.1);
	border-radius: 4px;
	margin-top: 3px;
}

.robot-hand {
	width: 18px;
	height: 14px;
	background: linear-gradient(180deg, rgba(26, 36, 58, 0.93), rgba(20, 28, 46, 0.95));
	border: 1px solid rgba(0, 255, 136, 0.1);
	border-radius: 4px 4px 8px 8px;
	margin-top: 2px;
}

/* ── Base / hover-pad ── */
.robot-base {
	width: 100px;
	height: 8px;
	background: linear-gradient(180deg, rgba(30, 40, 65, 0.85), rgba(22, 30, 50, 0.5));
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: 0 0 50% 50% / 0 0 100% 100%;
	margin-top: 4px;
	position: relative;
}

.robot-base-glow {
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 14px;
	background: radial-gradient(ellipse, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	animation: baseGlow 5s ease-in-out infinite;
}

@keyframes baseGlow {
	0%, 100% { opacity: 0.6; width: 80px; }
	50% { opacity: 1; width: 100px; }
}

/* Ambient life — icon breathing glow */
@keyframes iconBreath {
	0%, 100% {
		box-shadow: 0 0 0 rgba(0, 255, 136, 0);
		border-color: rgba(0, 255, 136, 0.12);
	}
	50% {
		box-shadow: 0 0 12px rgba(0, 255, 136, 0.15), 0 0 4px rgba(0, 255, 136, 0.1);
		border-color: rgba(0, 255, 136, 0.3);
	}
}

/* Ambient life — gradient line sweep */
@keyframes gradientLineSweep {
	0%, 100% { background-position: 0% 50%; opacity: 0.2; }
	50% { background-position: 100% 50%; opacity: 0.5; }
}

/* Ambient life — small highlight sweeps across the accent line */
@keyframes accentSweep {
	0%   { left: -30%; }
	100% { left: 130%; }
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-lg);
}

.service-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	text-align: center;
	transition: background var(--transition-normal), border-color var(--transition-normal),
		box-shadow var(--transition-normal);
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.4;
	transition: opacity var(--transition-normal);
}

.service-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
	animation: accentSweep 4s linear infinite;
}

.service-card:nth-child(2)::after { animation-delay: -0.7s; }
.service-card:nth-child(3)::after { animation-delay: -1.4s; }
.service-card:nth-child(4)::after { animation-delay: -2.1s; }
.service-card:nth-child(5)::after { animation-delay: -2.8s; }
.service-card:nth-child(6)::after { animation-delay: -3.5s; }

.service-card:hover {
	background: rgba(0, 255, 136, 0.03);
	border-color: rgba(0, 255, 136, 0.12);
	box-shadow: 0 0 25px rgba(0, 255, 136, 0.06), 0 4px 15px rgba(0, 0, 0, 0.2);
	transform: none;
}

.service-card:hover::before {
	opacity: 0.9;
}

.service-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto var(--spacing-md);
	color: var(--quantum-primary);
	background: rgba(0, 255, 136, 0.06);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition-normal), border-color var(--transition-normal),
		box-shadow var(--transition-normal);
	animation: iconBreath 4s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon { animation-delay: 0.6s; }
.service-card:nth-child(3) .service-icon { animation-delay: 1.2s; }
.service-card:nth-child(4) .service-icon { animation-delay: 1.8s; }
.service-card:nth-child(5) .service-icon { animation-delay: 2.4s; }
.service-card:nth-child(6) .service-icon { animation-delay: 3.0s; }

.service-card:hover .service-icon {
	background: rgba(0, 255, 136, 0.1);
	border-color: rgba(0, 255, 136, 0.25);
	box-shadow: 0 0 12px rgba(0, 255, 136, 0.15);
}

.service-icon svg {
	width: 28px;
	height: 28px;
}

.service-card h3 {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	margin-bottom: var(--spacing-sm);
	color: var(--text-primary);
}

.service-card p {
	color: var(--text-secondary);
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--spacing-lg);
}

/* Fixed 3-column grid — skips 2-column tablet breakpoint to avoid orphan */
.features-grid.features-grid--fixed-3 {
	grid-template-columns: repeat(3, 1fr);
}

/* Calculator config rows */
.config-group {
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	padding: var(--spacing-lg);
}

.config-header {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	column-gap: var(--spacing-md);
}

.config-icon {
	width: 28px;
	height: 28px;
	color: var(--quantum-primary);
}
.config-icon svg {
	width: 100%;
	height: 100%;
}

.config-info h3 {
	margin: 0 0 0.25rem 0;
	font-family: var(--font-primary);
	font-size: 1.05rem;
}
.config-value {
	color: var(--quantum-primary);
	font-weight: 700;
}

.config-price {
	text-align: inline-end;
}

/* Ensure consistent gaps in RTL too */
html[dir="rtl"] .config-header {
	column-gap: var(--spacing-md);
}

.slider-container {
	margin-top: var(--spacing-sm);
}
.slider-labels {
	display: flex;
	justify-content: space-between;
	margin-top: 0.5rem;
	color: var(--text-muted);
	font-size: 0.9rem;
}
.gift-info {
	margin-top: 0.5rem;
	color: var(--text-secondary);
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-md);
	padding: var(--spacing-lg);
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	transition: var(--transition-fast);
	position: relative;
}

.feature-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--gradient-card);
	opacity: 0;
	transition: opacity var(--transition-normal);
	z-index: 0;
	border-radius: inherit;
}

.feature-item > * {
	position: relative;
	z-index: 1;
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card);
}

.feature-item:hover::before {
	opacity: 1;
}

.feature-icon {
	width: 40px;
	height: 40px;
	color: var(--quantum-primary);
	flex-shrink: 0;
}

.feature-icon svg {
	width: 100%;
	height: 100%;
}


.feature-item h3 {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	margin-bottom: var(--spacing-xs);
}

.feature-item p {
	color: var(--text-secondary);
}

/* Why Choose — horizontal list layout (distinct from service cards) */
.why-choose {
	position: relative;
}

.why-choose::before,
.why-choose::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.3;
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}

.why-choose::before { top: 0; }
.why-choose::after { bottom: 0; }

.why-choose .features-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	column-gap: var(--spacing-xl);
}

.why-choose .feature-item {
	display: grid;
	grid-template-columns: 38px 1fr;
	grid-template-rows: auto auto;
	gap: 2px var(--spacing-md);
	background: none;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 0;
	padding: var(--spacing-md) 0;
	text-align: start;
	position: relative;
	overflow: visible;
	transition: none;
}

/* Remove bottom border from last item in each column */
.why-choose .feature-item:nth-child(4),
.why-choose .feature-item:nth-child(8) {
	border-bottom: none;
}

.why-choose .feature-item::before {
	display: none;
}

.why-choose .feature-item:hover {
	background: none;
	box-shadow: none;
	transform: none;
}

.why-choose .feature-icon {
	grid-row: 1 / -1;
	width: 38px;
	height: 38px;
	background: rgba(0, 255, 136, 0.06);
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
	transition: border-color var(--transition-normal), box-shadow var(--transition-normal),
		background var(--transition-normal);
	animation: iconBreath 4s ease-in-out infinite;
}

.why-choose .feature-item:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.why-choose .feature-item:nth-child(3) .feature-icon { animation-delay: 1.0s; }
.why-choose .feature-item:nth-child(4) .feature-icon { animation-delay: 1.5s; }
.why-choose .feature-item:nth-child(5) .feature-icon { animation-delay: 2.0s; }
.why-choose .feature-item:nth-child(6) .feature-icon { animation-delay: 2.5s; }
.why-choose .feature-item:nth-child(7) .feature-icon { animation-delay: 3.0s; }
.why-choose .feature-item:nth-child(8) .feature-icon { animation-delay: 3.5s; }

.why-choose .feature-item:hover .feature-icon {
	border-color: rgba(0, 255, 136, 0.4);
	box-shadow: 0 0 12px rgba(0, 255, 136, 0.12);
	background: rgba(0, 255, 136, 0.1);
}

.why-choose .feature-icon svg {
	width: 18px;
	height: 18px;
	color: var(--quantum-primary);
}

.why-choose .feature-item h3 {
	font-size: 1rem;
	white-space: normal;
	margin-bottom: 2px;
	text-align: start;
}

.why-choose .feature-item p {
	font-size: 0.85rem;
	line-height: 1.5;
	text-align: start;
	color: var(--text-muted);
}

/* Testimonials */
.testimonials {
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--spacing-lg);
}

.testimonial-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	transition: var(--transition-fast);
	backdrop-filter: blur(20px);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	border-color: var(--quantum-primary);
}

.testimonial-content {
	margin-bottom: var(--spacing-md);
}

.testimonial-content p {
	font-style: italic;
	color: var(--text-secondary);
	font-size: 1.125rem;
	line-height: 1.6;
}

.testimonial-author h4 {
	color: var(--quantum-primary);
	margin-bottom: var(--spacing-xs);
}

.testimonial-author span {
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* CTA Section */
.cta {
	background: var(--gradient-bg);
	text-align: center;
	padding: var(--spacing-2xl) 0;
	overflow: hidden;
}

.cta::before,
.cta::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.25;
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}

.cta::before { top: 0; }
.cta::after { bottom: 0; animation-delay: -4s; }

.cta-content h2 {
	font-family: var(--font-primary);
	font-size: 2.5rem;
	margin-bottom: var(--spacing-md);
}

.cta-content p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: var(--spacing-lg);
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: var(--spacing-md);
	flex-wrap: wrap;
}

/* Promo Banner */
/* ──────────────────────────────────────────────
   Free Month Promo Banner
   ────────────────────────────────────────────── */
.promo-banner {
	padding: var(--spacing-xl) 0 var(--spacing-2xl);
	position: relative;
	z-index: 1;
	background: var(--bg-secondary);
}

/* Animated separator lines top/bottom */
.promo-banner::before,
.promo-banner::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.4;
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}
.promo-banner::before { top: 0; }
.promo-banner::after { bottom: 0; animation-delay: -4s; }

/* ── Animated background layer ── */
.promo-banner__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}
.promo-banner > .container {
	position: relative;
	z-index: 1;
}

/* Floating orbs */
.promo-banner__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0;
	animation: promoOrbFloat 10s ease-in-out infinite;
}
.promo-banner__orb--1 {
	width: 300px;
	height: 300px;
	background: rgba(0, 255, 136, 0.12);
	top: -60px;
	left: 10%;
	animation-delay: 0s;
}
.promo-banner__orb--2 {
	width: 250px;
	height: 250px;
	background: rgba(0, 153, 255, 0.1);
	bottom: -80px;
	right: 10%;
	animation-delay: -3.3s;
}
.promo-banner__orb--3 {
	width: 200px;
	height: 200px;
	background: rgba(0, 255, 136, 0.08);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: -6.6s;
}

@keyframes promoOrbFloat {
	0%, 100% { opacity: 0.3; transform: translateY(0) scale(1); }
	30% { opacity: 0.7; }
	50% { opacity: 0.5; transform: translateY(-20px) scale(1.1); }
	70% { opacity: 0.7; }
}

/* Subtle dot grid overlay */
.promo-banner__grid {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 32px 32px;
	opacity: 0.6;
}

/* Sweeping light across the whole section */
.promo-banner .container::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(105deg, transparent 40%, rgba(0, 255, 136, 0.04) 45%, rgba(0, 255, 136, 0.06) 50%, rgba(0, 153, 255, 0.04) 55%, transparent 60%);
	animation: promoSweep 8s ease-in-out infinite;
	pointer-events: none;
}

@keyframes promoSweep {
	0%, 100% { left: -100%; }
	50% { left: 140%; }
}

/* ── Content layout ── */
.promo-banner__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--spacing-lg);
	position: relative;
}

/* "Limited Time Offer" label */
.promo-banner__top-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--quantum-primary);
	background: rgba(0, 255, 136, 0.06);
	border: 1px solid rgba(0, 255, 136, 0.2);
	border-radius: 20px;
	padding: 0.4rem 1.4rem;
	animation: promoLabelPulse 3s ease-in-out infinite;
	position: relative;
	overflow: hidden;
}

/* Label shimmer sweep */
.promo-banner__top-label::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.12), transparent);
	animation: promoLabelSweep 3s ease-in-out infinite;
}

@keyframes promoLabelSweep {
	0%, 100% { left: -100%; }
	50% { left: 150%; }
}

@keyframes promoLabelPulse {
	0%, 100% { border-color: rgba(0, 255, 136, 0.2); box-shadow: 0 0 10px rgba(0, 255, 136, 0); }
	50% { border-color: rgba(0, 255, 136, 0.45); box-shadow: 0 0 25px rgba(0, 255, 136, 0.1); }
}

/* ── Headline row: badge + title ── */
.promo-banner__headline {
	display: flex;
	align-items: center;
	gap: var(--spacing-lg);
}

/* Badge — large circle with $0 */
.promo-banner__badge {
	position: relative;
	width: 110px;
	height: 110px;
	flex-shrink: 0;
}

.promo-banner__badge-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: radial-gradient(circle at 40% 35%, rgba(0, 255, 136, 0.12), rgba(0, 153, 255, 0.06) 70%, rgba(0, 255, 136, 0.03));
	border: 1.5px solid rgba(0, 255, 136, 0.3);
	animation: promoBadgePulse 3s ease-in-out infinite;
	position: relative;
	z-index: 1;
}

/* Spinning outer ring */
.promo-banner__badge::before {
	content: '';
	position: absolute;
	inset: -7px;
	border-radius: 50%;
	border: 1.5px solid transparent;
	border-top-color: var(--quantum-primary);
	border-right-color: var(--quantum-secondary);
	animation: promoRingSpin 6s linear infinite;
	opacity: 0.5;
}

/* Second outer ring, opposite direction */
.promo-banner__badge::after {
	content: '';
	position: absolute;
	inset: -14px;
	border-radius: 50%;
	border: 1px dashed transparent;
	border-bottom-color: rgba(0, 255, 136, 0.15);
	border-left-color: rgba(0, 153, 255, 0.12);
	animation: promoRingSpin 10s linear infinite reverse;
	opacity: 0.4;
}

@keyframes promoRingSpin {
	to { transform: rotate(360deg); }
}

@keyframes promoBadgePulse {
	0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.15), 0 0 40px rgba(0, 255, 136, 0.05); }
	50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.3), 0 0 80px rgba(0, 255, 136, 0.1); }
}

.promo-banner__zero {
	font-size: 2.6rem;
	font-weight: 900;
	line-height: 1;
	color: #00ff88;
	text-shadow: 0 0 20px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.15);
	animation: promoZeroPulse 2.5s ease-in-out infinite;
}

@keyframes promoZeroPulse {
	0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.15); }
	50% { text-shadow: 0 0 30px rgba(0, 255, 136, 0.6), 0 0 60px rgba(0, 255, 136, 0.25), 0 0 80px rgba(0, 255, 136, 0.1); }
}

.promo-banner__badge-label {
	font-size: 0.65rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(0, 255, 136, 0.7);
	line-height: 1;
	margin-top: 2px;
}

/* Title + subtitle */
.promo-banner__title-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	text-align: start;
}

.promo-banner__title {
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1.15;
	background: linear-gradient(90deg, #fff 0%, #fff 40%, #00ff88 50%, #fff 60%, #fff 100%);
	background-size: 300% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: promoTitleSweep 5s ease-in-out infinite;
	filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.15));
}

@keyframes promoTitleSweep {
	0%, 100% { background-position: 100% 50%; }
	50% { background-position: 0% 50%; }
}

.promo-banner__subtitle {
	font-size: 1.05rem;
	color: var(--text-secondary);
	max-width: 380px;
}

/* ── Feature pills ── */
.promo-banner__features {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	flex-wrap: wrap;
	justify-content: center;
}

.promo-banner__feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: var(--text-secondary);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 1rem 1.5rem;
	min-width: 130px;
	transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.promo-banner__feature:hover {
	border-color: rgba(0, 255, 136, 0.25);
	background: rgba(0, 255, 136, 0.04);
	box-shadow: 0 0 20px rgba(0, 255, 136, 0.08);
}
.promo-banner__feature svg {
	width: 28px;
	height: 28px;
	stroke: var(--quantum-primary);
	flex-shrink: 0;
	filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.3));
}

/* Feature icon breathing */
.promo-banner__feature:nth-child(1) svg { animation: promoIconBreath 3s ease-in-out infinite; }
.promo-banner__feature:nth-child(2) svg { animation: promoIconBreath 3s 1s ease-in-out infinite; }
.promo-banner__feature:nth-child(3) svg { animation: promoIconBreath 3s 2s ease-in-out infinite; }

@keyframes promoIconBreath {
	0%, 100% { filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.2)); transform: scale(1); }
	50% { filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5)); transform: scale(1.08); }
}

/* Feature border glow staggered */
.promo-banner__feature:nth-child(1) { animation: promoFeatureFadeIn 0.6s 0.1s both, promoFeatureGlow 4s 0s ease-in-out infinite; }
.promo-banner__feature:nth-child(2) { animation: promoFeatureFadeIn 0.6s 0.2s both, promoFeatureGlow 4s 1.3s ease-in-out infinite; }
.promo-banner__feature:nth-child(3) { animation: promoFeatureFadeIn 0.6s 0.3s both, promoFeatureGlow 4s 2.6s ease-in-out infinite; }

@keyframes promoFeatureGlow {
	0%, 100% { border-color: rgba(255, 255, 255, 0.06); }
	50% { border-color: rgba(0, 255, 136, 0.18); }
}

/* CTA arrow icon */
.promo-banner__cta-arrow {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	transition: transform 0.3s;
}
.promo-banner__cta:hover .promo-banner__cta-arrow {
	transform: translateX(4px);
}
[dir="rtl"] .promo-banner__cta-arrow {
	transform: scaleX(-1);
}
[dir="rtl"] .promo-banner__cta:hover .promo-banner__cta-arrow {
	transform: scaleX(-1) translateX(4px);
}

/* ── CTA button ── */
.promo-banner__cta {
	font-size: 1.05rem !important;
	padding: 0.85rem 2.5rem !important;
	display: inline-flex !important;
	align-items: center;
	gap: 0.5rem;
	position: relative;
	overflow: hidden;
}
/* CTA shimmer sweep */
.promo-banner__cta::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
	animation: promoCTASweep 4s ease-in-out infinite;
}
@keyframes promoCTASweep {
	0%, 70%, 100% { left: -100%; }
	40% { left: 150%; }
}

/* ── Tablet: tighten hero gap ── */
@media (min-width: 769px) and (max-width: 1024px) {
	.hero .container { gap: var(--spacing-xl); }
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
	.promo-banner {
		padding: var(--spacing-lg) 0 var(--spacing-xl);
	}
	.promo-banner__headline {
		flex-direction: column;
		gap: var(--spacing-md);
	}
	.promo-banner__badge {
		width: 90px;
		height: 90px;
	}
	.promo-banner__zero {
		font-size: 2rem;
	}
	.promo-banner__title {
		font-size: 1.6rem;
		text-align: center;
	}
	.promo-banner__title-wrap {
		text-align: center;
		align-items: center;
	}
	.promo-banner__subtitle {
		text-align: center;
	}
	.promo-banner__content {
		align-self: stretch;
	}
	.promo-banner__features {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 0.35rem;
	}
	.promo-banner__feature {
		min-width: 0;
		padding: 0.5rem 0.3rem;
		font-size: 0.85rem;
		gap: 0.3rem;
		text-align: center;
		border-radius: 8px;
	}
	.promo-banner__feature svg {
		width: 22px;
		height: 22px;
	}
	.promo-banner__orb--1 { width: 180px; height: 180px; }
	.promo-banner__orb--2 { width: 150px; height: 150px; }
	.promo-banner__orb--3 { display: none; }
}

/* Enterprise Notice */
.enterprise-notice {
	padding: var(--spacing-xl) 0;
	position: relative;
}

.enterprise-notice::before,
.enterprise-notice::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.3;
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}
.enterprise-notice::before { top: 0; }
.enterprise-notice::after { bottom: 0; animation-delay: -4s; }

.enterprise-banner {
	display: flex;
	align-items: center;
	gap: var(--spacing-xl);
	max-width: 960px;
	margin: 0 auto;
	padding: var(--spacing-xl) var(--spacing-2xl);
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.04), rgba(0, 212, 255, 0.06));
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(20px);
}

.enterprise-banner-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--quantum-primary);
	background: rgba(0, 255, 136, 0.08);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(0, 255, 136, 0.12);
}

.enterprise-banner-icon svg {
	width: 32px;
	height: 32px;
}

.enterprise-banner-text {
	flex: 1;
}

.enterprise-banner-text h2 {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: var(--spacing-xs);
}

.enterprise-banner-text p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
}

.enterprise-banner-btn {
	flex-shrink: 0;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.enterprise-banner {
		flex-direction: column;
		text-align: center;
		padding: var(--spacing-lg);
	}
}

/* Footer */
.footer {
	background: var(--bg-primary);
	border-top: var(--border-glass);
	padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--spacing-2xl);
	margin-bottom: var(--spacing-lg);
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
	justify-content: start;
	align-items: center;
	text-align: center;
}

.footer-logo {
	width: 200px;
}

.footer-brand h3 {
	font-family: var(--font-primary);
	color: var(--quantum-primary);
	font-size: 1.5rem;
}

.footer-brand p {
	color: var(--text-muted);
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--spacing-lg);
}

.footer-section h4 {
	color: var(--quantum-primary);
	margin-bottom: var(--spacing-sm);
	font-family: var(--font-primary);
}

.footer-section a,
.footer-section p {
	display: block;
	width: fit-content;
	color: var(--text-secondary);
	text-decoration: none;
	margin-bottom: var(--spacing-xs);
	transition: var(--transition-fast);
}

.footer-section a:hover {
	color: var(--quantum-primary);
}

.footer-bottom {
	text-align: center;
	padding-top: var(--spacing-md);
	border-top: var(--border-glass);
	color: var(--text-muted);
}

.footer-bottom a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-bottom a:hover {
	color: var(--quantum-primary);
}

/* Responsive Design — nav collapses to hamburger at tablet */
@media (max-width: 1024px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 80px;
		bottom: 0;
		width: 100%;
		height: calc(100vh - 80px);
		height: calc(100dvh - 80px);
		flex-direction: column;
		align-items: center;
		gap: 0;
		background-color: rgba(10, 10, 15, 0.98);
		text-align: center;
		transition: left 0.3s ease;
		backdrop-filter: blur(20px);
		border-top: var(--border-glass);
		padding: var(--spacing-lg) var(--spacing-md) var(--spacing-xl);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 9999;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

	/* Mobile: dropdowns show as collapsible sections */
	.nav-dropdown {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.nav-dropdown-toggle {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 16px var(--spacing-md);
		font-size: 1.15rem;
		color: var(--text-primary);
		letter-spacing: 0.02em;
	}

	.nav-link {
		display: block;
		padding: 16px var(--spacing-md);
		font-size: 1.15rem;
		width: 100%;
		color: var(--text-primary);
		text-align: center;
		letter-spacing: 0.02em;
	}
	.nav-link::after { display: none; }

	.nav-dropdown-menu {
		position: static;
		transform: none;
		background: rgba(255, 255, 255, 0.03);
		backdrop-filter: none;
		border: none;
		border-radius: var(--radius-sm);
		box-shadow: none;
		padding: 0;
		margin: 0 var(--spacing-sm);
		opacity: 1;
		visibility: visible;
		min-width: auto;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.nav-dropdown.is-open .nav-dropdown-menu {
		transform: none;
		max-height: 800px;
	}

	.nav-dropdown-item {
		color: var(--text-secondary);
		font-weight: 500;
		text-decoration: none;
		text-align: center;
		transition: var(--transition-fast);
		position: relative;
		padding: 14px var(--spacing-md);
		font-size: 1.05rem;
	}

	.nav-dropdown-item:hover,
	.nav-dropdown-item.active {
		color: var(--quantum-primary);
		background: none;
	}

	/* Mobile mega dropdown: flat centered list — no group labels, no lines */
	.nav-dropdown--mega .nav-mega-menu {
		min-width: auto;
		padding: 0;
	}
	.nav-dropdown--mega .nav-mega-grid {
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	.nav-mega-col {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.nav-mega-label {
		display: none;
	}
	.nav-mega-col .nav-dropdown-item {
		font-size: 1.05rem;
		padding: 14px var(--spacing-md);
		text-align: center;
	}
	.nav-mega-footer {
		padding: 6px 0;
		margin-top: 0;
		border-top: none;
	}
	.nav-mega-all {
		font-size: 1rem;
	}

	/* Mobile CTA button — prominent, full-width */
	.nav-cta {
		display: block;
		width: calc(100% - var(--spacing-lg));
		margin: var(--spacing-md) auto 0;
		padding: 14px var(--spacing-md);
		text-align: center;
		font-size: 1rem;
		border-radius: var(--radius-sm);
	}
}

/* Responsive Design — layout stacking */
@media (max-width: 768px) {
	.hero,
	.hero.servers-hero,
	.hero.ddos-hero,
	.hero.support-hero,
	.hero--landing {
		min-height: auto;
		padding-top: var(--spacing-md);
		padding-bottom: var(--spacing-lg);
	}

	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: var(--spacing-md);
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-cta {
		justify-content: center;
		flex-wrap: wrap;
	}

	.hero-visual {
		height: 300px;
	}

	.proper-content {
		grid-template-columns: 1fr;
	}

	.proper-visual {
		order: -1;
		transform: scale(0.8);
		margin-bottom: -20px;
	}

	.proper-info {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.proper-info .section-description {
		max-width: 600px;
	}

	.proper-benefits {
		gap: var(--spacing-sm);
		width: 100%;
		max-width: 500px;
	}

	.benefit-item {
		text-align: start;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.feature-item {
		text-align: center;
		flex-direction: column;
		align-items: center;
	}

	.feature-item h3,
	.feature-item p {
		text-align: center;
	}

	/* Why Choose: keep grid list layout on mobile */
	.why-choose .feature-item {
		display: grid;
		text-align: start;
	}

	.why-choose .feature-item h3,
	.why-choose .feature-item p {
		text-align: start;
	}

	.why-choose .features-grid {
		column-gap: var(--spacing-md);
	}

	.cta-actions {
		flex-direction: column;
		align-items: center;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-section a,
	.footer-section p {
		margin-inline: auto;
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 var(--spacing-sm);
	}

	.hero-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.services-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.why-choose .features-grid {
		grid-template-columns: 1fr;
	}

	.why-choose .feature-item:nth-child(4) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}

	.why-choose .feature-item:nth-child(8) {
		border-bottom: none;
	}

	.footer-links {
		grid-template-columns: 1fr;
	}
}

/* Animations for page load */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content {
	animation: fadeInUp 0.6s ease-out;
}

/* Quantum scroll-enter animation system */
.q-enter {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fade-up enter for Proper section */
.proper-info.q-enter {
	transform: translateY(30px);
}

.proper-visual.q-enter {
	transform: translateY(30px) scale(0.95);
}

/* Scale-up enter for promo banner */
.promo-banner__content.q-enter {
	transform: translateY(20px) scale(0.98);
}

/* CTA content enter */
.cta-content.q-enter {
	transform: translateY(25px);
}

/* Visible state — MUST come after all component-specific .q-enter rules */
.q-enter.q-visible {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1);
}

/* DDoS Protection Page Styles */
.ddos-hero {
	min-height: 70vh;
}

.ddos-explanation {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}

.explanation-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: var(--spacing-2xl);
	align-items: center;
}

.explanation-text {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--text-secondary);
}

.explanation-text p {
	margin-bottom: var(--spacing-md);
}

.attack-stats {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}

.stat-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	padding: var(--spacing-md);
	text-align: center;
	backdrop-filter: blur(20px);
	transition: var(--transition-fast);
}

.stat-card:hover {
	border-color: var(--quantum-primary);
	transform: scale(1.05);
}

.stat-number {
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 900;
	color: var(--quantum-primary);
	margin-bottom: var(--spacing-xs);
}

.stat-label {
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 500;
}

.ddos-features {
	padding: var(--spacing-2xl) 0;
}

.ddos-features .features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--spacing-lg);
	margin-bottom: var(--spacing-xl);
}

.features-cta {
	text-align: center;
}

.why-choose-ddos {
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
	padding: var(--spacing-2xl) 0;
}

.reasons-container {
	max-width: 1000px;
	margin: 0 auto;
}

.reasons-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: var(--spacing-lg);
}

.reason-card {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-md);
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	transition: var(--transition-fast);
	backdrop-filter: blur(20px);
}

.reason-card:hover {
	transform: translateY(-5px);
	border-color: var(--quantum-primary);
	box-shadow: var(--shadow-card);
}

.reason-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reason-icon img {
	width: 50px;
	height: 50px;
	filter: brightness(0) saturate(100%) invert(70%) sepia(85%) saturate(3295%) hue-rotate(101deg) brightness(101%) contrast(101%);
}

.reason-content h3 {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	margin-bottom: var(--spacing-sm);
	color: var(--quantum-primary);
}

.reason-content p {
	color: var(--text-secondary);
	line-height: 1.6;
}

.protection-details {
	padding: var(--spacing-2xl) 0;
}

.details-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: var(--spacing-lg);
	max-width: 1000px;
	margin: 0 auto;
}

.detail-card {
	background: var(--bg-card);
	border: var(--border-quantum);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: var(--transition-fast);
}

.detail-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-quantum);
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--spacing-md);
	padding-bottom: var(--spacing-md);
	border-bottom: var(--border-glass);
}

.card-header h3 {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	color: var(--quantum-primary);
}

.card-header .card-icon {
	width: 30px;
	height: 30px;
	color: var(--quantum-secondary);
}

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

.card-content h4 {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	margin-bottom: var(--spacing-md);
	color: var(--text-primary);
}

.protection-features {
	list-style: none;
	padding: 0;
}

.protection-features li {
	display: flex;
	align-items: center;
	margin-bottom: var(--spacing-sm);
	color: var(--text-secondary);
}

.protection-features li::before {
	content: "✓";
	color: var(--quantum-primary);
	font-weight: bold;
	margin-right: var(--spacing-sm);
	font-size: 1.2rem;
}

/* ── Modes section (shared DDoS/WAF) ── */
.modes-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.modes-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-lg);
	margin-top: var(--spacing-xl);
}
.modes-grid-4 { grid-template-columns: repeat(2, 1fr); }
.mode-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: var(--transition-fast);
}
.mode-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card);
}
.mode-recommended {
	border-color: var(--quantum-primary);
	box-shadow: 0 0 0 1px var(--quantum-primary), 0 8px 24px rgba(0, 255, 136, 0.15);
}
.mode-header { display: flex; align-items: center; gap: 12px; margin-bottom: var(--spacing-sm); }
.mode-header h3 { font-family: var(--font-primary); font-size: 1.25rem; margin: 0; }
.mode-badge {
	background: var(--quantum-primary);
	color: var(--bg-primary);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: var(--radius-xl);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.mode-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: var(--spacing-md); }
.mode-features { list-style: none; padding: 0; margin: 0; }
.mode-features li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	color: var(--text-secondary);
	font-size: 0.9rem;
}
.mode-features li i { color: var(--quantum-primary); font-size: 1.1rem; }
.ddos-icon-check, .waf-icon-check { color: var(--quantum-primary); flex-shrink: 0; }

/* ── Flow section (shared DDoS/WAF) ── */
.flow-section { padding: var(--spacing-2xl) 0; }
.flow-steps {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: var(--spacing-sm);
	margin-top: var(--spacing-xl);
	flex-wrap: wrap;
}
.flow-step {
	text-align: center;
	flex: 1;
	min-width: 160px;
	max-width: 220px;
	animation: flowStepIn 0.6s ease-out both;
}
.flow-step:nth-child(1) { animation-delay: 0s; }
.flow-step:nth-child(3) { animation-delay: 0.15s; }
.flow-step:nth-child(5) { animation-delay: 0.3s; }
.flow-step:nth-child(7) { animation-delay: 0.45s; }
@keyframes flowStepIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
.flow-step-number {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--gradient-primary);
	color: var(--bg-primary);
	font-weight: 700;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--spacing-sm);
	box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
	animation: numberGlow 3s ease-in-out infinite;
}
@keyframes numberGlow {
	0%, 100% { box-shadow: 0 0 12px rgba(0, 255, 136, 0.3); }
	50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.6); }
}
.flow-step:nth-child(3) .flow-step-number { animation-delay: 0.5s; }
.flow-step:nth-child(5) .flow-step-number { animation-delay: 1s; }
.flow-step:nth-child(7) .flow-step-number { animation-delay: 1.5s; }
.flow-step-icon {
	font-size: 2rem;
	color: var(--quantum-primary);
	margin-bottom: var(--spacing-sm);
	animation: flowIconFloat 4s ease-in-out infinite;
}
.flow-step:nth-child(3) .flow-step-icon { animation-delay: 0.3s; }
.flow-step:nth-child(5) .flow-step-icon { animation-delay: 0.6s; }
.flow-step:nth-child(7) .flow-step-icon { animation-delay: 0.9s; }
.flow-step-icon svg { display: inline-block; }
@keyframes flowIconFloat {
	0%, 100% { transform: translateY(0); opacity: 0.85; }
	50% { transform: translateY(-4px); opacity: 1; }
}
.flow-step h3 { font-family: var(--font-primary); font-size: 0.9rem; margin-bottom: 8px; }
.flow-step p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.5; }
.flow-arrow {
	display: flex;
	align-items: center;
	align-self: center;
	color: var(--quantum-primary);
	font-size: 1.5rem;
	animation: arrowPulse 2s ease-in-out infinite;
}
.flow-arrow:nth-child(4) { animation-delay: 0.3s; }
.flow-arrow:nth-child(6) { animation-delay: 0.6s; }
@keyframes arrowPulse {
	0%, 100% { opacity: 0.3; transform: translateX(0); }
	50% { opacity: 0.8; transform: translateX(4px); }
}
.flow-step-result {
	max-width: 240px;
	animation: flowStepIn 0.6s ease-out 0.6s both;
}
.flow-result-split { display: flex; gap: 12px; justify-content: center; margin-bottom: 12px; }
.flow-result {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 0.9rem;
	transition: transform var(--transition-fast);
}
.flow-result:hover { transform: scale(1.05); }
.flow-allow {
	background: rgba(0, 255, 136, 0.15);
	color: var(--quantum-primary);
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.1);
}
.flow-block {
	background: rgba(255, 51, 102, 0.15);
	color: var(--quantum-error);
	box-shadow: 0 0 8px rgba(255, 51, 102, 0.1);
}

@media (max-width: 768px) {
	.modes-grid, .modes-grid-4 { grid-template-columns: 1fr; }
	.mode-card { text-align: center; }
	.mode-header { justify-content: center; }
	.mode-features { text-align: start; display: inline-block; }
	.flow-steps { flex-direction: column; align-items: center; }
	.flow-arrow { transform: rotate(90deg); padding: 8px 0; }
	@keyframes arrowPulse {
		0%, 100% { opacity: 0.3; transform: rotate(90deg) translateX(0); }
		50% { opacity: 0.8; transform: rotate(90deg) translateX(4px); }
	}
}

/* ── RTL: flow arrows (desktop only — mobile arrows point down, direction-neutral) ── */
@keyframes arrowPulseRtl {
	0%, 100% { opacity: 0.3; transform: translateX(0); }
	50% { opacity: 0.8; transform: translateX(-4px); }
}
@media (min-width: 769px) {
	[dir="rtl"] .flow-arrow {
		animation-name: arrowPulseRtl;
	}
	[dir="rtl"] .flow-arrow svg {
		transform: scaleX(-1);
	}
}

/* ── Explainer Section (shared: WAF, Proper) ── */
.explainer-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.explainer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.explainer-text p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.explainer-stats { display: flex; flex-direction: column; gap: 20px; }
.stat-badge {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	padding: 20px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	backdrop-filter: blur(20px);
}
.stat-badge .stat-value { font-size: 2rem; font-weight: 700; color: var(--quantum-primary); }
.stat-badge .stat-label { color: var(--text-secondary); font-size: 0.95rem; }
@media (max-width: 1024px) {
	.explainer-grid { grid-template-columns: 1fr; }
	.explainer-text { text-align: center; }
	.explainer-stats { align-items: stretch; }
	.stat-badge { justify-content: center; text-align: center; width: 100%; }
	.explanation-content { display: flex; flex-direction: column; text-align: center; }
	.attack-stats { flex-direction: row; justify-content: space-around; }
}
@media (max-width: 480px) {
	.attack-stats { flex-direction: column; align-items: stretch; }
}

.included-section {
	background: var(--gradient-card);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
	padding: var(--spacing-2xl) 0;
	text-align: center;
}

.included-content {
	max-width: 800px;
	margin: 0 auto;
}

.included-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-sm);
	background: var(--quantum-primary);
	color: var(--bg-primary);
	padding: var(--spacing-sm) var(--spacing-md);
	border-radius: var(--radius-xl);
	font-weight: 600;
	margin-bottom: var(--spacing-md);
}

.included-badge svg {
	width: 20px;
	height: 20px;
}

.included-content h2 {
	font-family: var(--font-primary);
	font-size: 2.5rem;
	margin-bottom: var(--spacing-md);
}

.included-content p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: var(--spacing-lg);
	line-height: 1.6;
}

.included-cta {
	display: flex;
	justify-content: center;
	gap: var(--spacing-md);
	flex-wrap: wrap;
}

/* Responsive Design for DDoS Page */
@media (max-width: 768px) {
	.explanation-content {
		display: flex;
		flex-direction: column;
		text-align: center;
	}

	.attack-stats {
		flex-direction: row;
		justify-content: space-around;
	}

	.features-grid,
	.ddos-features .features-grid,
	.features-grid.features-grid--fixed-3 {
		grid-template-columns: 1fr;
	}

	.reasons-grid {
		grid-template-columns: 1fr;
	}

	.reason-card {
		flex-direction: column;
		text-align: center;
	}

	.details-cards {
		grid-template-columns: 1fr;
	}

	.included-content h2 {
		font-size: 2rem;
	}

	.included-cta {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.attack-stats {
		flex-direction: column;
		align-items: stretch;
	}

	.stat-number {
		font-size: 1.5rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

}

/* ── Tablet: features-grid overrides ──
   Base .features-grid (0,1,0) only wins on pages without .ddos-features wrapper
   (e.g. vps-servers). Pages with .ddos-features .features-grid (0,2,0) keep
   auto-fit → 2 cols at tablet, which is clean for 6-item grids.
   The :has() selector (0,3,0) wins everywhere for exactly-4-item grids. */
@media (min-width: 769px) and (max-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--spacing-md);
	}
	/* 4-item grids: keep 2-col to avoid 3+1 orphan (ddos/proper 2nd grid) */
	.features-grid:has(> :nth-child(4)):not(:has(> :nth-child(5))) {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Scrollbar Styling */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
	background: var(--gradient-primary);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--quantum-secondary);
}

/* DDoS Protection World Map */
.ddos-map-section {
	padding: var(--spacing-xl) 0;
	background: var(--bg-primary);
	position: relative;
	overflow: hidden;
}

.map-description {
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: var(--spacing-xl);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.map-container {
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-xl);
	backdrop-filter: blur(20px);
	position: relative;
}

.world-map {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

.map-svg {
	width: 100%;
	height: auto;
	display: block;
}

.continent {
	fill: var(--bg-secondary);
	stroke: var(--border-color);
	stroke-width: 1;
	transition: fill 0.3s ease;
}

.continent:hover {
	fill: var(--bg-card);
}

.attack-origin {
	fill: #ff4757;
	stroke: #ff3742;
	stroke-width: 1;
	animation: pulse-attack 2s ease-in-out infinite;
}

.protection-center {
	fill: var(--quantum-primary);
	stroke: #00d4ff;
	stroke-width: 2;
	animation: pulse-protection 3s ease-in-out infinite;
}

@keyframes pulse-attack {
	0%,
	100% {
		r: 3;
		opacity: 1;
	}
	50% {
		r: 6;
		opacity: 0.7;
	}
}

@keyframes pulse-protection {
	0%,
	100% {
		r: 5;
		opacity: 1;
	}
	50% {
		r: 8;
		opacity: 0.8;
	}
}

.attack-line {
	stroke: #ff4757;
	stroke-width: 2;
	stroke-dasharray: 5, 5;
	opacity: 0.8;
	animation: attack-flow 2s linear infinite;
}

@keyframes attack-flow {
	0% {
		stroke-dashoffset: 0;
	}
	100% {
		stroke-dashoffset: 20;
	}
}

.map-legend {
	display: flex;
	justify-content: center;
	gap: var(--spacing-lg);
	margin-top: var(--spacing-lg);
	flex-wrap: wrap;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.legend-icon {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.attack-dot {
	background: #ff4757;
	animation: pulse-attack 2s ease-in-out infinite;
}

.protection-dot {
	background: var(--quantum-primary);
	animation: pulse-protection 3s ease-in-out infinite;
}

.blocked-line {
	width: 20px;
	height: 2px;
	border-radius: 0;
	background: linear-gradient(90deg, #ff4757 0%, transparent 50%, #ff4757 100%);
	animation: attack-flow 2s linear infinite;
}

.map-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--spacing-lg);
	margin-top: var(--spacing-xl);
	padding-top: var(--spacing-lg);
	border-top: var(--border-glass);
}

.live-stat {
	text-align: center;
	padding: var(--spacing-md);
	background: var(--bg-secondary);
	border-radius: var(--radius-md);
	border: 1px solid var(--border-color);
}

.stat-value {
	display: block;
	font-size: 2rem;
	font-family: var(--font-primary);
	font-weight: 900;
	color: var(--quantum-primary);
	margin-bottom: var(--spacing-xs);
}

.stat-label {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* Mobile Responsiveness for Map */
@media (max-width: 768px) {
	.map-container {
		padding: var(--spacing-lg);
	}

	.map-legend {
		flex-direction: column;
		align-items: center;
		gap: var(--spacing-sm);
	}

	.map-stats {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
	}

	.stat-value {
		font-size: 1.5rem;
	}
}

/* What's Included Section */
.whats-included {
	padding: var(--spacing-xl) 0;
	background: var(--bg-primary);
	position: relative;
}

.whats-included::before,
.whats-included::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.3;
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}
.whats-included::before { top: 0; }
.whats-included::after { bottom: 0; animation-delay: -4s; }

.included-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-lg);
	margin-top: var(--spacing-lg);
}

.included-item {
	text-align: center;
	padding: var(--spacing-lg);
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	transition: var(--transition-fast);
	position: relative;
	overflow: hidden;
}

.included-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.3;
	transition: opacity var(--transition-normal);
}

.included-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card);
}

.included-item:hover::before {
	opacity: 0.9;
}

.included-icon {
	width: 50px;
	height: 50px;
	color: var(--quantum-primary);
	margin: 0 auto var(--spacing-md);
}


.included-icon svg {
	width: 100%;
	height: 100%;
}

.included-item h3 {
	font-family: var(--font-primary);
	margin-bottom: var(--spacing-sm);
}

.included-item p {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
	background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
	position: relative;
	overflow: hidden;
}

.contact-methods {
	padding: var(--spacing-xl) 0;
	background: var(--bg-secondary);
	position: relative;
}

.contact-methods::before,
.contact-methods::after {
	content: '';
	position: absolute;
	left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}
.contact-methods::before { top: 0; }
.contact-methods::after { bottom: 0; animation-delay: -4s; }

.contact-methods-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-lg);
	margin-top: var(--spacing-lg);
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-md);
	padding: var(--spacing-lg);
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	transition: background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.contact-method::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.4;
	transition: opacity var(--transition-normal);
}

.contact-method::after {
	content: '';
	position: absolute;
	top: 0; left: -30%;
	width: 30%; height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
	animation: accentSweep 4s linear infinite;
}

.contact-method:nth-child(2)::after { animation-delay: -0.7s; }
.contact-method:nth-child(3)::after { animation-delay: -1.4s; }
.contact-method:nth-child(4)::after { animation-delay: -2.1s; }
.contact-method:nth-child(5)::after { animation-delay: -2.8s; }
.contact-method:nth-child(6)::after { animation-delay: -3.5s; }

.contact-method:hover {
	background: rgba(0, 255, 136, 0.03);
	border-color: rgba(0, 255, 136, 0.12);
	box-shadow: 0 0 25px rgba(0, 255, 136, 0.06), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-method:hover::before {
	opacity: 0.9;
}

.contact-methods .method-icon {
	width: 48px;
	height: 48px;
	background: rgba(0, 255, 136, 0.06);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--quantum-primary);
	flex-shrink: 0;
	animation: iconBreath 4s ease-in-out infinite;
}

.contact-methods .method-icon svg {
	width: 22px;
	height: 22px;
}

.contact-method:nth-child(2) .method-icon { animation-delay: 0.6s; }
.contact-method:nth-child(3) .method-icon { animation-delay: 1.2s; }
.contact-method:nth-child(4) .method-icon { animation-delay: 1.8s; }
.contact-method:nth-child(5) .method-icon { animation-delay: 2.4s; }
.contact-method:nth-child(6) .method-icon { animation-delay: 3.0s; }

.contact-method:hover .method-icon {
	background: rgba(0, 255, 136, 0.1);
	border-color: rgba(0, 255, 136, 0.3);
}

.method-content h3 {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	margin-bottom: var(--spacing-xs);
}

.method-content p {
	font-weight: 600;
	margin-bottom: var(--spacing-xs);
}

.method-content span {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.contact-form-section {
	padding: var(--spacing-xl) 0;
	background: var(--bg-primary);
	position: relative;
}

.contact-form-section::before,
.contact-form-section::after {
	content: '';
	position: absolute;
	left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}
.contact-form-section::before { top: 0; }
.contact-form-section::after { bottom: 0; animation-delay: -4s; }

.contact-form-container {
	max-width: 800px;
	margin: 0 auto;
}

.form-header {
	text-align: center;
	margin-bottom: var(--spacing-xl);
}

.form-header p {
	color: var(--text-secondary);
	margin-top: var(--spacing-sm);
}

.contact-form {
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-xl);
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}

.contact-form::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.4;
}

.contact-form::after {
	content: '';
	position: absolute;
	top: 0; left: -30%;
	width: 30%; height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
	animation: accentSweep 5s linear infinite;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-md);
}

.form-group,
.data-form-group {
	margin-bottom: var(--spacing-md);
}

.form-group label,
.data-form-group label {
	display: block;
	margin-bottom: var(--spacing-xs);
	font-weight: 600;
	color: var(--text-primary);
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea,
.data-form-group input:not([type="checkbox"]),
.data-form-group select,
.data-form-group textarea {
	width: 100%;
	padding: var(--spacing-sm);
	background: var(--bg-secondary);
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	color: var(--text-primary);
	font-size: 16px;
	font-family: var(--font-secondary);
	transition: var(--transition-fast);
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus,
.data-form-group input:not([type="checkbox"]):focus,
.data-form-group select:focus,
.data-form-group textarea:focus {
	outline: none;
	border-color: var(--quantum-primary);
	box-shadow: 0 0 0 3px rgba(var(--quantum-primary-rgb), 0.1);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea,
.data-form-group.error input,
.data-form-group.error select,
.data-form-group.error textarea {
	border-color: var(--error-color, #ff4757);
}

.form-group textarea,
.data-form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.field-error {
	color: var(--error-color, #ff4757);
	font-size: 0.875rem;
	margin-top: var(--spacing-xs);
}

.form-submit {
	text-align: center;
	margin-top: var(--spacing-lg);
}

.form-message {
	padding: var(--spacing-md);
	border-radius: var(--radius-sm);
	margin-top: var(--spacing-md);
	text-align: center;
}

.form-message.success {
	background: rgba(46, 213, 115, 0.1);
	border: 1px solid rgba(46, 213, 115, 0.3);
	color: #2ed573;
}

.form-message.error {
	background: rgba(255, 71, 87, 0.1);
	border: 1px solid rgba(255, 71, 87, 0.3);
	color: #ff4757;
}

.btn-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-xs);
}

i.loading {
	animation: spin 1s linear infinite;
}

.loading-spinner {
	width: 16px;
	height: 16px;
	animation: spin 1s linear infinite;
}

.loading-spinner circle {
	animation: loading-dash 2s linear infinite;
}

@keyframes loading-dash {
	0% {
		stroke-dashoffset: 60;
	}
	50% {
		stroke-dashoffset: 15;
	}
	100% {
		stroke-dashoffset: 60;
	}
}

.business-info {
	padding: var(--spacing-xl) 0;
	background: var(--bg-secondary);
	position: relative;
}

.business-info::before,
.business-info::after {
	content: '';
	position: absolute;
	left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}
.business-info::before { top: 0; }
.business-info::after { bottom: 0; animation-delay: -4s; }

.business-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-lg);
	margin-top: var(--spacing-lg);
}

.business-card {
	text-align: center;
	padding: var(--spacing-lg);
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	transition: background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.business-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.4;
	transition: opacity var(--transition-normal);
}

.business-card::after {
	content: '';
	position: absolute;
	top: 0; left: -30%;
	width: 30%; height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
	animation: accentSweep 4s linear infinite;
}

.business-card:nth-child(2)::after { animation-delay: -1.3s; }
.business-card:nth-child(3)::after { animation-delay: -2.6s; }

.business-card:hover {
	background: rgba(0, 255, 136, 0.03);
	border-color: rgba(0, 255, 136, 0.12);
	box-shadow: 0 0 25px rgba(0, 255, 136, 0.06), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.business-card:hover::before {
	opacity: 0.9;
}

.business-icon {
	width: 56px;
	height: 56px;
	background: rgba(0, 255, 136, 0.06);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--quantum-primary);
	margin: 0 auto var(--spacing-md);
	animation: iconBreath 4s ease-in-out infinite;
}

.business-icon svg {
	width: 24px;
	height: 24px;
}

.business-card:nth-child(2) .business-icon { animation-delay: 0.7s; }
.business-card:nth-child(3) .business-icon { animation-delay: 1.4s; }

.business-card:hover .business-icon {
	background: rgba(0, 255, 136, 0.1);
	border-color: rgba(0, 255, 136, 0.3);
}

.business-card h3 {
	font-family: var(--font-primary);
	margin-bottom: var(--spacing-sm);
}

.business-details p {
	margin-bottom: var(--spacing-xs);
	color: var(--text-secondary);
}

.business-details p:last-child {
	margin-bottom: 0;
}

.quick-actions {
	padding: var(--spacing-xl) 0;
	background: var(--bg-primary);
}

.actions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-lg);
	margin-top: var(--spacing-lg);
}

.action-card {
	text-align: center;
	padding: var(--spacing-lg);
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	transition: var(--transition-fast);
}

.action-card:hover {
	transform: translateY(-5px);
	border-color: var(--quantum-primary);
	box-shadow: var(--shadow-card);
}

.action-icon {
	width: 50px;
	height: 50px;
	color: var(--quantum-primary);
	margin: 0 auto var(--spacing-md);
}

.action-icon svg {
	width: 100%;
	height: 100%;
}

.action-card h3 {
	font-family: var(--font-primary);
	margin-bottom: var(--spacing-sm);
}

.action-card p {
	color: var(--text-secondary);
	margin-bottom: var(--spacing-md);
}

.action-btn {
	display: inline-block;
	padding: var(--spacing-sm) var(--spacing-md);
	background: var(--gradient-primary);
	color: white;
	text-decoration: none;
	border-radius: var(--radius-sm);
	font-weight: 600;
	transition: var(--transition-fast);
}

.action-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-card);
}

.quantum-focus {
	position: relative;
}

.quantum-focus::before {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: var(--gradient-primary);
	border-radius: var(--radius-sm);
	z-index: -1;
	opacity: 0.5;
	animation: quantum-pulse 2s ease-in-out infinite;
}

/* Contact Page Mobile Styles */
@media (max-width: 768px) {
	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-form {
		padding: var(--spacing-lg);
	}

	.contact-method {
		text-align: center;
		flex-direction: column;
		align-items: center;
		gap: var(--spacing-sm);
		padding: var(--spacing-md);
	}

	.contact-method .method-icon {
		margin: 0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.contact-method .method-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.contact-method .method-content h3,
	.contact-method .method-content p,
	.contact-method .method-content span {
		text-align: center;
		width: 100%;
	}

	.business-grid,
	.actions-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.contact-methods-grid {
		grid-template-columns: 1fr;
	}
}

/* ================ QUANTUM 2500 3D GLOBE DDOS VISUALIZATION ================ */
.quantum-globe-section {
	background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}

.quantum-globe-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 90%, rgba(129, 140, 248, 0.05) 0%, transparent 50%);
	z-index: 1;
}

.quantum-globe-section .section-title,
.quantum-globe-section .section-description {
	position: relative;
	z-index: 2;
}

.quantum-text {
	background: linear-gradient(135deg, #22d3ee 0%, #38bdf8 50%, #818cf8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
	animation: quantumGlow 2s ease-in-out infinite alternate;
}

.globe-year {
	color: #ff0066;
	text-shadow: 0 0 20px #ff0066;
	margin: 0 1rem;
	animation: yearPulse 3s ease-in-out infinite;
}

.globe-container {
	position: relative;
	height: 600px;
	overflow: hidden;
	background: transparent;
	z-index: 2;
}

/* Scanning overlay on globe container */
.globe-container::after {
	content: '';
	position: absolute;
	top: -100%;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(180deg,
		transparent 0%,
		rgba(56, 189, 248, 0.02) 45%,
		rgba(56, 189, 248, 0.06) 50%,
		rgba(56, 189, 248, 0.02) 55%,
		transparent 100%);
	animation: globeScanline 6s linear infinite;
	pointer-events: none;
	z-index: 5;
}

@keyframes globeScanline {
	0%   { top: -100%; }
	100% { top: 100%; }
}

.globe-disclaimer {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.35);
	z-index: 6;
	white-space: nowrap;
}

.globe-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.globe-canvas {
	width: 100%;
	height: 100%;
	display: block;
	background: transparent;
}

.globe-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 10;
}

.quantum-ui {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(10, 15, 28, 0.9);
	border: 1px solid rgba(0, 255, 136, 0.3);
	border-radius: 15px;
	padding: 20px;
	backdrop-filter: blur(20px);
	box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.threat-stats {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 20px;
}

.stat-quantum {
	text-align: center;
	padding: 10px;
	background: rgba(0, 255, 136, 0.05);
	border: 1px solid rgba(0, 255, 136, 0.2);
	border-radius: 8px;
	min-width: 140px;
}

.stat-value {
	display: block;
	font-family: var(--font-primary);
	font-size: 1.8rem;
	font-weight: 700;
	color: #00ff88;
	text-shadow: 0 0 10px #00ff88;
	margin-bottom: 5px;
}

.stat-label {
	font-family: var(--font-secondary);
	font-size: 0.75rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.quantum-legend {
	border-top: 1px solid rgba(0, 255, 136, 0.2);
	padding-top: 15px;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	font-family: var(--font-secondary);
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.legend-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	box-shadow: 0 0 10px currentColor;
}

.legend-dot.http-attack {
	background: #ff0066;
	box-shadow: 0 0 10px #ff0066;
}

.legend-dot.https-attack {
	background: #0099ff;
	box-shadow: 0 0 10px #0099ff;
}

.legend-dot.protection-shield {
	background: #00ff88;
	box-shadow: 0 0 10px #00ff88;
}

/* QUANTUM ANIMATIONS */
@keyframes quantumGlow {
	0% {
		text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
	}
	100% {
		text-shadow: 0 0 50px rgba(0, 255, 136, 0.8), 0 0 70px rgba(0, 255, 136, 0.4);
	}
}

@keyframes yearPulse {
	0%,
	100% {
		transform: scale(1);
		text-shadow: 0 0 20px #ff0066;
	}
	50% {
		transform: scale(1.05);
		text-shadow: 0 0 30px #ff0066, 0 0 40px #ff0066;
	}
}

@keyframes attackPulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(2);
		opacity: 0;
	}
}

@keyframes shieldRotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes dataFlow {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translateY(-50px) rotate(180deg);
		opacity: 0;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.globe-container {
		height: 400px;
	}
}

@media (max-width: 480px) {
	.globe-container {
		height: 300px;
		margin: 0 -20px;
		border-radius: 0;
	}
}

/* ================= SUPPORT PAGE STYLES (migrated from support.js inline <style> injection) ================= */
.support-hero {
	min-height: 70vh;
}
.contact-methods {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.methods-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-lg);
}
.method-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	text-align: center;
	transition: background var(--transition-normal), border-color var(--transition-normal),
		box-shadow var(--transition-normal);
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}
.method-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.4;
	transition: opacity var(--transition-normal);
}
.method-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
	animation: accentSweep 4s linear infinite;
}
.method-card:nth-child(2)::after { animation-delay: -0.7s; }
.method-card:nth-child(3)::after { animation-delay: -1.4s; }
.method-card:nth-child(4)::after { animation-delay: -2.1s; }
.method-card:nth-child(5)::after { animation-delay: -2.8s; }
.method-card:nth-child(6)::after { animation-delay: -3.5s; }
.method-card:hover {
	background: rgba(0, 255, 136, 0.03);
	border-color: rgba(0, 255, 136, 0.12);
	box-shadow: 0 0 25px rgba(0, 255, 136, 0.06), 0 4px 15px rgba(0, 0, 0, 0.2);
}
.method-card:hover::before {
	opacity: 0.9;
}
.method-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto var(--spacing-md);
	color: var(--quantum-primary);
	background: rgba(0, 255, 136, 0.06);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition-normal), border-color var(--transition-normal),
		box-shadow var(--transition-normal);
	animation: iconBreath 4s ease-in-out infinite;
}
.method-card:nth-child(2) .method-icon { animation-delay: 0.6s; }
.method-card:nth-child(3) .method-icon { animation-delay: 1.2s; }
.method-card:nth-child(4) .method-icon { animation-delay: 1.8s; }
.method-card:nth-child(5) .method-icon { animation-delay: 2.4s; }
.method-card:nth-child(6) .method-icon { animation-delay: 3.0s; }
.method-card:hover .method-icon {
	background: rgba(0, 255, 136, 0.1);
	border-color: rgba(0, 255, 136, 0.25);
	box-shadow: 0 0 12px rgba(0, 255, 136, 0.15);
}
.method-icon svg {
	width: 28px;
	height: 28px;
}
.method-card h3 {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	margin-bottom: var(--spacing-sm);
}
.method-card p {
	color: var(--text-secondary);
	margin-bottom: var(--spacing-md);
	line-height: 1.6;
}
.method-btn {
	display: inline-block;
	background: var(--gradient-primary);
	color: var(--bg-primary);
	padding: var(--spacing-sm) var(--spacing-lg);
	border-radius: var(--radius-md);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition-fast);
}
.method-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow);
}
.faq-section {
	padding: var(--spacing-2xl) 0;
}
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}
.faq-search {
	margin-bottom: var(--spacing-xl);
}
.search-container {
	position: relative;
	max-width: 500px;
	margin: 0 auto;
}
.search-icon {
	position: absolute;
	left: var(--spacing-sm);
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	color: var(--text-muted);
}
#faq-search-input {
	width: 100%;
	padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) 3rem;
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	color: var(--text-primary);
	font-size: 1rem;
	transition: var(--transition-fast);
}
#faq-search-input:focus {
	outline: none;
	border-color: var(--quantum-primary);
	box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}
.faq-items {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}
.faq-item {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	backdrop-filter: blur(20px);
	transition: var(--transition-fast);
}
.faq-item:hover {
	border-color: var(--quantum-primary);
}
.faq-question {
	padding: var(--spacing-md);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
}
.faq-question h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0;
	color: var(--text-primary);
}
.faq-toggle {
	flex-shrink: 0;
	margin-left: var(--spacing-md);
}
.faq-toggle svg {
	width: 20px;
	height: 20px;
	color: var(--quantum-primary);
	transition: var(--transition-fast);
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.faq-answer p {
	padding: 0 var(--spacing-md) var(--spacing-md);
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
}
.no-results {
	text-align: center;
	padding: var(--spacing-xl);
	color: var(--text-muted);
}
.proper-support {
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
	padding: var(--spacing-2xl) 0;
}
.proper-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: var(--spacing-2xl);
	align-items: center;
}
.proper-features {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
}
.ai-support-brain {
	position: relative;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}
.contact-info {
	padding: var(--spacing-2xl) 0;
}
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-lg);
}
.contact-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: var(--transition-fast);
}
.contact-card:hover {
	transform: translateY(-5px);
	border-color: var(--quantum-primary);
}
.contact-header {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-md);
	padding-bottom: var(--spacing-md);
	border-bottom: var(--border-glass);
}
.contact-icon {
	width: 40px;
	height: 40px;
	color: var(--quantum-primary);
}
.contact-icon svg {
	width: 100%;
	height: 100%;
}
.contact-header h3 {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	color: var(--text-primary);
}
.contact-details p {
	margin-bottom: var(--spacing-xs);
	color: var(--text-secondary);
}
.contact-details strong {
	color: var(--text-primary);
}
.response-time,
.availability,
.coverage {
	color: var(--quantum-primary);
	font-size: 0.875rem;
	font-weight: 600;
	margin-top: var(--spacing-sm);
}
@media (max-width: 768px) {
	.proper-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.methods-grid {
		grid-template-columns: 1fr;
	}
}
/* ================= END SUPPORT PAGE STYLES ================= */

/* ================= PAGE-SPECIFIC HERO VISUALS ================= */

/* ── Dashboard Monitor Hero Visual (Homepage) ── */
.dash-monitor {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 2;
}

.dash-monitor-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.13) 0%, transparent 40%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.09) 0%, transparent 40%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 55%);
	z-index: -1;
	filter: blur(30px);
	animation: rackGlow 5s ease-in-out infinite;
}

/* Screen frame */
.dash-screen {
	width: 300px;
	background: linear-gradient(180deg, rgba(12, 16, 28, 0.98), rgba(8, 11, 22, 0.99));
	border: 1px solid rgba(0, 255, 136, 0.18);
	border-radius: 12px;
	padding: 0;
	overflow: hidden;
	box-shadow:
		0 8px 50px rgba(0, 0, 0, 0.4),
		0 0 60px rgba(0, 255, 136, 0.1),
		0 0 120px rgba(0, 255, 136, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Top bar */
.dash-topbar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dash-dots { display: flex; gap: 5px; }
.dash-dot { width: 7px; height: 7px; border-radius: 50%; }
.dash-dot--red { background: #ff5f57; }
.dash-dot--amber { background: #febc2e; }
.dash-dot--green { background: #28c840; }
.dash-topbar-title {
	flex: 1;
	height: 6px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 3px;
	max-width: 100px;
	margin: 0 auto;
}
.dash-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 6px var(--quantum-primary);
	animation: ledBlink 2s ease-in-out infinite;
}

/* Metrics row */
.dash-metrics {
	display: flex;
	gap: 8px;
	padding: 12px 12px 8px;
}
.dash-metric {
	flex: 1;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.dash-metric-label {
	height: 4px;
	width: 60%;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
}
.dash-metric-value {
	height: 8px;
	width: 50%;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 3px;
}
.dash-metric-value--up { background: rgba(0, 255, 136, 0.25); }
.dash-metric-bar {
	height: 3px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 2px;
	overflow: hidden;
}
.dash-metric-fill {
	height: 100%;
	border-radius: 2px;
	animation: metricPulse 4s ease-in-out infinite;
}
.dash-metric-fill--1 { width: 72%; background: var(--quantum-primary); }
.dash-metric-fill--2 { width: 45%; background: var(--quantum-secondary); animation-delay: -1.3s; }
.dash-metric-fill--3 { width: 88%; background: var(--quantum-primary); animation-delay: -2.6s; }

@keyframes metricPulse {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

/* Chart area */
.dash-chart {
	position: relative;
	margin: 0 12px;
	height: 60px;
	background: rgba(0, 255, 136, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 6px;
	overflow: hidden;
}
.dash-chart-svg { width: 100%; height: 100%; display: block; }
.dash-chart-line {
	stroke-dasharray: 400;
	stroke-dashoffset: 400;
	animation: chartDraw 3s ease-out forwards, chartPulse 4s ease-in-out 3s infinite;
}
@keyframes chartDraw { to { stroke-dashoffset: 0; } }
@keyframes chartPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }

.dash-chart-area {
	opacity: 0;
	animation: chartAreaFade 0.5s ease-out 2.5s forwards, metricPulse 4s ease-in-out 3s infinite;
}
@keyframes chartAreaFade { to { opacity: 1; } }

.dash-chart-scan {
	position: absolute;
	top: 0;
	left: -20%;
	width: 20%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.06), transparent);
	animation: visorScan 5s ease-in-out infinite;
}

/* Status rows */
.dash-rows {
	padding: 10px 12px 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.dash-row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 8px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 4px;
}
.dash-row-led {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	flex-shrink: 0;
}
.dash-row-led--green {
	background: #00ff88;
	box-shadow: 0 0 4px #00ff88;
	animation: ledBlink 2.5s ease-in-out infinite;
}
.dash-row-led--blue {
	background: #0099ff;
	box-shadow: 0 0 4px #0099ff;
	animation: ledBlink 1.8s ease-in-out infinite;
}
.dash-row:nth-child(2) .dash-row-led { animation-delay: 0.4s; }
.dash-row:nth-child(3) .dash-row-led { animation-delay: 0.8s; }
.dash-row-bar {
	flex: 1;
	height: 5px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 3px;
}
.dash-row-tag {
	width: 28px;
	height: 10px;
	border-radius: 3px;
	flex-shrink: 0;
}
.dash-row-tag--ok {
	background: rgba(0, 255, 136, 0.2);
	border: 1px solid rgba(0, 255, 136, 0.3);
}
.dash-row-tag--sync {
	background: rgba(0, 153, 255, 0.2);
	border: 1px solid rgba(0, 153, 255, 0.3);
	animation: syncPulse 2s ease-in-out infinite;
}
@keyframes syncPulse {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

/* Monitor stand */
.dash-stand {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.dash-stand-neck {
	width: 20px;
	height: 24px;
	background: linear-gradient(180deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.03));
	border-left: 1px solid rgba(0, 255, 136, 0.1);
	border-right: 1px solid rgba(0, 255, 136, 0.1);
}
.dash-stand-base {
	width: 80px;
	height: 6px;
	background: linear-gradient(180deg, rgba(30, 40, 65, 0.9), rgba(22, 30, 50, 0.7));
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

/* ── VPS Server Rack Hero Visual ── */
.vps-rack {
	position: relative;
	width: 280px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	z-index: 2;
	padding: 24px 18px;
	background: linear-gradient(180deg, rgba(22, 28, 48, 0.9), rgba(14, 18, 32, 0.95));
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: 12px;
	box-shadow:
		0 8px 50px rgba(0, 0, 0, 0.4),
		0 0 60px rgba(0, 255, 136, 0.1),
		0 0 120px rgba(0, 255, 136, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.vps-rack-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.13) 0%, transparent 40%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.09) 0%, transparent 40%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 55%);
	z-index: -1;
	filter: blur(30px);
	animation: rackGlow 5s ease-in-out infinite;
}

@keyframes rackGlow {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.05); }
}

/* ── Individual server unit ── */
.vps-unit {
	background: linear-gradient(180deg, rgba(30, 38, 60, 0.95), rgba(24, 30, 50, 0.97));
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 6px;
	padding: 12px 14px;
	position: relative;
	overflow: hidden;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vps-unit-face {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* LED indicators */
.vps-leds {
	display: flex;
	flex-direction: column;
	gap: 5px;
	flex-shrink: 0;
}

.vps-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

.vps-led--green {
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: ledBlink 2s ease-in-out infinite;
}

.vps-led--blue {
	background: #0099ff;
	box-shadow: 0 0 6px #0099ff, 0 0 14px rgba(0, 153, 255, 0.3);
	animation: ledBlink 3s ease-in-out infinite;
}

.vps-led--amber {
	background: #ffaa00;
	box-shadow: 0 0 6px #ffaa00, 0 0 14px rgba(255, 170, 0, 0.3);
	animation: ledBlink 1.5s ease-in-out infinite;
}

.vps-unit--2 .vps-led--green { animation-delay: 0.3s; }
.vps-unit--2 .vps-led--blue { animation-delay: 0.6s; }
.vps-unit--3 .vps-led--green { animation-delay: 0.8s; }
.vps-unit--3 .vps-led--amber { animation-delay: 0.2s; }

@keyframes ledBlink {
	0%, 100% { opacity: 1; }
	40% { opacity: 0.4; }
	60% { opacity: 1; }
}

/* Drive bays */
.vps-drives {
	display: flex;
	gap: 4px;
	flex-shrink: 0;
}

.vps-drive {
	width: 22px;
	height: 28px;
	background: linear-gradient(180deg, rgba(20, 26, 44, 0.9), rgba(16, 20, 36, 0.95));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 3px;
	position: relative;
}

/* Drive activity light */
.vps-drive::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--quantum-primary);
	opacity: 0.3;
	animation: driveActivity 0.8s ease-in-out infinite;
}

.vps-drive:nth-child(2)::after { animation-delay: 0.2s; }
.vps-drive:nth-child(3)::after { animation-delay: 0.5s; }
.vps-drive:nth-child(4)::after { animation-delay: 0.7s; }

.vps-unit--2 .vps-drive::after { animation-delay: 0.1s; animation-duration: 1s; }
.vps-unit--2 .vps-drive:nth-child(2)::after { animation-delay: 0.4s; }
.vps-unit--2 .vps-drive:nth-child(3)::after { animation-delay: 0.6s; }
.vps-unit--3 .vps-drive::after { animation-delay: 0.3s; animation-duration: 1.2s; }
.vps-unit--3 .vps-drive:nth-child(2)::after { animation-delay: 0.5s; }

@keyframes driveActivity {
	0%, 100% { opacity: 0.2; }
	50% { opacity: 0.8; }
}

/* Vent group */
.vps-vent-group {
	display: flex;
	gap: 3px;
	margin-inline-start: auto;
}

.vps-vent-slit {
	width: 2px;
	height: 20px;
	background: rgba(0, 255, 136, 0.06);
	border-radius: 1px;
	animation: ventPulse 3s ease-in-out infinite;
}

.vps-vent-slit:nth-child(2) { animation-delay: 0.2s; }
.vps-vent-slit:nth-child(3) { animation-delay: 0.4s; }
.vps-vent-slit:nth-child(4) { animation-delay: 0.6s; }
.vps-vent-slit:nth-child(5) { animation-delay: 0.8s; }
.vps-vent-slit:nth-child(6) { animation-delay: 1.0s; }

@keyframes ventPulse {
	0%, 100% { background: rgba(0, 255, 136, 0.04); }
	50% { background: rgba(0, 255, 136, 0.15); }
}

/* Activity bar — running light across the bottom of each unit */
.vps-activity-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	overflow: hidden;
}

.vps-activity-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 100%;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	animation: activitySweep 3s linear infinite;
}

.vps-unit--2 .vps-activity-bar::after { animation-delay: -1s; animation-duration: 3.5s; }
.vps-unit--3 .vps-activity-bar::after { animation-delay: -2s; animation-duration: 2.8s; }

@keyframes activitySweep {
	0%   { left: -30%; }
	100% { left: 130%; }
}

/* ── Data flow lines (vertical between units) ── */
.vps-data-flow {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 28px;
	width: 2px;
	pointer-events: none;
}

.vps-data-packet {
	position: absolute;
	left: 0;
	top: -8px;
	width: 2px;
	height: 8px;
	background: linear-gradient(180deg, transparent, var(--quantum-primary));
	border-radius: 2px;
	animation: dataFlow 2.5s linear infinite;
}

.vps-data-packet--2 {
	left: 216px;
	animation-delay: -0.8s;
	animation-duration: 3s;
	background: linear-gradient(180deg, transparent, var(--quantum-secondary));
}

.vps-data-packet--3 {
	left: 120px;
	animation-delay: -1.6s;
	animation-duration: 2s;
	background: linear-gradient(180deg, transparent, var(--quantum-primary));
}

@keyframes dataFlow {
	0%   { top: -8px; opacity: 0; }
	10%  { opacity: 1; }
	90%  { opacity: 1; }
	100% { top: 100%; opacity: 0; }
}

/* ══════════════════════════════════════════════
   Blog Editor Hero Visual
   ══════════════════════════════════════════════ */
.blog-editor {
	position: relative;
	z-index: 2;
}

.blog-editor-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.13) 0%, transparent 40%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.09) 0%, transparent 40%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 55%);
	z-index: -1;
	filter: blur(30px);
	animation: rackGlow 5s ease-in-out infinite;
}

.blog-editor-frame {
	width: 320px;
	background: linear-gradient(180deg, rgba(12, 16, 28, 0.98), rgba(8, 11, 22, 0.99));
	border: 1px solid rgba(0, 255, 136, 0.18);
	border-radius: 12px;
	overflow: hidden;
	box-shadow:
		0 8px 50px rgba(0, 0, 0, 0.4),
		0 0 60px rgba(0, 255, 136, 0.1),
		0 0 120px rgba(0, 255, 136, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.blog-editor-topbar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	background: rgba(0, 0, 0, 0.35);
	border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.blog-editor-dots {
	display: flex;
	gap: 6px;
}

.blog-editor-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.blog-editor-dot--red { background: #ff5f56; }
.blog-editor-dot--amber { background: #ffbd2e; }
.blog-editor-dot--green { background: #27c93f; }

.blog-editor-filename {
	font-family: var(--font-primary);
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.35);
	letter-spacing: 0.5px;
}

.blog-editor-body {
	padding: 14px 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.blog-editor-ln {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 22px;
	padding: 0 14px;
}

.blog-editor-ln--active {
	background: rgba(0, 255, 136, 0.03);
	border-left: 2px solid var(--quantum-primary);
	padding-left: 12px;
}

.blog-editor-ln-num {
	width: 18px;
	text-align: right;
	font-family: var(--font-primary);
	font-size: 0.6rem;
	color: rgba(255, 255, 255, 0.15);
	flex-shrink: 0;
	user-select: none;
}

.blog-editor-hash {
	color: var(--quantum-primary);
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.85rem;
}

.blog-editor-text {
	display: block;
	height: 8px;
	border-radius: 3px;
	opacity: 0;
	animation: blogLineReveal 0.6s ease-out forwards;
}

.blog-editor-text--title {
	width: 60%;
	height: 12px;
	background: linear-gradient(90deg, rgba(0, 255, 136, 0.25), rgba(0, 153, 255, 0.18));
	animation-delay: 0.3s;
}

.blog-editor-text--p1 {
	width: 88%;
	background: rgba(255, 255, 255, 0.07);
	animation-delay: 0.7s;
}

.blog-editor-text--p2 {
	width: 72%;
	background: rgba(255, 255, 255, 0.05);
	animation-delay: 0.9s;
}

.blog-editor-text--code {
	width: 55%;
	background: rgba(0, 153, 255, 0.12);
	border-left: 2px solid var(--quantum-secondary);
	padding-left: 4px;
	animation-delay: 1.3s;
}

.blog-editor-text--code2 {
	width: 40%;
	background: rgba(0, 153, 255, 0.10);
	border-left: 2px solid var(--quantum-secondary);
	padding-left: 4px;
	animation-delay: 1.5s;
}

.blog-editor-text--p3 {
	width: 80%;
	background: rgba(255, 255, 255, 0.06);
	animation-delay: 1.8s;
}

.blog-editor-text--p4 {
	width: 35%;
	background: rgba(255, 255, 255, 0.05);
	animation-delay: 2.1s;
}

.blog-editor-cursor {
	width: 2px;
	height: 14px;
	background: var(--quantum-primary);
	box-shadow: 0 0 6px var(--quantum-primary);
	animation: blogCursorBlink 1s steps(2) infinite;
	flex-shrink: 0;
}

.blog-editor-statusbar {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 6px 14px;
	background: rgba(0, 0, 0, 0.3);
	border-top: 1px solid rgba(0, 255, 136, 0.08);
	font-family: var(--font-primary);
	font-size: 0.55rem;
	color: rgba(255, 255, 255, 0.25);
	letter-spacing: 0.3px;
}

.blog-editor-statusbar-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 4px var(--quantum-primary);
	animation: ledBlink 2s ease-in-out infinite;
}

/* Floating tags */
.blog-tag {
	position: absolute;
	font-family: var(--font-primary);
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: 12px;
	background: rgba(0, 255, 136, 0.06);
	border: 1px solid rgba(0, 255, 136, 0.18);
	color: var(--quantum-primary);
	animation: blogTagFloat 4s ease-in-out infinite alternate;
	pointer-events: none;
}

.blog-tag--1 { top: 8%; right: -16%; animation-delay: 0s; }
.blog-tag--2 { bottom: 22%; right: -20%; animation-delay: 1s; }
.blog-tag--3 {
	top: 18%; left: -14%; animation-delay: 2s;
	color: var(--quantum-secondary);
	border-color: rgba(0, 153, 255, 0.18);
	background: rgba(0, 153, 255, 0.06);
}
.blog-tag--4 { bottom: 8%; left: -18%; animation-delay: 3s; }

@keyframes blogLineReveal {
	0% { opacity: 0; width: 0; }
	100% { opacity: 1; }
}

@keyframes blogCursorBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

@keyframes blogTagFloat {
	0% { transform: translateY(0); opacity: 0.6; }
	100% { transform: translateY(-8px); opacity: 1; }
}

@media (max-width: 768px) {
	.blog-editor-frame {
		width: 260px;
	}

	.blog-tag { display: none; }
}

@media (max-width: 480px) {
	.blog-editor-frame {
		width: 220px;
	}
}

/* ══════════════════════════════════════════════
   About Page — Company Badge Hero
   ══════════════════════════════════════════════ */
.about-badge {
	position: relative;
	z-index: 2;
}

.about-badge-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.13) 0%, transparent 40%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.09) 0%, transparent 40%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 55%);
	z-index: -1;
	filter: blur(30px);
	animation: rackGlow 5s ease-in-out infinite;
}

.about-badge-frame {
	width: 260px;
	background: linear-gradient(180deg, rgba(12, 16, 28, 0.98), rgba(8, 11, 22, 0.99));
	border: 1px solid rgba(0, 255, 136, 0.18);
	border-radius: 16px;
	overflow: hidden;
	padding: 28px 24px 20px;
	text-align: center;
	position: relative;
	box-shadow:
		0 8px 50px rgba(0, 0, 0, 0.4),
		0 0 60px rgba(0, 255, 136, 0.1),
		0 0 120px rgba(0, 255, 136, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.about-badge-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.about-badge-logo {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(0, 255, 136, 0.08);
	border: 2px solid rgba(0, 255, 136, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: iconBreath 4s ease-in-out infinite;
}

.about-badge-logo svg {
	width: 24px;
	height: 24px;
	color: var(--quantum-primary);
}

.about-badge-verified {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 20px;
	height: 20px;
	color: var(--quantum-primary);
	opacity: 0;
	animation: aboutVerifiedPop 0.4s ease-out 1.2s forwards;
}

.about-badge-verified svg {
	width: 100%;
	height: 100%;
}

.about-badge-name {
	font-family: var(--font-primary);
	font-size: 1.3rem;
	font-weight: 900;
	letter-spacing: 2px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 4px;
}

.about-badge-role {
	font-family: var(--font-primary);
	font-size: 0.6rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 16px;
}

.about-badge-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.25), transparent);
	margin-bottom: 16px;
}

.about-badge-stats {
	display: flex;
	justify-content: space-around;
}

.about-badge-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.about-badge-stat-val {
	font-family: var(--font-primary);
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--quantum-primary);
}

.about-badge-stat-lbl {
	font-size: 0.55rem;
	color: rgba(255, 255, 255, 0.3);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.about-badge-scan {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg,
		transparent 0%,
		rgba(0, 255, 136, 0.04) 50%,
		transparent 100%);
	background-size: 100% 60px;
	animation: aboutScanDown 4s linear infinite;
}

@keyframes aboutVerifiedPop {
	0% { opacity: 0; transform: scale(0.5); }
	100% { opacity: 1; transform: scale(1); }
}

@keyframes aboutScanDown {
	0% { background-position: 0 -60px; }
	100% { background-position: 0 calc(100% + 60px); }
}

@media (max-width: 480px) {
	.about-badge-frame { width: 220px; padding: 22px 18px 16px; }
}

/* ══════════════════════════════════════════════
   Contact Page — Chat Terminal Hero
   ══════════════════════════════════════════════ */
.contact-chat {
	position: relative;
	z-index: 2;
}

.contact-chat-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.13) 0%, transparent 40%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.09) 0%, transparent 40%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 55%);
	z-index: -1;
	filter: blur(30px);
	animation: rackGlow 5s ease-in-out infinite;
}

.contact-chat-frame {
	width: 300px;
	background: linear-gradient(180deg, rgba(12, 16, 28, 0.98), rgba(8, 11, 22, 0.99));
	border: 1px solid rgba(0, 255, 136, 0.18);
	border-radius: 12px;
	overflow: hidden;
	box-shadow:
		0 8px 50px rgba(0, 0, 0, 0.4),
		0 0 60px rgba(0, 255, 136, 0.1),
		0 0 120px rgba(0, 255, 136, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-chat-topbar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: rgba(0, 0, 0, 0.35);
	border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.contact-chat-dots {
	display: flex;
	gap: 6px;
}

.contact-chat-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.contact-chat-dot--red { background: #ff5f56; }
.contact-chat-dot--amber { background: #ffbd2e; }
.contact-chat-dot--green { background: #27c93f; }

.contact-chat-title {
	font-family: var(--font-primary);
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.35);
	letter-spacing: 0.5px;
	flex: 1;
}

.contact-chat-status {
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-primary);
	font-size: 0.55rem;
	color: var(--quantum-primary);
	letter-spacing: 0.3px;
}

.contact-chat-status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 4px var(--quantum-primary);
	animation: ledBlink 2s ease-in-out infinite;
}

.contact-chat-body {
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 200px;
}

.contact-msg {
	max-width: 80%;
	padding: 8px 12px;
	border-radius: 12px;
	font-size: 0.7rem;
	line-height: 1.4;
	opacity: 0;
	transform: translateY(8px);
	animation: contactMsgAppear 0.4s ease-out forwards;
}

.contact-msg--in {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--text-secondary);
	border-bottom-left-radius: 4px;
}

.contact-msg--out {
	align-self: flex-end;
	background: rgba(0, 255, 136, 0.08);
	border: 1px solid rgba(0, 255, 136, 0.15);
	color: var(--quantum-primary);
	border-bottom-right-radius: 4px;
}

.contact-msg--1 { animation-delay: 0.3s; }
.contact-msg--2 { animation-delay: 0.9s; }
.contact-msg--3 { animation-delay: 1.5s; }
.contact-msg--4 { animation-delay: 2.1s; }

.contact-chat-typing {
	align-self: flex-end;
	display: flex;
	gap: 4px;
	padding: 8px 14px;
	background: rgba(0, 255, 136, 0.05);
	border-radius: 12px;
	opacity: 0;
	animation: contactMsgAppear 0.3s ease-out 2.7s forwards;
}

.contact-chat-typing span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--quantum-primary);
	animation: contactTypingDot 1.2s ease-in-out infinite;
}

.contact-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.contact-chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes contactMsgAppear {
	0% { opacity: 0; transform: translateY(8px); }
	100% { opacity: 1; transform: translateY(0); }
}

@keyframes contactTypingDot {
	0%, 100% { opacity: 0.3; transform: scale(0.8); }
	50% { opacity: 1; transform: scale(1.2); }
}

@media (max-width: 768px) {
	.contact-chat-frame { width: 260px; }
}

@media (max-width: 480px) {
	.contact-chat-frame { width: 220px; }
	.contact-chat-body { min-height: 160px; }
}

/* ══════════════════════════════════════════════
   Support Page — Diagnostic Console Hero
   ══════════════════════════════════════════════ */
.support-console {
	position: relative;
	z-index: 2;
}

.support-console-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.13) 0%, transparent 40%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.09) 0%, transparent 40%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 55%);
	z-index: -1;
	filter: blur(30px);
	animation: rackGlow 5s ease-in-out infinite;
}

.support-console-frame {
	width: 300px;
	background: linear-gradient(180deg, rgba(12, 16, 28, 0.98), rgba(8, 11, 22, 0.99));
	border: 1px solid rgba(0, 255, 136, 0.18);
	border-radius: 12px;
	overflow: hidden;
	box-shadow:
		0 8px 50px rgba(0, 0, 0, 0.4),
		0 0 60px rgba(0, 255, 136, 0.1),
		0 0 120px rgba(0, 255, 136, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.support-console-topbar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	background: rgba(0, 0, 0, 0.35);
	border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.support-console-dots {
	display: flex;
	gap: 6px;
}

.support-console-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.support-console-dot--red { background: #ff5f56; }
.support-console-dot--amber { background: #ffbd2e; }
.support-console-dot--green { background: #27c93f; }

.support-console-title {
	font-family: var(--font-primary);
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.35);
	letter-spacing: 0.5px;
}

.support-console-body {
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.support-check {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	opacity: 0;
	transform: translateX(-8px);
	animation: supportCheckReveal 0.4s ease-out forwards;
}

.support-check--1 { animation-delay: 0.3s; }
.support-check--2 { animation-delay: 0.6s; }
.support-check--3 { animation-delay: 0.9s; }
.support-check--4 { animation-delay: 1.2s; }
.support-check--5 { animation-delay: 1.5s; }

.support-check svg {
	width: 14px;
	height: 14px;
	color: var(--quantum-primary);
	flex-shrink: 0;
}

.support-check span:nth-child(2) {
	flex: 1;
	font-size: 0.7rem;
	color: var(--text-secondary);
}

.support-check-ok {
	font-family: var(--font-primary);
	font-size: 0.55rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: var(--quantum-primary);
}

.support-console-statusbar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: rgba(0, 0, 0, 0.3);
	border-top: 1px solid rgba(0, 255, 136, 0.08);
	font-family: var(--font-primary);
	font-size: 0.55rem;
	color: var(--quantum-primary);
	letter-spacing: 0.3px;
}

.support-console-statusbar-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 4px var(--quantum-primary);
	animation: ledBlink 2s ease-in-out infinite;
}

@keyframes supportCheckReveal {
	0% { opacity: 0; transform: translateX(-8px); }
	100% { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
	.support-console-frame { width: 260px; }
}

@media (max-width: 480px) {
	.support-console-frame { width: 220px; }
}

/* ── DDoS Orbital Defense Fortress ── */
.ddos-fortress {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.ddos-fortress-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 35% 30%, rgba(255, 60, 60, 0.09) 0%, transparent 35%),
		radial-gradient(ellipse at 65% 70%, rgba(255, 60, 60, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.14) 0%, transparent 45%),
		radial-gradient(ellipse at 30% 60%, rgba(0, 153, 255, 0.06) 0%, transparent 35%);
	z-index: -1;
	filter: blur(30px);
	animation: fortressGlow 6s ease-in-out infinite;
}

@keyframes fortressGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

/* ── Defense orbit rings ── */
.ddos-orbit {
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
}

.ddos-orbit--3 {
	width: 280px;
	height: 280px;
	margin-top: -140px;
	margin-left: -140px;
	border: 1px solid rgba(0, 255, 136, 0.08);
	animation: orbitSpin 30s linear infinite;
}

.ddos-orbit--2 {
	width: 200px;
	height: 200px;
	margin-top: -100px;
	margin-left: -100px;
	border: 1px solid rgba(0, 255, 136, 0.14);
	animation: orbitSpin 22s linear infinite reverse;
}

.ddos-orbit--1 {
	width: 120px;
	height: 120px;
	margin-top: -60px;
	margin-left: -60px;
	border: 1px solid rgba(0, 255, 136, 0.22);
	animation: orbitSpin 16s linear infinite;
}

/* Dashed segments on outer ring */
.ddos-orbit--3 { border-style: dashed; border-width: 1.5px; }
.ddos-orbit--2 { border-style: dotted; border-width: 1.5px; }

/* Orbit ring pulse */
.ddos-orbit--3::after,
.ddos-orbit--2::after,
.ddos-orbit--1::after {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: 50%;
	border: 1px solid rgba(0, 255, 136, 0.05);
	animation: ringFlash 4s ease-in-out infinite;
}
.ddos-orbit--2::after { animation-delay: -1.3s; }
.ddos-orbit--1::after { animation-delay: -2.6s; }

@keyframes orbitSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes ringFlash {
	0%, 80%, 100% { opacity: 0; }
	85% { opacity: 1; }
	90% { opacity: 0.3; }
}

/* ── Orbiting defense nodes ── */
.ddos-node {
	position: absolute;
	width: 8px;
	height: 8px;
	margin: -4px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	z-index: 3;
}

.ddos-node--a,
.ddos-node--b,
.ddos-node--c {
	background: #00ff88;
	box-shadow: 0 0 8px #00ff88, 0 0 20px rgba(0, 255, 136, 0.3);
}

.ddos-node--d,
.ddos-node--e {
	background: #0099ff;
	box-shadow: 0 0 8px #0099ff, 0 0 20px rgba(0, 153, 255, 0.3);
	width: 7px;
	height: 7px;
	margin: -3.5px;
}

.ddos-node--f {
	background: #00ff88;
	box-shadow: 0 0 10px #00ff88, 0 0 25px rgba(0, 255, 136, 0.4);
	width: 6px;
	height: 6px;
	margin: -3px;
}

/* Outer ring nodes (radius 140px) */
.ddos-node--a { animation: nodeOrbitOuter 30s linear infinite; }
.ddos-node--b { animation: nodeOrbitOuter 30s linear infinite -10s; }
.ddos-node--c { animation: nodeOrbitOuter 30s linear infinite -20s; }

/* Mid ring nodes (radius 100px) */
.ddos-node--d { animation: nodeOrbitMid 22s linear infinite reverse; }
.ddos-node--e { animation: nodeOrbitMid 22s linear infinite -11s reverse; }

/* Inner ring node (radius 60px) */
.ddos-node--f { animation: nodeOrbitInner 16s linear infinite; }

@keyframes nodeOrbitOuter {
	from { transform: rotate(0deg) translateX(140px); }
	to { transform: rotate(360deg) translateX(140px); }
}

@keyframes nodeOrbitMid {
	from { transform: rotate(0deg) translateX(100px); }
	to { transform: rotate(360deg) translateX(100px); }
}

@keyframes nodeOrbitInner {
	from { transform: rotate(0deg) translateX(60px); }
	to { transform: rotate(360deg) translateX(60px); }
}

/* ── Central shield core ── */
.ddos-core-hex {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 44px;
	height: 44px;
	margin: -22px;
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(0, 153, 255, 0.15));
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	z-index: 5;
	animation: coreBreath 3s ease-in-out infinite;
}

.ddos-core-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 22px;
	margin: -11px;
	background: rgba(0, 255, 136, 0.35);
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	z-index: 6;
	animation: coreBreath 3s ease-in-out infinite 0.3s;
}

.ddos-core-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 70px;
	margin: -35px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, transparent 70%);
	z-index: 4;
	animation: corePulse 2.5s ease-in-out infinite;
}

@keyframes coreBreath {
	0%, 100% { transform: scale(1); opacity: 0.8; filter: brightness(1); }
	50% { transform: scale(1.08); opacity: 1; filter: brightness(1.3); }
}

@keyframes corePulse {
	0%, 100% { transform: scale(1); opacity: 0.4; }
	50% { transform: scale(1.5); opacity: 0.15; }
}

/* ── Attack particles — fly from all directions, absorbed at outer ring ── */
.ddos-atk {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #ff4444;
	box-shadow: 0 0 6px rgba(255, 68, 68, 0.7), 0 0 12px rgba(255, 68, 68, 0.3);
	z-index: 2;
}

/* Trail effect */
.ddos-atk::after {
	content: '';
	position: absolute;
	width: 12px;
	height: 2px;
	border-radius: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.4));
	top: 1px;
}

/* Top attacks */
.ddos-atk--1  { animation: atkTop 2.2s linear infinite; }
.ddos-atk--2  { animation: atkTop 2.8s linear infinite -1.4s; }

/* Top-right */
.ddos-atk--3  { animation: atkTR 2.5s linear infinite -0.3s; }

/* Right */
.ddos-atk--4  { animation: atkRight 2.0s linear infinite -0.7s; }
.ddos-atk--5  { animation: atkRight 2.6s linear infinite -1.8s; }

/* Bottom-right */
.ddos-atk--6  { animation: atkBR 2.3s linear infinite -0.5s; }

/* Bottom */
.ddos-atk--7  { animation: atkBottom 2.4s linear infinite -1.0s; }

/* Bottom-left */
.ddos-atk--8  { animation: atkBL 2.7s linear infinite -0.2s; }

/* Left */
.ddos-atk--9  { animation: atkLeft 2.1s linear infinite -1.3s; }
.ddos-atk--10 { animation: atkLeft 2.9s linear infinite -0.6s; }

/* Trail rotation per direction */
.ddos-atk--1::after, .ddos-atk--2::after { transform: rotate(90deg); transform-origin: right center; }
.ddos-atk--3::after { transform: rotate(135deg); transform-origin: right center; }
.ddos-atk--4::after, .ddos-atk--5::after { transform: rotate(180deg); transform-origin: right center; }
.ddos-atk--6::after { transform: rotate(-135deg); transform-origin: right center; }
.ddos-atk--7::after { transform: rotate(-90deg); transform-origin: right center; }
.ddos-atk--8::after { transform: rotate(-45deg); transform-origin: right center; }
.ddos-atk--9::after, .ddos-atk--10::after { transform: rotate(0deg); }

@keyframes atkTop {
	0%   { top: -8px; left: 48%; opacity: 0; }
	8%   { opacity: 1; }
	70%  { top: 31%; left: 49%; opacity: 0.9; }
	88%  { top: 36%; left: 49.5%; opacity: 0.2; }
	100% { top: 38%; left: 50%; opacity: 0; }
}

@keyframes atkTR {
	0%   { top: -4%; right: -4%; opacity: 0; }
	8%   { opacity: 1; }
	70%  { top: 32%; right: 32%; opacity: 0.9; }
	88%  { top: 37%; right: 37%; opacity: 0.2; }
	100% { top: 39%; right: 39%; opacity: 0; }
}

@keyframes atkRight {
	0%   { top: 48%; right: -8px; opacity: 0; }
	8%   { opacity: 1; }
	70%  { top: 49%; right: 31%; opacity: 0.9; }
	88%  { top: 49.5%; right: 36%; opacity: 0.2; }
	100% { top: 50%; right: 38%; opacity: 0; }
}

@keyframes atkBR {
	0%   { bottom: -4%; right: -4%; opacity: 0; }
	8%   { opacity: 1; }
	70%  { bottom: 32%; right: 32%; opacity: 0.9; }
	88%  { bottom: 37%; right: 37%; opacity: 0.2; }
	100% { bottom: 39%; right: 39%; opacity: 0; }
}

@keyframes atkBottom {
	0%   { bottom: -8px; left: 48%; opacity: 0; }
	8%   { opacity: 1; }
	70%  { bottom: 31%; left: 49%; opacity: 0.9; }
	88%  { bottom: 36%; left: 49.5%; opacity: 0.2; }
	100% { bottom: 38%; left: 50%; opacity: 0; }
}

@keyframes atkBL {
	0%   { bottom: -4%; left: -4%; opacity: 0; }
	8%   { opacity: 1; }
	70%  { bottom: 32%; left: 32%; opacity: 0.9; }
	88%  { bottom: 37%; left: 37%; opacity: 0.2; }
	100% { bottom: 39%; left: 39%; opacity: 0; }
}

@keyframes atkLeft {
	0%   { top: 48%; left: -8px; opacity: 0; }
	8%   { opacity: 1; }
	70%  { top: 49%; left: 31%; opacity: 0.9; }
	88%  { top: 49.5%; left: 36%; opacity: 0.2; }
	100% { top: 50%; left: 38%; opacity: 0; }
}

/* ── Impact flashes — bursts on outer ring when attacks hit ── */
.ddos-impact {
	position: absolute;
	width: 14px;
	height: 14px;
	margin: -7px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 100, 60, 0.6) 0%, rgba(255, 60, 60, 0.2) 50%, transparent 70%);
	z-index: 3;
	opacity: 0;
}

.ddos-impact--1 {
	top: 5%;
	left: 50%;
	animation: impactFlash 2.2s ease-out infinite;
}
.ddos-impact--2 {
	top: 50%;
	right: 3%;
	animation: impactFlash 2.0s ease-out infinite -0.7s;
}
.ddos-impact--3 {
	bottom: 8%;
	left: 22%;
	animation: impactFlash 2.3s ease-out infinite -1.2s;
}
.ddos-impact--4 {
	top: 28%;
	left: 5%;
	animation: impactFlash 2.7s ease-out infinite -0.4s;
}

@keyframes impactFlash {
	0%, 60% { opacity: 0; transform: scale(0.3); }
	65% { opacity: 1; transform: scale(1.5); }
	75% { opacity: 0.6; transform: scale(1); }
	100% { opacity: 0; transform: scale(0.5); }
}

/* ── Energy field — radial gradient that shimmers ── */
.ddos-field {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	margin: -100px;
	border-radius: 50%;
	background: radial-gradient(circle, transparent 40%, rgba(0, 255, 136, 0.04) 60%, rgba(0, 255, 136, 0.02) 80%, transparent 100%);
	z-index: 1;
	animation: fieldShimmer 5s ease-in-out infinite;
}

@keyframes fieldShimmer {
	0%, 100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
	33% { opacity: 0.8; transform: scale(1.1) rotate(5deg); }
	66% { opacity: 0.5; transform: scale(0.95) rotate(-3deg); }
}

/* ── Status indicator bar ── */
.ddos-fort-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(12, 16, 28, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}

.ddos-fort-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: ledBlink 2s ease-in-out infinite;
}

.ddos-fort-bar {
	width: 50px;
	height: 4px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.ddos-fort-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 100%;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), transparent);
	animation: activitySweep 2.5s linear infinite;
}

.ddos-fort-tag {
	width: 24px;
	height: 8px;
	border-radius: 3px;
	background: rgba(0, 255, 136, 0.2);
	border: 1px solid rgba(0, 255, 136, 0.3);
}

/* === Data Rights Page (migrated inline styles) === */
.rights-summary-grid {
	margin: 1rem 0 1.2rem;
	display: grid;
	gap: 0.65rem 0.9rem;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
@media (min-width: 900px) {
	.rights-summary-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.rights-summary-grid .right-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	padding: 0.6rem 0.7rem;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-height: 88px;
	position: relative;
	overflow: hidden;
	justify-content: center;
	align-items: center;
}
.rights-summary-grid .right-item:before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 120% 0, rgba(0, 255, 136, 0.08), transparent 60%);
	opacity: 0.9;
	pointer-events: none;
}
.rights-summary-grid .right-item strong {
	font-size: 0.7rem;
	letter-spacing: 0.55px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}
.rights-summary-grid .right-item span {
	font-size: 0.65rem;
	color: #98a4af;
	line-height: 1.25;
}
.contact-form.privacy-form .form-group {
	margin-bottom: 1rem;
}
.contact-form.privacy-form textarea {
	resize: vertical;
}
.form-message.success {
	color: #00d4aa;
}
.form-message.error {
	color: #ff5f56;
}
.small.muted {
	color: #7d8a94;
	font-size: 0.7rem;
	line-height: 1.3;
}
.form-disclaimer {
	margin-top: 0.25rem;
	margin-bottom: 1rem;
}

/* Contact form: Accept terms (matches register page form-check style) */
.contact-form .accept-terms label {
	display: grid;
	grid-template-columns: 16px 1fr;
	align-items: start;
	gap: 0.5rem;
	cursor: pointer;
}
.contact-form .accept-terms input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	min-width: 16px;
	margin-top: 2px;
	padding: 0;
	border: 2px solid rgba(0, 255, 136, 0.3);
	border-radius: 4px;
	background: transparent;
	cursor: pointer;
	transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.contact-form .accept-terms input[type="checkbox"]:checked {
	background-color: var(--quantum-primary);
	border-color: var(--quantum-primary);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%230a0a0f' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.contact-form .accept-terms input[type="checkbox"]:focus {
	box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.15);
	outline: none;
}
.contact-form .accept-terms .text-muted {
	color: var(--text-secondary);
	font-size: 0.8rem;
	line-height: 1.4;
}
.contact-form .accept-terms .text-muted a {
	color: var(--quantum-primary);
	font-size: 0.8rem;
	text-decoration: none;
}
.contact-form .accept-terms .text-muted a:hover {
	text-decoration: underline;
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOutRight {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(100%);
		opacity: 0;
	}
}

.notification-content {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}

.notification-icon {
	font-size: 1.2rem;
}

.gift-info.included {
	color: var(--quantum-success);
}

.gift-info.additional {
	color: var(--quantum-warning);
}

.quantum-slider {
	width: 100%;
	height: 8px;
	border-radius: 4px;
	background: var(--bg-tertiary);
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: var(--transition-fast);
}

.quantum-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--gradient-primary);
	cursor: pointer;
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
	transition: var(--transition-fast);
}

.quantum-slider::-webkit-slider-thumb:hover {
	transform: scale(1.2);
	box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}

.quantum-slider::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--gradient-primary);
	cursor: pointer;
	border: none;
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
	transition: var(--transition-fast);
}

.quantum-slider::-moz-range-thumb:hover {
	transform: scale(1.2);
	box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}

.loading-state {
	text-align: center;
	padding: var(--spacing-2xl);
}

.quantum-loader {
	width: 60px;
	height: 60px;
	border: 4px solid var(--quantum-primary);
	border-top: 4px solid transparent;
	border-radius: 50%;
	animation: quantumSpin 1s linear infinite;
	margin: 0 auto var(--spacing-md);
}

.error-state {
	text-align: center;
	padding: var(--spacing-2xl);
	color: var(--quantum-error);
}

.error-icon {
	font-size: 3rem;
	margin-bottom: var(--spacing-md);
}

.calculator-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	position: relative;
}

.calculator-section::before,
.calculator-section::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.3;
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}
.calculator-section::before { top: 0; }
.calculator-section::after { bottom: 0; animation-delay: -4s; }

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

.calculator-header {
	text-align: center;
	margin-bottom: var(--spacing-2xl);
}

.calculator-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: var(--spacing-2xl);
	align-items: start;
}

.calculator-form {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
}

.config-group {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	transition: var(--transition-fast);
	backdrop-filter: blur(20px);
}

.config-group:hover {
	border-color: var(--quantum-primary);
	transform: translateY(-2px);
}

.config-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--spacing-md);
}

.config-icon {
	width: 40px;
	height: 40px;
	color: var(--quantum-primary);
	margin-right: var(--spacing-sm);
}

.config-icon svg {
	width: 100%;
	height: 100%;
}

.config-info {
	flex: 1;
}

.config-info h3 {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	margin-bottom: var(--spacing-xs);
}

.config-value {
	color: var(--quantum-primary);
	font-weight: 600;
}

.config-price {
	text-align: right;
}

.price {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--quantum-primary);
}

.slider-container {
	margin: var(--spacing-md) 0;
}

.slider-labels {
	display: flex;
	justify-content: space-between;
	margin-top: var(--spacing-xs);
	color: var(--text-muted);
	font-size: 0.875rem;
}

.gift-info {
	color: var(--text-secondary);
	font-size: 0.875rem;
	margin-top: var(--spacing-xs);
}

.summary-card {
	background: var(--bg-card);
	border: var(--border-quantum);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	position: sticky;
	top: 100px;
}

.summary-card h3 {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	margin-bottom: var(--spacing-md);
	text-align: center;
}

.summary-details {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
	margin-bottom: var(--spacing-lg);
}

.summary-item {
	display: flex;
	justify-content: space-between;
	padding: var(--spacing-xs) 0;
	border-bottom: var(--border-glass);
}

.summary-item:last-child {
	border-bottom: none;
}

.total-price {
	border-top: var(--border-quantum);
	padding-top: var(--spacing-md);
	margin-bottom: var(--spacing-lg);
}

.breakdown-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--spacing-sm);
}

.price-value {
	font-family: var(--font-primary);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--quantum-primary);
}

.currency-note {
	text-align: center;
	color: var(--text-muted);
	font-size: 0.875rem;
}

.summary-promo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.85rem 1rem;
	margin-bottom: var(--spacing-md);
	background:
		radial-gradient(ellipse at 30% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 70%),
		radial-gradient(ellipse at 70% 50%, rgba(0, 153, 255, 0.08) 0%, transparent 70%),
		linear-gradient(135deg, rgba(0, 255, 136, 0.04), rgba(0, 153, 255, 0.03));
	border: 1px solid rgba(0, 255, 136, 0.2);
	border-radius: var(--radius-md, 8px);
	animation: summaryPromoGlow 3s ease-in-out infinite;
}

@keyframes summaryPromoGlow {
	0%, 100% { box-shadow: 0 0 8px rgba(0, 255, 136, 0.08); border-color: rgba(0, 255, 136, 0.2); }
	50% { box-shadow: 0 0 16px rgba(0, 255, 136, 0.15); border-color: rgba(0, 255, 136, 0.35); }
}

.summary-promo__zero {
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, var(--quantum-primary, #00ff88), var(--quantum-secondary, #0099ff));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	flex-shrink: 0;
}

.summary-promo__text {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	background: linear-gradient(135deg, var(--quantum-primary, #00ff88), rgba(255, 255, 255, 0.85));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.summary-promo--exceeded {
	animation: none;
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	box-shadow: none;
}

.summary-promo--exceeded .summary-promo__text {
	font-weight: 500;
	font-size: 0.78rem;
	background: none;
	-webkit-text-fill-color: var(--text-secondary, rgba(255, 255, 255, 0.6));
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	justify-content: center;
}

.summary-promo__limit {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	padding: 0.15rem 0.5rem;
	white-space: nowrap;
}

@media (max-width: 480px) {
	.summary-promo--exceeded .summary-promo__text {
		flex-direction: column;
		align-items: center;
	}
}

.summary-card .cta-actions {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
}

/* ===== VPS Calculator Wizard ===== */
.calc-wizard {
	position: relative;
	max-width: 780px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(0, 255, 136, 0.1);
	border-radius: 20px;
	overflow: hidden;
	backdrop-filter: blur(30px);
	box-shadow: 0 0 60px rgba(0, 255, 136, 0.03), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.calc-wizard__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.calc-wizard__grid {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 28px 28px;
	opacity: 0.5;
}

.calc-wizard__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: wizOrbFloat 12s ease-in-out infinite;
}

.calc-wizard__orb--1 {
	width: 250px;
	height: 250px;
	background: rgba(0, 255, 136, 0.06);
	top: -60px;
	right: -40px;
}

.calc-wizard__orb--2 {
	width: 200px;
	height: 200px;
	background: rgba(0, 153, 255, 0.05);
	bottom: -40px;
	left: -40px;
	animation-delay: -6s;
}

@keyframes wizOrbFloat {
	0%, 100% { opacity: 0.4; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(1.15); }
}

/* Promo ribbon */
.calc-wizard__ribbon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.6rem 1rem;
	background: linear-gradient(90deg, rgba(0, 255, 136, 0.08), rgba(0, 153, 255, 0.06), rgba(0, 255, 136, 0.08));
	border-bottom: 1px solid rgba(0, 255, 136, 0.1);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--quantum-primary);
}

.calc-wizard__ribbon-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 8px var(--quantum-primary);
	animation: wizDotPulse 2s ease-in-out infinite;
}

@keyframes wizDotPulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--quantum-primary); }
	50% { opacity: 0.5; box-shadow: 0 0 4px var(--quantum-primary); }
}

/* Header */
.calc-wizard__header {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: var(--spacing-xl) var(--spacing-2xl) 0;
}

.calc-wizard__header .section-description {
	max-width: 520px;
	margin: 0 auto;
}

/* Step indicators */
.calc-wizard__steps {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--spacing-lg) var(--spacing-xl);
	gap: 0;
}

.calc-wizard__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem 1rem;
	transition: all 0.3s ease;
}

.calc-wizard__step-num {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.85rem;
	border: 2px solid rgba(255, 255, 255, 0.12);
	color: var(--text-muted);
	background: rgba(255, 255, 255, 0.03);
	transition: all 0.35s ease;
}

.calc-wizard__step.active .calc-wizard__step-num {
	background: var(--quantum-primary);
	border-color: var(--quantum-primary);
	color: #0a0a0f;
	box-shadow: 0 0 20px rgba(0, 255, 136, 0.3), 0 0 40px rgba(0, 255, 136, 0.1);
}

.calc-wizard__step.completed .calc-wizard__step-num {
	background: rgba(0, 255, 136, 0.15);
	border-color: var(--quantum-primary);
	color: var(--quantum-primary);
}

.calc-wizard__step-label {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	transition: color 0.3s ease;
}

.calc-wizard__step.active .calc-wizard__step-label {
	color: var(--quantum-primary);
}

.calc-wizard__step.completed .calc-wizard__step-label {
	color: rgba(0, 255, 136, 0.7);
}

.calc-wizard__step-line {
	flex: 1;
	max-width: 100px;
	height: 2px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 1px;
	transition: background 0.4s ease;
	position: relative;
	overflow: hidden;
}

.calc-wizard__step-line.completed {
	background: linear-gradient(90deg, var(--quantum-primary), var(--quantum-secondary));
}

/* Loading */
.calc-wizard__loading {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: var(--spacing-2xl);
	gap: var(--spacing-md);
	color: var(--text-secondary);
}

.calc-wizard__loading .quantum-loader {
	width: 48px;
	height: 48px;
	border: 3px solid rgba(0, 255, 136, 0.15);
	border-top-color: var(--quantum-primary);
	border-radius: 50%;
	animation: quantumSpin 0.8s linear infinite;
}

/* Wizard body */
.calc-wizard__body {
	position: relative;
	z-index: 1;
	padding: 0 var(--spacing-xl) var(--spacing-md);
}

.calc-wizard__panel {
	display: none;
}

.calc-wizard__panel.active {
	display: block;
	animation: wizPanelIn 0.4s ease forwards;
}

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

/* Panel header (step 1) */
.calc-wizard__panel-header {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-lg);
	padding: var(--spacing-md);
	background: rgba(0, 255, 136, 0.03);
	border: 1px solid rgba(0, 255, 136, 0.08);
	border-radius: var(--radius-md);
}

.calc-wizard__panel-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	color: var(--quantum-primary);
	filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.3));
}

.calc-wizard__panel-icon svg {
	width: 100%;
	height: 100%;
}

.calc-wizard__panel-header h3 {
	font-family: var(--font-primary);
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
	color: var(--text-primary);
}

.calc-wizard__panel-header p {
	font-size: 0.88rem;
	color: var(--text-secondary);
	margin: 0;
}

/* Step 2: config groups inside wizard */
.calc-wizard__panel .config-group {
	margin-bottom: var(--spacing-md);
}

.calc-wizard__panel .config-group:last-child {
	margin-bottom: 0;
}

/* Step 3: Summary */
.calc-wizard__summary {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
}

.calc-wizard__summary-title {
	font-family: var(--font-primary);
	font-size: 1.1rem;
	text-align: center;
	color: var(--text-primary);
	margin: 0;
}

.calc-wizard__summary .summary-details {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-md);
	padding: var(--spacing-md);
	margin-bottom: 0;
}

.calc-wizard__summary .summary-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.6rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	font-size: 0.92rem;
}

.calc-wizard__summary .summary-item > span:first-child {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.calc-wizard__summary .summary-item svg {
	color: var(--quantum-primary);
	opacity: 0.7;
	flex-shrink: 0;
}

.calc-wizard__summary .summary-item:last-child {
	border-bottom: none;
}

.calc-wizard__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--spacing-md);
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.06), rgba(0, 153, 255, 0.04));
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: var(--radius-md);
}

.calc-wizard__total-price {
	font-family: var(--font-primary);
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--quantum-primary);
	text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.calc-wizard__currency {
	text-align: center;
	font-size: 0.78rem;
	color: var(--text-muted);
}

/* CTA buttons */
.calc-wizard__no-commit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	font-size: 0.8rem;
	color: var(--quantum-primary);
	opacity: 0.75;
}

.calc-wizard__cta {
	display: flex;
	gap: var(--spacing-sm);
	margin-top: var(--spacing-xs);
}

.calc-wizard__cta .btn {
	flex: 1;
	text-align: center;
	justify-content: center;
}

/* Enterprise notice inside wizard */
.calc-wizard__enterprise {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	padding: var(--spacing-sm) var(--spacing-md);
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-md);
	transition: border-color 0.3s ease;
}

.calc-wizard__enterprise:hover {
	border-color: rgba(0, 255, 136, 0.15);
}

.calc-wizard__enterprise-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	color: var(--quantum-primary);
	opacity: 0.7;
}

.calc-wizard__enterprise-icon svg {
	width: 100%;
	height: 100%;
}

.calc-wizard__enterprise-text {
	flex: 1;
	min-width: 0;
}

.calc-wizard__enterprise-text strong {
	display: block;
	font-size: 0.85rem;
	color: var(--text-primary);
	margin-bottom: 0.15rem;
}

.calc-wizard__enterprise-text span {
	font-size: 0.78rem;
	color: var(--text-secondary);
}

.calc-wizard__enterprise-btn {
	flex-shrink: 0;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--quantum-primary);
	text-decoration: none;
	padding: 0.35rem 0.8rem;
	border: 1px solid rgba(0, 255, 136, 0.2);
	border-radius: 20px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.calc-wizard__enterprise-btn:hover {
	background: rgba(0, 255, 136, 0.08);
	border-color: rgba(0, 255, 136, 0.4);
	color: var(--quantum-primary);
	text-decoration: none;
}

/* Wizard footer */
.calc-wizard__footer {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--spacing-md) var(--spacing-xl);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(0, 0, 0, 0.2);
}

.calc-wizard__live-price {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.calc-wizard__live-label {
	font-size: 0.82rem;
	color: var(--text-secondary);
}

.calc-wizard__live-value {
	font-family: var(--font-primary);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--quantum-primary);
	text-shadow: 0 0 12px rgba(0, 255, 136, 0.2);
}

.calc-wizard__nav {
	display: flex;
	gap: var(--spacing-sm);
	margin-inline-start: auto;
}

.calc-wizard__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.6rem 1.4rem;
	border: none;
	border-radius: 10px;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
}

.calc-wizard__btn--prev {
	background: rgba(255, 255, 255, 0.06);
	color: var(--text-secondary);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-wizard__btn--prev:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-primary);
}

.calc-wizard__btn--next {
	background: var(--quantum-primary);
	color: #0a0a0f;
	box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.calc-wizard__btn--next:hover {
	box-shadow: 0 0 25px rgba(0, 255, 136, 0.35);
	transform: translateY(-1px);
}

/* RTL support */
[dir="rtl"] .calc-wizard__btn--next svg,
[dir="rtl"] .calc-wizard__btn--prev svg {
	transform: scaleX(-1);
}

/* Country chips inside wizard - larger, more visual */
.calc-wizard .country-chips {
	gap: 0.6rem;
}

.calc-wizard .country-chip {
	padding: 0.6rem 1.2rem;
	font-size: 0.92rem;
	border-radius: 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.calc-wizard {
		border-radius: 16px;
		margin: 0 -0.5rem;
	}

	.calc-wizard__header {
		padding: var(--spacing-lg) var(--spacing-md) 0;
	}

	.calc-wizard__header .section-title {
		font-size: 1.4rem;
	}

	.calc-wizard__steps {
		padding: var(--spacing-md);
	}

	.calc-wizard__step {
		padding: 0.3rem 0.5rem;
	}

	.calc-wizard__step-num {
		width: 32px;
		height: 32px;
		font-size: 0.75rem;
	}

	.calc-wizard__step-label {
		font-size: 0.6rem;
	}

	.calc-wizard__step-line {
		max-width: 50px;
	}

	.calc-wizard__body {
		padding: 0 var(--spacing-md) var(--spacing-sm);
	}

	.calc-wizard__panel-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.calc-wizard__panel-icon {
		width: 36px;
		height: 36px;
	}

	.calc-wizard__footer {
		flex-direction: column;
		gap: var(--spacing-sm);
		padding: var(--spacing-md);
	}

	.calc-wizard__live-price {
		width: 100%;
		justify-content: center;
	}

	.calc-wizard__nav {
		width: 100%;
		margin-inline-start: 0;
	}

	.calc-wizard__btn {
		flex: 1;
		justify-content: center;
	}

	.calc-wizard__cta {
		flex-direction: column;
	}

	.calc-wizard__enterprise {
		flex-direction: column;
		text-align: center;
	}

	.calc-wizard__total-price {
		font-size: 1.3rem;
	}

	.config-header {
		flex-direction: row;
	}
}

@media (max-width: 480px) {
	.calc-wizard__step-label {
		display: none;
	}

	.calc-wizard__step-num {
		width: 36px;
		height: 36px;
		font-size: 0.8rem;
	}

	.calc-wizard__step-line {
		max-width: 40px;
	}

	.calc-wizard__ribbon {
		font-size: 0.68rem;
		padding: 0.5rem;
	}
}

.servers-hero {
	min-height: 70vh;
}

.vps-features {
	padding: var(--spacing-2xl) 0;
	position: relative;
}

#fullFeatureList {
	display: none;
}

#fullFeatureList.is-open {
	display: grid;
}

@media (max-width: 768px) {
	#fullFeatureList.is-open {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	#fullFeatureList.is-open .feature-item {
		margin-bottom: var(--spacing-lg);
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	#fullFeatureList.is-open .feature-item:last-child {
		margin-bottom: 0;
	}
}

.vps-features::before,
.vps-features::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.3;
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}
.vps-features::before { top: 0; }
.vps-features::after { bottom: 0; animation-delay: -4s; }

.server-infrastructure {
	background: var(--bg-secondary);
	padding: var(--spacing-2xl) 0;
	position: relative;
}

.server-infrastructure::before,
.server-infrastructure::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.3;
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}
.server-infrastructure::before { top: 0; }
.server-infrastructure::after { bottom: 0; animation-delay: -4s; }

.infrastructure-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-lg);
}

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

.infrastructure-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	text-align: center;
	transition: var(--transition-fast);
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}

.infrastructure-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.3;
	transition: opacity var(--transition-normal);
}

.infrastructure-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 0 25px rgba(0, 255, 136, 0.06), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.infrastructure-card:hover::before {
	opacity: 0.9;
}

.card-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto var(--spacing-md);
	color: var(--quantum-primary);
}

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

.infrastructure-card h3 {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	margin-bottom: var(--spacing-sm);
	color: var(--text-primary);
}

.infrastructure-card p {
	color: var(--text-secondary);
}

@media (max-width: 768px) {
	.calculator-content {
		grid-template-columns: 1fr;
	}

	.summary-card {
		position: static;
	}

	.config-header {
		flex-direction: column;
		text-align: center;
		gap: var(--spacing-sm);
	}

	.summary-card .cta-actions {
		flex-direction: row;
	}
}

/* Screen-reader only utility */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* New language switch dropdown */
.lang-switch {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: auto;
}

.lang-btn {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	line-height: 1;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: inherit;
	padding: 0.35rem 0.5rem;
	border-radius: 10px;
	cursor: pointer;
}

.lang-btn:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
}

.lang-current {
	font-size: 0.75rem;
	font-weight: 700;
	opacity: 0.9;
}

.lang-menu {
	position: absolute;
	top: calc(100% + 0.35rem);
	right: 0;
	min-width: 160px;
	background: #11161b;
	border: 1px solid #2a333b;
	border-radius: 12px;
	box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.6);
	padding: 0.35rem;
	z-index: 1000;
}

.lang-item {
	display: block;
	padding: 0.5rem 0.65rem;
	border-radius: 8px;
	color: #e6edf3;
	text-decoration: none;
	font-size: 0.86rem;
}

.lang-item:hover {
	background: #1a2127;
}

.lang-item.is-active {
	background: linear-gradient(120deg, #00f5a0, #00c2d0 55%, #0091ff);
	color: #081015;
}

/* Mobile tweaks */
@media (max-width: 720px) {
	.lang-current {
		display: none;
	}

	.lang-btn {
		padding: 0.35rem;
	}

	/* Ensure spacing between language button and adjacent toggle on mobile */
	.lang-switch {
		margin-inline-end: 0.5rem;
		margin-inline-start: 0;
	}
}

/* Basic RTL tweaks */
html[dir="rtl"] .nav-container {
	direction: rtl;
}

html[dir="rtl"] .nav-menu {
	direction: rtl;
}
@media (max-width: 1024px) {
	html[dir="rtl"] .nav-menu {
		left: auto;
		right: -100%;
		transition: right 0.3s ease;
	}
	html[dir="rtl"] .nav-menu.active {
		right: 0;
	}
}

html[dir="rtl"] .nav-mega-col .nav-dropdown-item {
	padding-left: var(--spacing-md);
	padding-right: var(--spacing-md);
}

html[dir="rtl"] .lang-menu {
	left: 0;
	right: auto;
}

/* RTL FAQ arrow spacing: flip margin to avoid extra gap before question text */
html[dir="rtl"] .faq-toggle {
	margin-left: 0;
	margin-right: var(--spacing-md);
}

/* If FAQ uses row-reverse somewhere in future, ensure arrow still aligns */
html[dir="rtl"] .faq-question {
	direction: rtl;
}

/* ── About Page ── */
.about-story {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.about-mission {
	padding: var(--spacing-2xl) 0;
}

.about-story::before,
.about-story::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--quantum-primary) 30%, var(--quantum-secondary) 70%, transparent 100%);
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}

.about-story::before {
	top: 0;
}

.about-story::after {
	bottom: 0;
	animation-delay: -4s;
}

.about-text {
	text-align: center;
}

.about-text p {
	font-size: 1.125rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: var(--spacing-md);
}

.about-text p:last-child {
	margin-bottom: 0;
}

.about-values {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.about-values::before,
.about-values::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--quantum-primary) 30%, var(--quantum-secondary) 70%, transparent 100%);
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}

.about-values::before {
	top: 0;
}

.about-values::after {
	bottom: 0;
	animation-delay: -4s;
}

.about-values .methods-grid {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ── About Stats Grid ── */
.about-stats {
	padding: var(--spacing-2xl) 0;
	position: relative;
	overflow: hidden;
}

.about-stats::before,
.about-stats::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--quantum-primary) 30%, var(--quantum-secondary) 70%, transparent 100%);
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}

.about-stats::before {
	top: 0;
}

.about-stats::after {
	bottom: 0;
	animation-delay: -4s;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-lg);
}

.stat-item {
	text-align: center;
	padding: var(--spacing-lg) var(--spacing-md);
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(20px);
	transition: background var(--transition-normal), border-color var(--transition-normal),
		box-shadow var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.4;
	transition: opacity var(--transition-normal);
}

.stat-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
	animation: accentSweep 4s linear infinite;
}

.stat-item:nth-child(2)::after { animation-delay: -1s; }
.stat-item:nth-child(3)::after { animation-delay: -2s; }
.stat-item:nth-child(4)::after { animation-delay: -3s; }

.stat-item:hover {
	background: rgba(0, 255, 136, 0.03);
	border-color: rgba(0, 255, 136, 0.12);
	box-shadow: 0 0 25px rgba(0, 255, 136, 0.06), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-item:hover::before {
	opacity: 0.9;
}

/* Stat card blink effect — 4 ultra-fast flashes then pause */
@keyframes statBlink {
	0%    { background: rgba(0, 255, 136, 0.08); border-color: rgba(0, 255, 136, 0.5); box-shadow: 0 0 20px rgba(0, 255, 136, 0.15), inset 0 0 15px rgba(0, 255, 136, 0.05); }
	2.5%  { background: rgba(255, 255, 255, 0.02); border-color: rgba(255, 255, 255, 0.06); box-shadow: none; }
	5%    { background: rgba(0, 255, 136, 0.08); border-color: rgba(0, 255, 136, 0.5); box-shadow: 0 0 20px rgba(0, 255, 136, 0.15), inset 0 0 15px rgba(0, 255, 136, 0.05); }
	7.5%  { background: rgba(255, 255, 255, 0.02); border-color: rgba(255, 255, 255, 0.06); box-shadow: none; }
	10%   { background: rgba(0, 255, 136, 0.08); border-color: rgba(0, 255, 136, 0.5); box-shadow: 0 0 20px rgba(0, 255, 136, 0.15), inset 0 0 15px rgba(0, 255, 136, 0.05); }
	12.5% { background: rgba(255, 255, 255, 0.02); border-color: rgba(255, 255, 255, 0.06); box-shadow: none; }
	15%   { background: rgba(0, 255, 136, 0.08); border-color: rgba(0, 255, 136, 0.5); box-shadow: 0 0 20px rgba(0, 255, 136, 0.15), inset 0 0 15px rgba(0, 255, 136, 0.05); }
	17.5% { background: rgba(255, 255, 255, 0.02); border-color: rgba(255, 255, 255, 0.06); box-shadow: none; }
	100%  { background: rgba(255, 255, 255, 0.02); border-color: rgba(255, 255, 255, 0.06); box-shadow: none; }
}

.stat-item:nth-child(1) { animation: statBlink 6s ease-in-out infinite; }
.stat-item:nth-child(2) { animation: statBlink 6s 1.5s ease-in-out infinite; }
.stat-item:nth-child(3) { animation: statBlink 6s 3s ease-in-out infinite; }
.stat-item:nth-child(4) { animation: statBlink 6s 4.5s ease-in-out infinite; }

.stat-value {
	font-size: 2rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--quantum-primary), var(--quantum-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
	margin-bottom: var(--spacing-xs);
}

.stat-label {
	font-size: 0.875rem;
	color: var(--text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* ── About Approach ── */
.about-approach {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.about-approach::before,
.about-approach::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--quantum-primary) 30%, var(--quantum-secondary) 70%, transparent 100%);
	background-size: 200% 100%;
	animation: gradientLineSweep 8s ease-in-out infinite;
}

.about-approach::before {
	top: 0;
}

.about-approach::after {
	bottom: 0;
	animation-delay: -4s;
}

.approach-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-lg);
}

.approach-card {
	position: relative;
	padding: var(--spacing-xl) var(--spacing-lg);
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(20px);
	text-align: center;
	transition: background var(--transition-normal), border-color var(--transition-normal),
		box-shadow var(--transition-normal);
	overflow: hidden;
}

.approach-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.4;
	transition: opacity var(--transition-normal);
}

.approach-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
	animation: accentSweep 4s linear infinite;
}

.approach-card:nth-child(2)::after { animation-delay: -1.3s; }
.approach-card:nth-child(3)::after { animation-delay: -2.6s; }

.approach-card:hover {
	background: rgba(0, 255, 136, 0.03);
	border-color: rgba(0, 255, 136, 0.12);
	box-shadow: 0 0 25px rgba(0, 255, 136, 0.06), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.approach-card:hover::before {
	opacity: 0.9;
}

.approach-card:hover .approach-number {
	opacity: 0.8;
}

.approach-card:hover .approach-icon {
	background: rgba(0, 255, 136, 0.1);
	border-color: rgba(0, 255, 136, 0.25);
	box-shadow: 0 0 12px rgba(0, 255, 136, 0.15);
}

.approach-number {
	position: absolute;
	top: var(--spacing-sm);
	right: var(--spacing-sm);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--quantum-primary);
	opacity: 0.4;
	letter-spacing: 0.1em;
}

[dir="rtl"] .approach-number {
	right: auto;
	left: var(--spacing-sm);
}

[dir="rtl"] .arrow-dir {
	display: inline-block;
	transform: scaleX(-1);
}

.approach-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto var(--spacing-md);
	color: var(--quantum-primary);
	background: rgba(0, 255, 136, 0.06);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition-normal), border-color var(--transition-normal),
		box-shadow var(--transition-normal);
	animation: iconBreath 4s ease-in-out infinite;
}

.approach-card:nth-child(2) .approach-icon { animation-delay: 0.6s; }
.approach-card:nth-child(3) .approach-icon { animation-delay: 1.2s; }

.approach-icon svg {
	width: 28px;
	height: 28px;
}

.approach-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: var(--spacing-sm);
}

.approach-card p {
	font-size: 0.975rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin: 0;
}

@media (max-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.approach-grid {
		grid-template-columns: 1fr;
	}
	.stat-value {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--spacing-sm);
	}
	.stat-item {
		padding: var(--spacing-md) var(--spacing-sm);
	}
	.stat-value {
		font-size: 1.25rem;
	}
}
@media (min-width: 769px) and (max-width: 1024px) {
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Blog Teaser Section ── */
.blog-teaser-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: none;
	border-bottom: none;
}

.blog-teaser-section::before,
.blog-teaser-section::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), var(--quantum-secondary), transparent);
	opacity: 0.3;
}

.blog-teaser-section::before { top: 0; }
.blog-teaser-section::after { bottom: 0; }

.blog-teaser-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-lg);
	margin-bottom: var(--spacing-lg);
}

.blog-teaser-cta {
	text-align: center;
	padding-top: var(--spacing-md);
}

/* Fallback text-only blog-teaser (no posts) */
.blog-teaser {
	padding: var(--spacing-lg) 0;
	text-align: center;
}

.blog-teaser p {
	margin: 0;
}

.text-link {
	color: var(--quantum-primary);
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 500;
	transition: var(--transition-fast);
	border-bottom: 1px solid transparent;
}

.text-link:hover {
	border-bottom-color: var(--quantum-primary);
	filter: brightness(1.2);
}

@media (max-width: 768px) {
	.blog-teaser-grid {
		grid-template-columns: 1fr;
	}
}

/* ══ Page: Legal Docs (terms, privacy, accessibility) ══ */

.doc-view {
	padding: var(--spacing-2xl) 0;
}

.doc-actions {
	margin-bottom: 1rem;
}

.pdf-wrapper {
	background: #0b0f17;
	border: var(--border-glass);
	border-radius: 12px;
	overflow: hidden;
}

.pdf-frame {
	width: 100%;
	height: calc(100svh - 220px);
	border: 0;
	display: block;
}

.dark-pdf {
	filter: invert(0.92) hue-rotate(180deg);
	background: #0b0f17;
}

.pdf-missing {
	padding: 2rem;
	text-align: center;
	color: var(--text-secondary);
}

@media (max-width: 768px) {
	.pdf-frame {
		height: 80svh;
	}
}

@supports not (height: 1svh) {
	.pdf-frame { height: calc(100vh - 220px); }
	@media (max-width: 768px) { .pdf-frame { height: 80vh; } }
}

/* ══ Page: WAF ══ */

.waf-hero-visual { display: flex; align-items: center; justify-content: center; }

.waf-gateway {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.waf-gateway-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 35% 30%, rgba(0, 255, 136, 0.09) 0%, transparent 35%),
		radial-gradient(ellipse at 65% 70%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 45%),
		radial-gradient(ellipse at 30% 60%, rgba(0, 153, 255, 0.06) 0%, transparent 35%);
	z-index: -1;
	filter: blur(30px);
	animation: wafGatewayGlow 6s ease-in-out infinite;
}
@keyframes wafGatewayGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.waf-layer {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 16px;
}

.waf-layer--3 {
	width: 280px;
	height: 280px;
	margin-top: -140px;
	margin-left: -140px;
	border: 1px dashed rgba(0, 255, 136, 0.12);
	animation: wafLayerSpin 35s linear infinite;
}
.waf-layer--2 {
	width: 200px;
	height: 200px;
	margin-top: -100px;
	margin-left: -100px;
	border: 1px dotted rgba(0, 153, 255, 0.18);
	border-radius: 12px;
	animation: wafLayerSpin 25s linear infinite reverse;
}
.waf-layer--1 {
	width: 120px;
	height: 120px;
	margin-top: -60px;
	margin-left: -60px;
	border: 1px solid rgba(0, 255, 136, 0.25);
	border-radius: 8px;
	animation: wafLayerSpin 18s linear infinite;
}

.waf-layer--3::after,
.waf-layer--2::after,
.waf-layer--1::after {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	border: 1px solid rgba(0, 255, 136, 0.06);
	animation: wafLayerFlash 4s ease-in-out infinite;
}
.waf-layer--2::after { animation-delay: -1.3s; }
.waf-layer--1::after { animation-delay: -2.6s; }

@keyframes wafLayerSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}
@keyframes wafLayerFlash {
	0%, 80%, 100% { opacity: 0; }
	85% { opacity: 1; }
	90% { opacity: 0.3; }
}

.waf-scan {
	position: absolute;
	z-index: 2;
}
.waf-scan--h {
	top: 50%;
	left: 10px;
	right: 10px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 153, 255, 0.4), transparent);
	animation: wafScanH 4s ease-in-out infinite;
}
.waf-scan--v {
	left: 50%;
	top: 10px;
	bottom: 10px;
	width: 1px;
	background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.4), transparent);
	animation: wafScanV 5s ease-in-out infinite -1.5s;
}
@keyframes wafScanH {
	0%, 100% { transform: translateY(-40px); opacity: 0.2; }
	50% { transform: translateY(40px); opacity: 0.7; }
}
@keyframes wafScanV {
	0%, 100% { transform: translateX(-30px); opacity: 0.2; }
	50% { transform: translateX(30px); opacity: 0.6; }
}

.waf-engine {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.2);
	border-radius: 12px;
	backdrop-filter: blur(6px);
	z-index: 6;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
}
.waf-engine--rules { top: 20px; left: 50%; transform: translateX(-50%); }
.waf-engine--owasp { bottom: 40px; left: 50%; transform: translateX(-50%); }
.waf-engine-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: wafEngineBlink 2s ease-in-out infinite;
}
.waf-engine--owasp .waf-engine-dot { background: #0099ff; box-shadow: 0 0 6px #0099ff, 0 0 14px rgba(0, 153, 255, 0.3); animation-delay: -1s; }
@keyframes wafEngineBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

.waf-core-hex {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 44px;
	height: 44px;
	margin: -22px;
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 153, 255, 0.2));
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	z-index: 5;
	animation: wafCoreBreath 3s ease-in-out infinite;
}
.waf-core-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 22px;
	margin: -11px;
	background: rgba(0, 255, 136, 0.4);
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	z-index: 6;
	animation: wafCoreBreath 3s ease-in-out infinite 0.3s;
}
.waf-core-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 70px;
	margin: -35px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
	z-index: 4;
	animation: wafCorePulse 2.5s ease-in-out infinite;
}
@keyframes wafCoreBreath {
	0%, 100% { transform: scale(1); opacity: 0.8; filter: brightness(1); }
	50% { transform: scale(1.08); opacity: 1; filter: brightness(1.3); }
}
@keyframes wafCorePulse {
	0%, 100% { transform: scale(1); opacity: 0.4; }
	50% { transform: scale(1.5); opacity: 0.15; }
}

.waf-pkt {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	z-index: 2;
}
.waf-pkt::after {
	content: '';
	position: absolute;
	width: 12px;
	height: 2px;
	border-radius: 1px;
	top: 1px;
}

.waf-pkt--1, .waf-pkt--3, .waf-pkt--5, .waf-pkt--7 {
	background: #0099ff;
	box-shadow: 0 0 6px rgba(0, 153, 255, 0.7), 0 0 12px rgba(0, 153, 255, 0.3);
}
.waf-pkt--1::after, .waf-pkt--3::after, .waf-pkt--5::after, .waf-pkt--7::after {
	background: linear-gradient(90deg, transparent, rgba(0, 153, 255, 0.4));
}
.waf-pkt--2, .waf-pkt--4, .waf-pkt--6, .waf-pkt--8 {
	background: #ff6b35;
	box-shadow: 0 0 6px rgba(255, 107, 53, 0.7), 0 0 12px rgba(255, 107, 53, 0.3);
}
.waf-pkt--2::after, .waf-pkt--4::after, .waf-pkt--6::after, .waf-pkt--8::after {
	background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.4));
}

.waf-pkt--1  { animation: wafPktTop 2.4s linear infinite; }
.waf-pkt--2  { animation: wafPktTR 2.7s linear infinite -0.4s; }
.waf-pkt--3  { animation: wafPktRight 2.2s linear infinite -0.8s; }
.waf-pkt--4  { animation: wafPktBR 2.6s linear infinite -1.2s; }
.waf-pkt--5  { animation: wafPktBottom 2.3s linear infinite -0.3s; }
.waf-pkt--6  { animation: wafPktBL 2.8s linear infinite -0.9s; }
.waf-pkt--7  { animation: wafPktLeft 2.1s linear infinite -1.5s; }
.waf-pkt--8  { animation: wafPktTL 2.5s linear infinite -0.6s; }

.waf-pkt--1::after { transform: rotate(90deg); transform-origin: right center; }
.waf-pkt--2::after { transform: rotate(135deg); transform-origin: right center; }
.waf-pkt--3::after { transform: rotate(180deg); transform-origin: right center; }
.waf-pkt--4::after { transform: rotate(-135deg); transform-origin: right center; }
.waf-pkt--5::after { transform: rotate(-90deg); transform-origin: right center; }
.waf-pkt--6::after { transform: rotate(-45deg); transform-origin: right center; }
.waf-pkt--7::after { transform: rotate(0deg); }
.waf-pkt--8::after { transform: rotate(45deg); transform-origin: right center; }

@keyframes wafPktTop {
	0%   { top: -8px; left: 48%; opacity: 0; }
	8%   { opacity: 1; }
	70%  { top: 31%; left: 49%; opacity: 0.9; }
	88%  { top: 36%; left: 49.5%; opacity: 0.2; }
	100% { top: 38%; left: 50%; opacity: 0; }
}
@keyframes wafPktTR {
	0%   { top: -4%; right: -4%; opacity: 0; }
	8%   { opacity: 1; }
	70%  { top: 32%; right: 32%; opacity: 0.9; }
	88%  { top: 37%; right: 37%; opacity: 0.2; }
	100% { top: 39%; right: 39%; opacity: 0; }
}
@keyframes wafPktRight {
	0%   { top: 48%; right: -8px; opacity: 0; }
	8%   { opacity: 1; }
	70%  { top: 49%; right: 31%; opacity: 0.9; }
	88%  { top: 49.5%; right: 36%; opacity: 0.2; }
	100% { top: 50%; right: 38%; opacity: 0; }
}
@keyframes wafPktBR {
	0%   { bottom: -4%; right: -4%; opacity: 0; }
	8%   { opacity: 1; }
	70%  { bottom: 32%; right: 32%; opacity: 0.9; }
	88%  { bottom: 37%; right: 37%; opacity: 0.2; }
	100% { bottom: 39%; right: 39%; opacity: 0; }
}
@keyframes wafPktBottom {
	0%   { bottom: -8px; left: 48%; opacity: 0; }
	8%   { opacity: 1; }
	70%  { bottom: 31%; left: 49%; opacity: 0.9; }
	88%  { bottom: 36%; left: 49.5%; opacity: 0.2; }
	100% { bottom: 38%; left: 50%; opacity: 0; }
}
@keyframes wafPktBL {
	0%   { bottom: -4%; left: -4%; opacity: 0; }
	8%   { opacity: 1; }
	70%  { bottom: 32%; left: 32%; opacity: 0.9; }
	88%  { bottom: 37%; left: 37%; opacity: 0.2; }
	100% { bottom: 39%; left: 39%; opacity: 0; }
}
@keyframes wafPktLeft {
	0%   { top: 48%; left: -8px; opacity: 0; }
	8%   { opacity: 1; }
	70%  { top: 49%; left: 31%; opacity: 0.9; }
	88%  { top: 49.5%; left: 36%; opacity: 0.2; }
	100% { top: 50%; left: 38%; opacity: 0; }
}
@keyframes wafPktTL {
	0%   { top: -4%; left: -4%; opacity: 0; }
	8%   { opacity: 1; }
	70%  { top: 32%; left: 32%; opacity: 0.9; }
	88%  { top: 37%; left: 37%; opacity: 0.2; }
	100% { top: 39%; left: 39%; opacity: 0; }
}

.waf-block {
	position: absolute;
	width: 14px;
	height: 14px;
	margin: -7px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 51, 102, 0.6) 0%, rgba(255, 51, 102, 0.2) 50%, transparent 70%);
	z-index: 3;
	opacity: 0;
}
.waf-block--1 { top: 5%; left: 50%; animation: wafBlockFlash 2.7s ease-out infinite; }
.waf-block--2 { top: 50%; right: 3%; animation: wafBlockFlash 2.6s ease-out infinite -0.8s; }
.waf-block--3 { bottom: 8%; left: 22%; animation: wafBlockFlash 2.8s ease-out infinite -1.4s; }
.waf-block--4 { top: 28%; left: 5%; animation: wafBlockFlash 2.5s ease-out infinite -0.4s; }

@keyframes wafBlockFlash {
	0%, 60% { opacity: 0; transform: scale(0.3); }
	65% { opacity: 1; transform: scale(1.5); }
	75% { opacity: 0.6; transform: scale(1); }
	100% { opacity: 0; transform: scale(0.5); }
}

.waf-pass {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 12px rgba(0, 255, 136, 0.4);
	z-index: 3;
	opacity: 0;
}
.waf-pass--1 { animation: wafPassRight 3s ease-out infinite -0.5s; }
.waf-pass--2 { animation: wafPassBR 3.5s ease-out infinite -1.2s; }
.waf-pass--3 { animation: wafPassBL 3.2s ease-out infinite -2s; }

@keyframes wafPassRight {
	0%, 30% { top: 50%; left: 52%; opacity: 0; }
	40% { opacity: 0.8; }
	80% { top: 48%; left: 85%; opacity: 0.6; }
	100% { top: 47%; left: 105%; opacity: 0; }
}
@keyframes wafPassBR {
	0%, 30% { top: 52%; left: 52%; opacity: 0; }
	40% { opacity: 0.8; }
	80% { top: 78%; left: 80%; opacity: 0.6; }
	100% { top: 95%; left: 95%; opacity: 0; }
}
@keyframes wafPassBL {
	0%, 30% { top: 52%; left: 48%; opacity: 0; }
	40% { opacity: 0.8; }
	80% { top: 80%; left: 20%; opacity: 0.6; }
	100% { top: 95%; left: 5%; opacity: 0; }
}

.waf-gw-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}
.waf-gw-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: wafLedPulse 2s ease-in-out infinite;
}
.waf-gw-bar {
	width: 40px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}
.waf-gw-bar::after {
	content: '';
	display: block;
	width: 80%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	animation: wafBarFill 3s ease-in-out infinite;
}
.waf-gw-tag {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 255, 136, 0.7);
}
.waf-gw-tag::after { content: 'ACTIVE'; }

@keyframes wafLedPulse {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}
@keyframes wafBarFill {
	0%, 100% { width: 70%; }
	50% { width: 95%; }
}

@media (max-width: 768px) {
	.waf-gateway { width: 240px; height: 240px; }
	.waf-layer--3 { width: 230px; height: 230px; margin-top: -115px; margin-left: -115px; }
	.waf-layer--2 { width: 165px; height: 165px; margin-top: -82.5px; margin-left: -82.5px; }
	.waf-layer--1 { width: 100px; height: 100px; margin-top: -50px; margin-left: -50px; }
}

/* ══ Page: Security ══ */

.sec-hero-visual { display: flex; align-items: center; justify-content: center; }

.sec-radar {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.sec-radar-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.09) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: secGlow 6s ease-in-out infinite;
}
@keyframes secGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.sec-radar-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 1px solid rgba(0, 255, 136, 0.12);
}
.sec-radar-ring--3 {
	width: 280px; height: 280px;
	margin: -140px 0 0 -140px;
	border-color: rgba(0, 255, 136, 0.1);
}
.sec-radar-ring--2 {
	width: 190px; height: 190px;
	margin: -95px 0 0 -95px;
	border-color: rgba(0, 255, 136, 0.15);
}
.sec-radar-ring--1 {
	width: 100px; height: 100px;
	margin: -50px 0 0 -50px;
	border-color: rgba(0, 255, 136, 0.22);
}

.sec-radar-line {
	position: absolute;
	z-index: 1;
}
.sec-radar-line--h {
	top: 50%;
	left: 10px;
	right: 10px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
}
.sec-radar-line--v {
	left: 50%;
	top: 10px;
	bottom: 10px;
	width: 1px;
	background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.1), transparent);
}

.sec-radar-sweep {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 140px;
	height: 140px;
	margin: -140px 0 0 0;
	transform-origin: bottom left;
	background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 255, 136, 0.25) 30deg, transparent 60deg);
	border-radius: 140px 140px 0 0;
	clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 100% 100%);
	animation: secSweep 4s linear infinite;
	z-index: 2;
}
@keyframes secSweep {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.sec-blip {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	z-index: 3;
	opacity: 0;
}
.sec-blip::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px solid;
	opacity: 0.4;
}

.sec-blip--1, .sec-blip--3, .sec-blip--5 {
	background: #00ff88;
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}
.sec-blip--1::after, .sec-blip--3::after, .sec-blip--5::after {
	border-color: #00ff88;
}

.sec-blip--2, .sec-blip--4, .sec-blip--6 {
	background: #ff3366;
	box-shadow: 0 0 8px rgba(255, 51, 102, 0.6);
}
.sec-blip--2::after, .sec-blip--4::after, .sec-blip--6::after {
	border-color: #ff3366;
}

.sec-blip--1 { top: 25%; left: 60%; animation: secBlipPulse 4s ease-out infinite 0.7s; }
.sec-blip--2 { top: 35%; left: 28%; animation: secBlipPulse 4s ease-out infinite 1.4s; }
.sec-blip--3 { top: 55%; left: 68%; animation: secBlipPulse 4s ease-out infinite 2.1s; }
.sec-blip--4 { top: 65%; left: 40%; animation: secBlipPulse 4s ease-out infinite 2.8s; }
.sec-blip--5 { top: 20%; left: 42%; animation: secBlipPulse 4s ease-out infinite 0.3s; }
.sec-blip--6 { top: 72%; left: 58%; animation: secBlipPulse 4s ease-out infinite 3.2s; }

@keyframes secBlipPulse {
	0%, 10% { opacity: 0; transform: scale(0.3); }
	15% { opacity: 1; transform: scale(1.3); }
	25% { opacity: 0.9; transform: scale(1); }
	70% { opacity: 0.4; transform: scale(1); }
	100% { opacity: 0; transform: scale(0.5); }
}

.sec-radar-core {
	position: absolute;
	top: 50%; left: 50%;
	width: 16px; height: 16px;
	margin: -8px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 12px #00ff88, 0 0 24px rgba(0, 255, 136, 0.3);
	z-index: 5;
	animation: secCoreBeat 2s ease-in-out infinite;
}
.sec-radar-core-pulse {
	position: absolute;
	top: 50%; left: 50%;
	width: 50px; height: 50px;
	margin: -25px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
	z-index: 4;
	animation: secCorePulseAnim 2.5s ease-in-out infinite;
}
@keyframes secCoreBeat {
	0%, 100% { transform: scale(1); opacity: 0.8; }
	50% { transform: scale(1.15); opacity: 1; }
}
@keyframes secCorePulseAnim {
	0%, 100% { transform: scale(1); opacity: 0.5; }
	50% { transform: scale(1.8); opacity: 0.1; }
}

.sec-radar-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}
.sec-radar-led {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: secLedPulse 2s ease-in-out infinite;
}
.sec-radar-bar {
	width: 40px; height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}
.sec-radar-bar::after {
	content: '';
	display: block;
	width: 80%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	animation: secBarFill 3s ease-in-out infinite;
}
.sec-radar-tag {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 255, 136, 0.7);
}
.sec-radar-tag::after { content: 'SCANNING'; }

@keyframes secLedPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes secBarFill { 0%, 100% { width: 60%; } 50% { width: 95%; } }

.sec-pipeline-section { padding: var(--spacing-2xl) 0; }
.sec-pipeline {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 0;
	margin-top: 48px;
	position: relative;
}
.sec-pipeline-step {
	text-align: center;
	flex: 1;
	max-width: 220px;
	min-width: 150px;
	padding: 24px 16px;
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	backdrop-filter: blur(20px);
	position: relative;
	z-index: 2;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sec-pipeline-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}
.sec-pipeline-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	color: #00ff88;
}
.sec-pipeline-icon svg { width: 24px; height: 24px; }
.sec-pipeline-icon--detect {
	background: rgba(255, 165, 0, 0.1);
	border-color: rgba(255, 165, 0, 0.25);
	color: #ffa500;
}
.sec-pipeline-icon--quarantine {
	background: rgba(255, 51, 102, 0.1);
	border-color: rgba(255, 51, 102, 0.25);
	color: #ff3366;
}
.sec-pipeline-icon--clean {
	background: rgba(0, 153, 255, 0.1);
	border-color: rgba(0, 153, 255, 0.25);
	color: #0099ff;
}
.sec-pipeline-step h3 {
	font-family: var(--font-primary);
	font-size: 1rem;
	margin-bottom: 8px;
}
.sec-pipeline-step p {
	color: var(--text-secondary);
	font-size: 0.85rem;
	line-height: 1.5;
}
.sec-pipeline-arrow {
	display: flex;
	align-items: center;
	align-self: center;
	color: var(--quantum-primary);
	opacity: 0.5;
	flex-shrink: 0;
	padding-left: 6px;
	padding-right: 6px;
}

.sec-pipeline-track {
	margin: 24px auto 0;
	max-width: 900px;
	height: 4px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}
.sec-pipeline-track-fill {
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, #00ff88, #0099ff, transparent);
	animation: secConveyor 2.5s linear infinite;
}
@keyframes secConveyor {
	from { left: -30%; }
	to { left: 100%; }
}

.sec-modes-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.sec-modes-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-top: 48px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.sec-mode-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.sec-mode-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card);
}
.sec-mode-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}
.sec-mode-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-sm);
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00ff88;
	flex-shrink: 0;
}
.sec-mode-icon svg { width: 20px; height: 20px; }
.sec-mode-icon--scheduled {
	background: rgba(0, 153, 255, 0.1);
	border-color: rgba(0, 153, 255, 0.2);
	color: #0099ff;
}
.sec-mode-header h3 {
	font-family: var(--font-primary);
	font-size: 1.15rem;
	margin: 0;
}
.sec-mode-desc {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
}
.sec-mode-features {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sec-mode-features li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	color: var(--text-secondary);
	font-size: 0.9rem;
}
.sec-mode-features svg {
	color: var(--quantum-primary);
	flex-shrink: 0;
}

.sec-ecosystem-section { padding: var(--spacing-2xl) 0; }
.sec-ecosystem-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.sec-eco-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sec-eco-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card);
}
.sec-eco-card--suite {
	border-color: rgba(0, 255, 136, 0.3);
	box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.15);
}
.sec-eco-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-sm);
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00ff88;
	margin-bottom: 16px;
}
.sec-eco-icon svg { width: 24px; height: 24px; }
.sec-eco-icon--trusted {
	background: rgba(0, 153, 255, 0.1);
	border-color: rgba(0, 153, 255, 0.2);
	color: #0099ff;
}
.sec-eco-icon--suite {
	background: rgba(255, 0, 102, 0.1);
	border-color: rgba(255, 0, 102, 0.2);
	color: #ff0066;
}
.sec-eco-card h3 {
	font-family: var(--font-primary);
	font-size: 1.1rem;
	margin-bottom: 10px;
}
.sec-eco-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 16px;
}
.sec-eco-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sec-eco-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px 0;
	color: var(--text-secondary);
	font-size: 0.85rem;
}
.sec-eco-list svg { color: var(--quantum-primary); flex-shrink: 0; }
.sec-eco-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 8px;
}
.sec-eco-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	font-size: 0.85rem;
	padding: 10px 18px;
}

@media (max-width: 768px) {
	.sec-pipeline { flex-direction: column; align-items: center; gap: 0; }
	.sec-pipeline-step { max-width: 280px; width: 100%; text-align: center; }
	.sec-pipeline-arrow { transform: rotate(90deg); padding: 8px 0; }
	.sec-modes-grid { grid-template-columns: 1fr; }
	.sec-mode-card { text-align: center; }
	.sec-ecosystem-grid { grid-template-columns: 1fr; }
	.sec-eco-card { text-align: center; }
	.sec-eco-icon { margin-inline: auto; }
	.sec-eco-list li { justify-content: center; }
	.sec-eco-list li + li { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 8px; }
	.sec-radar { width: 240px; height: 240px; }
	.sec-radar-ring--3 { width: 230px; height: 230px; margin: -115px 0 0 -115px; }
	.sec-radar-ring--2 { width: 155px; height: 155px; margin: -77.5px 0 0 -77.5px; }
	.sec-radar-ring--1 { width: 80px; height: 80px; margin: -40px 0 0 -40px; }
	.sec-radar-sweep { width: 115px; height: 115px; margin: -115px 0 0 0; }
}
@media (min-width: 769px) and (max-width: 1024px) {
	.sec-ecosystem-grid { grid-template-columns: 1fr; }
	.sec-modes-grid { grid-template-columns: 1fr; }
}

[dir="rtl"] .sec-pipeline-arrow svg { transform: scaleX(-1); }
[dir="rtl"] .sec-pipeline-track-fill {
	left: auto; right: -30%;
	animation-name: secConveyorRtl;
}
@keyframes secConveyorRtl {
	from { right: -30%; }
	to { right: 100%; }
}
@media (max-width: 768px) {
	[dir="rtl"] .sec-pipeline-arrow { transform: rotate(90deg); }
	[dir="rtl"] .sec-pipeline-arrow svg { transform: none; }
}

/* ══ Page: Caching ══ */

.cache-hero-visual { display: flex; align-items: center; justify-content: center; }

.cache-stack {
	position: relative;
	width: 280px;
	height: 280px;
	z-index: 2;
}

.cache-stack-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 153, 255, 0.09) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: cacheGlow 6s ease-in-out infinite;
}
@keyframes cacheGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.cache-layer {
	position: absolute;
	left: 50%;
	width: 200px;
	height: 50px;
	margin-inline-start: -100px;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(0, 153, 255, 0.25);
	background: rgba(0, 153, 255, 0.08);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cache-layer--1 {
	top: 60%;
	border-color: rgba(0, 255, 136, 0.3);
	background: rgba(0, 255, 136, 0.06);
	animation: cacheLayerFloat 4s ease-in-out infinite;
}
.cache-layer--2 {
	top: 38%;
	border-color: rgba(0, 153, 255, 0.3);
	background: rgba(0, 153, 255, 0.06);
	animation: cacheLayerFloat 4s ease-in-out infinite 0.5s;
}
.cache-layer--3 {
	top: 16%;
	border-color: rgba(255, 0, 102, 0.25);
	background: rgba(255, 0, 102, 0.05);
	animation: cacheLayerFloat 4s ease-in-out infinite 1s;
}
@keyframes cacheLayerFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.cache-layer-label {
	font-family: var(--font-primary);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--text-secondary);
	opacity: 0.8;
}

.cache-particle {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
	animation: cacheParticleFlow 3s ease-in-out infinite;
}
.cache-particle--1 { left: 30%; animation-delay: 0s; }
.cache-particle--2 { left: 45%; animation-delay: 0.5s; }
.cache-particle--3 { left: 60%; animation-delay: 1s; }
.cache-particle--4 { left: 70%; animation-delay: 1.5s; }
.cache-particle--5 { left: 35%; animation-delay: 2s; }
.cache-particle--6 { left: 55%; animation-delay: 2.5s; }
@keyframes cacheParticleFlow {
	0% { top: 80%; opacity: 0; transform: scale(0.5); }
	20% { opacity: 1; transform: scale(1); }
	80% { opacity: 1; transform: scale(1); }
	100% { top: 10%; opacity: 0; transform: scale(0.5); }
}

.cache-stack-status {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
}
.cache-stack-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
	animation: cacheLedPulse 2s ease-in-out infinite;
}
@keyframes cacheLedPulse {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}
.cache-stack-bar {
	width: 50px;
	height: 3px;
	border-radius: 2px;
	background: rgba(0, 255, 136, 0.15);
	overflow: hidden;
}
.cache-stack-bar::after {
	content: '';
	display: block;
	width: 60%;
	height: 100%;
	background: var(--quantum-primary);
	border-radius: 2px;
	animation: cacheBarScan 2.5s ease-in-out infinite;
}
@keyframes cacheBarScan {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(180%); }
}
.cache-stack-tag {
	width: 30px;
	height: 3px;
	border-radius: 2px;
	background: rgba(0, 153, 255, 0.2);
}

/* Caching modes 4-column grid */
.sec-modes-grid-4 {
	grid-template-columns: repeat(2, 1fr);
	max-width: 1100px;
}
.sec-mode-card--recommended {
	border-color: var(--quantum-primary);
	box-shadow: 0 0 0 1px var(--quantum-primary), 0 8px 24px rgba(0, 255, 136, 0.15);
}
.sec-mode-badge {
	background: var(--quantum-primary);
	color: var(--bg-primary);
	font-size: 0.7rem;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: var(--radius-xl);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-inline-start: auto;
}

@media (max-width: 768px) {
	.cache-stack { width: 220px; height: 220px; }
	.cache-layer { width: 160px; margin-inline-start: -80px; height: 42px; }
	.sec-modes-grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.cache-stack { width: 180px; height: 180px; }
	.cache-layer { width: 130px; margin-inline-start: -65px; height: 36px; }
	.cache-particle { display: none; }
}

/* ══ Page: Anti-Virus ══ */

.av-hero-visual { display: flex; align-items: center; justify-content: center; }

.av-radar {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.av-radar-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.09) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: avGlow 6s ease-in-out infinite;
}
@keyframes avGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.av-radar-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 1px solid rgba(0, 255, 136, 0.12);
}
.av-radar-ring--3 {
	width: 280px; height: 280px;
	margin: -140px 0 0 -140px;
	border-color: rgba(0, 255, 136, 0.1);
}
.av-radar-ring--2 {
	width: 190px; height: 190px;
	margin: -95px 0 0 -95px;
	border-color: rgba(0, 255, 136, 0.15);
}
.av-radar-ring--1 {
	width: 100px; height: 100px;
	margin: -50px 0 0 -50px;
	border-color: rgba(0, 255, 136, 0.22);
}

.av-radar-line {
	position: absolute;
	z-index: 1;
}
.av-radar-line--h {
	top: 50%;
	left: 10px;
	right: 10px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
}
.av-radar-line--v {
	left: 50%;
	top: 10px;
	bottom: 10px;
	width: 1px;
	background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.1), transparent);
}

.av-radar-sweep {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 140px;
	height: 140px;
	margin: -140px 0 0 0;
	transform-origin: bottom left;
	background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 255, 136, 0.25) 30deg, transparent 60deg);
	border-radius: 140px 140px 0 0;
	clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 100% 100%);
	animation: avSweep 4s linear infinite;
	z-index: 2;
}
@keyframes avSweep {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.av-blip {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	z-index: 3;
	opacity: 0;
}
.av-blip::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px solid;
	opacity: 0.4;
}

.av-blip--1, .av-blip--3, .av-blip--5 {
	background: #00ff88;
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}
.av-blip--1::after, .av-blip--3::after, .av-blip--5::after {
	border-color: #00ff88;
}

.av-blip--2, .av-blip--4 {
	background: #ff3366;
	box-shadow: 0 0 8px rgba(255, 51, 102, 0.6);
}
.av-blip--2::after, .av-blip--4::after {
	border-color: #ff3366;
}

.av-blip--1 { top: 25%; left: 60%; animation: avBlipPulse 4s ease-out infinite 0.7s; }
.av-blip--2 { top: 35%; left: 28%; animation: avBlipPulse 4s ease-out infinite 1.4s; }
.av-blip--3 { top: 55%; left: 68%; animation: avBlipPulse 4s ease-out infinite 2.1s; }
.av-blip--4 { top: 65%; left: 40%; animation: avBlipPulse 4s ease-out infinite 2.8s; }
.av-blip--5 { top: 20%; left: 42%; animation: avBlipPulse 4s ease-out infinite 0.3s; }

@keyframes avBlipPulse {
	0%, 10% { opacity: 0; transform: scale(0.3); }
	15% { opacity: 1; transform: scale(1.3); }
	25% { opacity: 0.9; transform: scale(1); }
	70% { opacity: 0.4; transform: scale(1); }
	100% { opacity: 0; transform: scale(0.5); }
}

.av-radar-core {
	position: absolute;
	top: 50%; left: 50%;
	width: 16px; height: 16px;
	margin: -8px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 12px #00ff88, 0 0 24px rgba(0, 255, 136, 0.3);
	z-index: 5;
	animation: avCoreBeat 2s ease-in-out infinite;
}
.av-radar-core-pulse {
	position: absolute;
	top: 50%; left: 50%;
	width: 50px; height: 50px;
	margin: -25px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
	z-index: 4;
	animation: avCorePulseAnim 2.5s ease-in-out infinite;
}
@keyframes avCoreBeat {
	0%, 100% { transform: scale(1); opacity: 0.8; }
	50% { transform: scale(1.15); opacity: 1; }
}
@keyframes avCorePulseAnim {
	0%, 100% { transform: scale(1); opacity: 0.5; }
	50% { transform: scale(1.8); opacity: 0.1; }
}

.av-radar-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}
.av-radar-led {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: avLedPulse 2s ease-in-out infinite;
}
.av-radar-bar {
	width: 40px; height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}
.av-radar-bar::after {
	content: '';
	display: block;
	width: 80%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	animation: avBarFill 3s ease-in-out infinite;
}
.av-radar-tag {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 255, 136, 0.7);
}
.av-radar-tag::after { content: 'SCANNING'; }

@keyframes avLedPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes avBarFill { 0%, 100% { width: 60%; } 50% { width: 95%; } }

/* Anti-Virus Features */
.av-features-section { padding: var(--spacing-2xl) 0; }
.av-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 48px;
}

/* Anti-Virus Pipeline */
.av-pipeline-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.av-pipeline {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	margin-top: 48px;
	position: relative;
}
.av-pipeline-step {
	text-align: center;
	flex: 1;
	max-width: 190px;
	min-width: 130px;
	padding: 24px 12px;
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	backdrop-filter: blur(20px);
	position: relative;
	z-index: 2;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.av-pipeline-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}
.av-pipeline-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	color: #00ff88;
}
.av-pipeline-icon svg { width: 24px; height: 24px; }
.av-pipeline-icon--detect {
	background: rgba(255, 165, 0, 0.1);
	border-color: rgba(255, 165, 0, 0.25);
	color: #ffa500;
}
.av-pipeline-icon--quarantine {
	background: rgba(255, 51, 102, 0.1);
	border-color: rgba(255, 51, 102, 0.25);
	color: #ff3366;
}
.av-pipeline-icon--clean {
	background: rgba(0, 153, 255, 0.1);
	border-color: rgba(0, 153, 255, 0.25);
	color: #0099ff;
}
.av-pipeline-icon--report {
	background: rgba(138, 43, 226, 0.1);
	border-color: rgba(138, 43, 226, 0.25);
	color: #8a2be2;
}
.av-pipeline-step h3 {
	font-family: var(--font-primary);
	font-size: 1rem;
	margin-bottom: 8px;
}
.av-pipeline-step p {
	color: var(--text-secondary);
	font-size: 0.85rem;
	line-height: 1.5;
}
.av-pipeline-arrow {
	display: flex;
	align-items: center;
	padding-top: 50px;
	color: var(--quantum-primary);
	opacity: 0.5;
	flex-shrink: 0;
	padding-left: 4px;
	padding-right: 4px;
}

.av-pipeline-track {
	margin: 24px auto 0;
	max-width: 900px;
	height: 4px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}
.av-pipeline-track-fill {
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, #00ff88, #0099ff, transparent);
	animation: avConveyor 2.5s linear infinite;
}
@keyframes avConveyor {
	from { left: -30%; }
	to { left: 100%; }
}

@media (max-width: 768px) {
	.av-features-grid { grid-template-columns: 1fr; }
	.av-pipeline { flex-direction: column; align-items: center; gap: 0; }
	.av-pipeline-step { max-width: 280px; width: 100%; text-align: center; }
	.av-pipeline-arrow { transform: rotate(90deg); padding: 8px 0; }
	.av-radar { width: 240px; height: 240px; }
	.av-radar-ring--3 { width: 230px; height: 230px; margin: -115px 0 0 -115px; }
	.av-radar-ring--2 { width: 155px; height: 155px; margin: -77.5px 0 0 -77.5px; }
	.av-radar-ring--1 { width: 80px; height: 80px; margin: -40px 0 0 -40px; }
	.av-radar-sweep { width: 115px; height: 115px; margin: -115px 0 0 0; }
}

[dir="rtl"] .av-pipeline-arrow svg { transform: scaleX(-1); }
[dir="rtl"] .av-pipeline-track-fill {
	left: auto; right: -30%;
	animation-name: avConveyorRtl;
}
@keyframes avConveyorRtl {
	from { right: -30%; }
	to { right: 100%; }
}
@media (max-width: 768px) {
	[dir="rtl"] .av-pipeline-arrow { transform: rotate(90deg); }
	[dir="rtl"] .av-pipeline-arrow svg { transform: none; }
}
@media (max-width: 480px) {
	.av-radar { width: 190px; height: 190px; }
	.av-radar-glow { display: none; }
	.av-radar-ring--3 { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
	.av-radar-ring--2 { width: 120px; height: 120px; margin: -60px 0 0 -60px; }
	.av-radar-ring--1 { width: 60px; height: 60px; margin: -30px 0 0 -30px; }
	.av-radar-sweep { width: 90px; height: 90px; margin: -90px 0 0 0; }
	.av-radar-status { padding: 4px 10px; gap: 6px; }
	.av-radar-tag { font-size: 0.5rem; }
}

/* ══ Page: Proper ══ */

.proper-hero-visual { display: flex; align-items: center; justify-content: center; }

/* Proper Scanner CTA Section */
.proper-scanner-cta { padding: var(--spacing-xl) 0; }
.proper-scanner-cta__card { background: var(--gradient-card); border: var(--border-quantum); border-radius: var(--radius-lg); padding: var(--spacing-xl); text-align: center; max-width: 700px; margin: 0 auto; transition: all var(--transition-normal); }
.proper-scanner-cta__card:hover { border-color: rgba(0, 255, 136, 0.5); box-shadow: var(--shadow-quantum); }
.proper-scanner-cta__icon { color: var(--quantum-primary); margin-bottom: var(--spacing-sm); }
.proper-scanner-cta__title { font-family: var(--font-primary); font-size: 1.5rem; margin-bottom: var(--spacing-xs); }
.proper-scanner-cta__desc { color: var(--text-secondary); margin-bottom: var(--spacing-md); }
@media (max-width: 768px) { .proper-scanner-cta__title { font-size: 1.25rem; } .proper-scanner-cta__card { padding: var(--spacing-lg); } }

.proper-compass {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.proper-compass-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.1) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.1) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: properGlow 6s ease-in-out infinite;
}
@keyframes properGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

.proper-orbit {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
}
.proper-orbit--outer {
	width: 260px;
	height: 260px;
	margin: -130px;
	border: 1px dashed rgba(0, 255, 136, 0.12);
	animation: properOrbitSpin 30s linear infinite;
}
.proper-orbit--inner {
	width: 170px;
	height: 170px;
	margin: -85px;
	border: 1px dotted rgba(0, 153, 255, 0.18);
	animation: properOrbitSpin 20s linear infinite reverse;
}
@keyframes properOrbitSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.proper-tool {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	z-index: 3;
}
.proper-tool--1, .proper-tool--3, .proper-tool--5 {
	background: #00ff88;
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.6), 0 0 16px rgba(0, 255, 136, 0.2);
}
.proper-tool--2, .proper-tool--4, .proper-tool--6 {
	background: #0099ff;
	box-shadow: 0 0 8px rgba(0, 153, 255, 0.6), 0 0 16px rgba(0, 153, 255, 0.2);
}

.proper-tool--1 { animation: properToolOrbit1 30s linear infinite; }
.proper-tool--2 { animation: properToolOrbit2 30s linear infinite; }
.proper-tool--3 { animation: properToolOrbit3 30s linear infinite; }
.proper-tool--4 { animation: properToolOrbit4 20s linear infinite; }
.proper-tool--5 { animation: properToolOrbit5 20s linear infinite; }
.proper-tool--6 { animation: properToolOrbit6 20s linear infinite; }

@keyframes properToolOrbit1 {
	from { top: calc(50% - 130px - 4px); left: calc(50% - 4px); }
	25% { top: calc(50% - 4px); left: calc(50% + 130px - 4px); }
	50% { top: calc(50% + 130px - 4px); left: calc(50% - 4px); }
	75% { top: calc(50% - 4px); left: calc(50% - 130px - 4px); }
	to { top: calc(50% - 130px - 4px); left: calc(50% - 4px); }
}
@keyframes properToolOrbit2 {
	from { top: calc(50% - 4px); left: calc(50% + 130px - 4px); }
	25% { top: calc(50% + 130px - 4px); left: calc(50% - 4px); }
	50% { top: calc(50% - 4px); left: calc(50% - 130px - 4px); }
	75% { top: calc(50% - 130px - 4px); left: calc(50% - 4px); }
	to { top: calc(50% - 4px); left: calc(50% + 130px - 4px); }
}
@keyframes properToolOrbit3 {
	from { top: calc(50% + 130px - 4px); left: calc(50% - 4px); }
	25% { top: calc(50% - 4px); left: calc(50% - 130px - 4px); }
	50% { top: calc(50% - 130px - 4px); left: calc(50% - 4px); }
	75% { top: calc(50% - 4px); left: calc(50% + 130px - 4px); }
	to { top: calc(50% + 130px - 4px); left: calc(50% - 4px); }
}
@keyframes properToolOrbit4 {
	from { top: calc(50% - 85px - 4px); left: calc(50% - 4px); }
	25% { top: calc(50% - 4px); left: calc(50% - 85px - 4px); }
	50% { top: calc(50% + 85px - 4px); left: calc(50% - 4px); }
	75% { top: calc(50% - 4px); left: calc(50% + 85px - 4px); }
	to { top: calc(50% - 85px - 4px); left: calc(50% - 4px); }
}
@keyframes properToolOrbit5 {
	from { top: calc(50% - 4px); left: calc(50% - 85px - 4px); }
	25% { top: calc(50% + 85px - 4px); left: calc(50% - 4px); }
	50% { top: calc(50% - 4px); left: calc(50% + 85px - 4px); }
	75% { top: calc(50% - 85px - 4px); left: calc(50% - 4px); }
	to { top: calc(50% - 4px); left: calc(50% - 85px - 4px); }
}
@keyframes properToolOrbit6 {
	from { top: calc(50% + 85px - 4px); left: calc(50% - 4px); }
	25% { top: calc(50% - 4px); left: calc(50% + 85px - 4px); }
	50% { top: calc(50% - 85px - 4px); left: calc(50% - 4px); }
	75% { top: calc(50% - 4px); left: calc(50% - 85px - 4px); }
	to { top: calc(50% + 85px - 4px); left: calc(50% - 4px); }
}

.proper-core-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	margin: -40px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, transparent 70%);
	z-index: 4;
	animation: properCorePulse 2.5s ease-in-out infinite;
}
.proper-core-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 56px;
	height: 56px;
	margin: -28px;
	border-radius: 50%;
	border: 2px solid rgba(0, 255, 136, 0.25);
	z-index: 5;
	animation: properCoreBreath 3s ease-in-out infinite;
}
.proper-core-compass {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	margin: -16px;
	z-index: 6;
	color: #00ff88;
	animation: properCompassSpin 8s ease-in-out infinite;
}
@keyframes properCorePulse {
	0%, 100% { transform: scale(1); opacity: 0.4; }
	50% { transform: scale(1.4); opacity: 0.15; }
}
@keyframes properCoreBreath {
	0%, 100% { transform: scale(1); opacity: 0.6; border-color: rgba(0, 255, 136, 0.25); }
	50% { transform: scale(1.1); opacity: 1; border-color: rgba(0, 255, 136, 0.5); }
}
@keyframes properCompassSpin {
	0% { transform: rotate(0deg); }
	25% { transform: rotate(15deg); }
	50% { transform: rotate(-10deg); }
	75% { transform: rotate(5deg); }
	100% { transform: rotate(0deg); }
}

.proper-stream {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 12px rgba(0, 255, 136, 0.4);
	z-index: 3;
	opacity: 0;
}
.proper-stream--1 { animation: properStreamIn1 3s ease-out infinite; }
.proper-stream--2 { animation: properStreamIn2 3.5s ease-out infinite -0.8s; }
.proper-stream--3 { animation: properStreamOut1 3.2s ease-out infinite -1.5s; }
.proper-stream--4 { animation: properStreamOut2 2.8s ease-out infinite -0.4s; }

@keyframes properStreamIn1 {
	0% { top: -5%; left: 30%; opacity: 0; }
	10% { opacity: 0.8; }
	70% { top: 38%; left: 45%; opacity: 0.6; }
	100% { top: 45%; left: 48%; opacity: 0; }
}
@keyframes properStreamIn2 {
	0% { top: 20%; right: -5%; opacity: 0; }
	10% { opacity: 0.8; }
	70% { top: 42%; right: 38%; opacity: 0.6; }
	100% { top: 48%; right: 45%; opacity: 0; }
}
@keyframes properStreamOut1 {
	0%, 30% { bottom: 50%; left: 52%; opacity: 0; }
	40% { opacity: 0.7; }
	80% { bottom: 10%; left: 80%; opacity: 0.5; }
	100% { bottom: -5%; left: 95%; opacity: 0; }
}
@keyframes properStreamOut2 {
	0%, 30% { bottom: 52%; right: 52%; opacity: 0; }
	40% { opacity: 0.7; }
	80% { bottom: 85%; right: 15%; opacity: 0.5; }
	100% { bottom: 100%; right: 5%; opacity: 0; }
}

.proper-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}
.proper-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: properLedPulse 2s ease-in-out infinite;
}
.proper-status-bar {
	width: 40px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}
.proper-status-bar::after {
	content: '';
	display: block;
	width: 80%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	animation: properBarFill 3s ease-in-out infinite;
}
.proper-status-tag {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 255, 136, 0.7);
}
.proper-status-tag::after { content: 'READY'; }

@keyframes properLedPulse {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}
@keyframes properBarFill {
	0%, 100% { width: 70%; }
	50% { width: 95%; }
}

.ask-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.ask-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.ask-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.ask-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card);
}
.ask-card-icon {
	color: var(--quantum-primary);
	margin-bottom: 16px;
	opacity: 0.8;
}
.ask-card h3 {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	margin-bottom: 16px;
}
.ask-prompts {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ask-prompts li {
	background: rgba(0, 255, 136, 0.05);
	border: 1px solid rgba(0, 255, 136, 0.1);
	border-radius: var(--radius-sm);
	padding: 10px 14px;
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.4;
	position: relative;
	padding-inline-start: 28px;
}
.ask-prompts li::before {
	content: '\203A';
	position: absolute;
	inset-inline-start: 12px;
	top: 10px;
	color: var(--quantum-primary);
	font-weight: 700;
	font-size: 1rem;
}

@media (max-width: 768px) {
	.ask-grid { grid-template-columns: 1fr; }
	.ask-card { text-align: center; }
	.ask-prompts { text-align: start; }
	.proper-compass { width: 240px; height: 240px; }
	.proper-orbit--outer { width: 210px; height: 210px; margin: -105px; }
	.proper-orbit--inner { width: 140px; height: 140px; margin: -70px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
	.ask-grid { grid-template-columns: 1fr; }
}

[dir="rtl"] .ask-prompts li::before {
	content: '\2039';
}

/* ══ Page: Email ══ */

.mail-hero-visual { display: flex; align-items: center; justify-content: center; }

.mail-envelope {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.mail-envelope-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.1) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.1) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: mailGlow 6s ease-in-out infinite;
}
@keyframes mailGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

.mail-envelope-body {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120px;
	height: 80px;
	margin: -40px 0 0 -60px;
	z-index: 4;
	perspective: 400px;
}

.mail-envelope-flap {
	position: absolute;
	top: -30px;
	left: 0;
	width: 120px;
	height: 60px;
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.12) 0%, rgba(0, 153, 255, 0.08) 100%);
	border: 1px solid rgba(0, 255, 136, 0.2);
	clip-path: polygon(0 100%, 50% 0%, 100% 100%);
	transform-origin: bottom center;
	animation: mailFlapOpen 4s ease-in-out infinite;
	z-index: 5;
}

.mail-envelope-front {
	position: absolute;
	top: 0;
	left: 0;
	width: 120px;
	height: 80px;
	background: rgba(26, 26, 46, 0.9);
	border: 1px solid rgba(0, 255, 136, 0.2);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00ff88;
	z-index: 3;
	box-shadow: 0 4px 24px rgba(0, 255, 136, 0.08);
}

@keyframes mailFlapOpen {
	0%, 100% { transform: rotateX(0deg); }
	30%, 50% { transform: rotateX(-160deg); }
}

.mail-shield {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 44px;
	height: 44px;
	margin: -65px 0 0 35px;
	z-index: 6;
	color: #00ff88;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.25);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 16px rgba(0, 255, 136, 0.15), 0 0 32px rgba(0, 255, 136, 0.05);
	animation: mailShieldPulse 3s ease-in-out infinite;
}
@keyframes mailShieldPulse {
	0%, 100% { transform: scale(1); box-shadow: 0 0 16px rgba(0, 255, 136, 0.15), 0 0 32px rgba(0, 255, 136, 0.05); }
	50% { transform: scale(1.08); box-shadow: 0 0 24px rgba(0, 255, 136, 0.25), 0 0 48px rgba(0, 255, 136, 0.1); }
}

.mail-particle {
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	z-index: 3;
	opacity: 0;
}
.mail-particle--in-1, .mail-particle--in-2, .mail-particle--in-3 {
	background: #0099ff;
	box-shadow: 0 0 6px #0099ff, 0 0 12px rgba(0, 153, 255, 0.4);
}
.mail-particle--out-1, .mail-particle--out-2, .mail-particle--out-3 {
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 12px rgba(0, 255, 136, 0.4);
}

.mail-particle--in-1 { animation: mailParticleIn1 3s ease-out infinite; }
.mail-particle--in-2 { animation: mailParticleIn2 3.4s ease-out infinite 0.6s; }
.mail-particle--in-3 { animation: mailParticleIn3 2.8s ease-out infinite 1.2s; }
.mail-particle--out-1 { animation: mailParticleOut1 3.2s ease-out infinite 0.3s; }
.mail-particle--out-2 { animation: mailParticleOut2 3.6s ease-out infinite 0.9s; }
.mail-particle--out-3 { animation: mailParticleOut3 2.9s ease-out infinite 1.6s; }

@keyframes mailParticleIn1 {
	0% { top: -5%; left: 20%; opacity: 0; }
	10% { opacity: 0.8; }
	70% { top: 40%; left: 45%; opacity: 0.5; }
	100% { top: 48%; left: 48%; opacity: 0; }
}
@keyframes mailParticleIn2 {
	0% { top: 10%; right: -5%; opacity: 0; }
	10% { opacity: 0.8; }
	70% { top: 42%; right: 40%; opacity: 0.5; }
	100% { top: 48%; right: 45%; opacity: 0; }
}
@keyframes mailParticleIn3 {
	0% { top: -5%; left: 70%; opacity: 0; }
	10% { opacity: 0.7; }
	70% { top: 38%; left: 52%; opacity: 0.5; }
	100% { top: 45%; left: 50%; opacity: 0; }
}
@keyframes mailParticleOut1 {
	0%, 30% { bottom: 50%; left: 52%; opacity: 0; }
	40% { opacity: 0.7; }
	80% { bottom: 10%; left: 85%; opacity: 0.4; }
	100% { bottom: -5%; left: 100%; opacity: 0; }
}
@keyframes mailParticleOut2 {
	0%, 30% { bottom: 52%; right: 50%; opacity: 0; }
	40% { opacity: 0.7; }
	80% { bottom: 85%; right: 15%; opacity: 0.4; }
	100% { bottom: 105%; right: 5%; opacity: 0; }
}
@keyframes mailParticleOut3 {
	0%, 30% { bottom: 50%; left: 45%; opacity: 0; }
	40% { opacity: 0.6; }
	80% { bottom: 5%; left: 10%; opacity: 0.4; }
	100% { bottom: -10%; left: -5%; opacity: 0; }
}

.mail-orbit {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 220px;
	height: 220px;
	margin: -110px;
	border-radius: 50%;
	border: 1px dashed rgba(0, 255, 136, 0.1);
	animation: mailOrbitSpin 25s linear infinite;
}
@keyframes mailOrbitSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.mail-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}
.mail-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: mailLedPulse 2s ease-in-out infinite;
}
.mail-status-bar {
	width: 40px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}
.mail-status-bar::after {
	content: '';
	display: block;
	width: 80%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	animation: mailBarFill 3s ease-in-out infinite;
}
.mail-status-tag {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 255, 136, 0.7);
}
.mail-status-tag::after { content: 'SECURE'; }

@keyframes mailLedPulse {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}
@keyframes mailBarFill {
	0%, 100% { width: 70%; }
	50% { width: 95%; }
}

.guard-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.guard-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xl);
	align-items: center;
}
.guard-text .section-title { margin-bottom: var(--spacing-md); text-align: start; }
[dir="rtl"] .guard-text .section-title { text-align: right; }
.guard-description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-secondary);
}
.guard-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.guard-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	padding: var(--spacing-md);
	backdrop-filter: blur(20px);
	transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.guard-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 255, 136, 0.25);
	box-shadow: var(--shadow-card);
}
.guard-card-icon {
	color: var(--quantum-primary);
	margin-bottom: 12px;
	width: 24px;
	height: 24px;
}
.guard-card-icon svg { width: 24px; height: 24px; }
.guard-card h3 {
	font-family: var(--font-primary);
	font-size: 0.95rem;
	margin-bottom: 6px;
}
.guard-card p {
	color: var(--text-secondary);
	font-size: 0.85rem;
	line-height: 1.5;
	margin: 0;
}

.protocol-strip {
	padding: var(--spacing-lg) 0;
	background: rgba(10, 10, 15, 0.95);
	border-top: 1px solid rgba(0, 255, 136, 0.15);
	border-bottom: 1px solid rgba(0, 255, 136, 0.15);
}
.protocol-items {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
}
.protocol-badge {
	padding: 10px 28px;
}
.protocol-label {
	font-family: var(--font-primary);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--quantum-primary);
	text-transform: uppercase;
}
.protocol-sep {
	width: 1px;
	height: 24px;
	background: rgba(255, 255, 255, 0.12);
	flex-shrink: 0;
}

.email-features-section {
	padding: var(--spacing-2xl) 0;
}
.email-features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 48px;
}
.email-feature-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.email-feature-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 255, 136, 0.25);
	box-shadow: var(--shadow-card);
}
.email-feature-icon {
	color: var(--quantum-primary);
	margin-bottom: 16px;
	width: 32px;
	height: 32px;
}
.email-feature-icon svg { width: 32px; height: 32px; }
.email-feature-card h3 {
	font-family: var(--font-primary);
	font-size: 1.15rem;
	margin-bottom: 10px;
}
.email-feature-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 768px) {
	.mail-envelope { width: 240px; height: 240px; }
	.mail-orbit { width: 180px; height: 180px; margin: -90px; }
	.mail-envelope-body { width: 100px; height: 68px; margin: -34px 0 0 -50px; }
	.mail-envelope-flap { width: 100px; height: 50px; top: -25px; }
	.mail-envelope-front { width: 100px; height: 68px; }
	.mail-shield { width: 36px; height: 36px; margin: -55px 0 0 28px; }
	.mail-shield svg { width: 22px; height: 22px; }
	.guard-layout { grid-template-columns: 1fr; }
	.guard-text .section-title { text-align: center !important; }
	.guard-description { text-align: center; }
	.email-features-grid { grid-template-columns: 1fr; }
	.email-feature-card { text-align: center; }
	.email-feature-icon { margin: 0 auto 16px; }
	.protocol-items { gap: 4px; }
	.protocol-badge { padding: 8px 16px; }
	.protocol-label { font-size: 0.85rem; letter-spacing: 1px; }
	.protocol-sep { height: 18px; }
}

/* ══ Page: Features ══ */

/* ── Features Mosaic Hero Visual ── */
.feat-mosaic {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.feat-mosaic-glow {
	position: absolute;
	inset: -40px;
	background: radial-gradient(circle, rgba(0,255,136,0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.feat-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	padding: 14px 8px;
	min-width: 0;
	overflow: hidden;
	backdrop-filter: blur(20px);
	transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
	animation: feat-tile-float 4s ease-in-out infinite;
}
.feat-tile:hover {
	border-color: rgba(0,255,136,0.3);
	transform: translateY(-4px);
	box-shadow: 0 0 20px rgba(0,255,136,0.1);
}
.feat-tile svg {
	width: 28px;
	height: 28px;
	color: var(--quantum-primary);
}
.feat-tile span {
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.feat-tile--1 { animation-delay: 0s; }
.feat-tile--2 { animation-delay: 0.3s; }
.feat-tile--2 svg { color: var(--quantum-accent); }
.feat-tile--3 { animation-delay: 0.6s; }
.feat-tile--3 svg { color: var(--quantum-secondary); }
.feat-tile--4 { animation-delay: 0.9s; }
.feat-tile--4 svg { color: var(--quantum-secondary); }
.feat-tile--5 { animation-delay: 1.2s; }
.feat-tile--5 svg { color: var(--quantum-accent); }
.feat-tile--6 { animation-delay: 1.5s; }
.feat-tile--6 svg { color: var(--quantum-accent); }
.feat-tile--7 { animation-delay: 1.8s; }
.feat-tile--8 { animation-delay: 2.1s; }
.feat-tile--8 svg { color: var(--quantum-secondary); }
.feat-tile--9 { animation-delay: 2.4s; }
.feat-tile--9 svg { color: var(--quantum-secondary); }
@keyframes feat-tile-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}
.feat-category {
	padding: 5rem 0;
}
.feat-category--alt {
	background: var(--bg-secondary, #1a1a2e);
}
.feat-category-tagline {
	text-align: center;
	color: rgba(255,255,255,0.6);
	font-size: 1.1rem;
	margin-top: -0.5rem;
	margin-bottom: 3rem;
}
.feat-grid {
	display: grid;
	gap: 1.5rem;
}
.feat-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}
.feat-card {
	display: flex;
	flex-direction: column;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius-lg, 16px);
	padding: 2rem;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.feat-card:hover {
	border-color: var(--quantum-primary, #00ff88);
	box-shadow: 0 0 30px rgba(0,255,136,0.08);
	transform: translateY(-4px);
}
.feat-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(0,255,136,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	color: var(--quantum-primary, #00ff88);
}
.feat-card-icon--proper { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--backups { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--monitoring { background: rgba(255,0,102,0.08); color: var(--quantum-accent, #ff0066); }
.feat-card-icon--dns { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--staging { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-icon--wordpress { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--performance { background: rgba(255,0,102,0.08); color: var(--quantum-accent, #ff0066); }
.feat-card-icon--ssl { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-icon--security { background: rgba(255,0,102,0.08); color: var(--quantum-accent, #ff0066); }
.feat-card-icon--email { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--firewall { background: rgba(255,0,102,0.08); color: var(--quantum-accent, #ff0066); }
.feat-card-icon--flood { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-icon--brute { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--antivirus { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-icon--caching { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-icon--redis { background: rgba(255,0,102,0.08); color: var(--quantum-accent, #ff0066); }
.feat-card-icon--imgopt { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--pagespeed { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-icon--wpsecurity { background: rgba(255,0,102,0.08); color: var(--quantum-accent, #ff0066); }
.feat-card-icon--wpmgmt { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--wpoptimize { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-icon--forwarding { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-icon--spam { background: rgba(255,0,102,0.08); color: var(--quantum-accent, #ff0066); }
.feat-card-icon--mailguard { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--dnssec { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-icon--autobackup { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--analytics { background: rgba(255,0,102,0.08); color: var(--quantum-accent, #ff0066); }
.feat-card-icon--database { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--cloning { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-icon--devtools { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-icon--cronjobs { background: rgba(255,0,102,0.08); color: var(--quantum-accent, #ff0066); }
.feat-card-icon--ftp { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--ssh { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-icon--logs { background: rgba(255,0,102,0.08); color: var(--quantum-accent, #ff0066); }
.feat-card-icon--addons { background: rgba(0,153,255,0.08); color: var(--quantum-secondary, #0099ff); }
.feat-card-icon--phpini { background: rgba(0,255,136,0.08); color: var(--quantum-primary, #00ff88); }
.feat-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #fff;
}
.feat-card-desc {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.6);
	line-height: 1.6;
	margin-bottom: 1rem;
	flex-grow: 1;
}
.feat-card-highlights {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.feat-card-highlights li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: rgba(255,255,255,0.75);
}
.feat-card-highlights svg {
	color: var(--quantum-primary, #00ff88);
	flex-shrink: 0;
}
.feat-card-link {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--quantum-primary, #00ff88);
	margin-top: auto;
}
.feat-card:hover .feat-card-link {
	text-decoration: underline;
}

@media (max-width: 900px) {
	.feat-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.feat-mosaic { gap: 10px; }
}
@media (max-width: 600px) {
	.feat-grid--3 { grid-template-columns: 1fr; }
	.feat-category { padding: 3rem 0; }
	.feat-card { text-align: center; align-items: center; }
	.feat-card-icon { margin-inline: auto; }
	.feat-card-highlights li { justify-content: center; }
	.feat-card-highlights li + li { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 8px; }
	.feat-card-link { justify-content: center; }
	.feat-mosaic { gap: 10px; }
	.feat-tile { padding: 16px 10px; }
	.feat-tile svg { width: 26px; height: 26px; }
	.feat-tile span { font-size: 0.65rem; }
}



/* ══ Page: Monitoring ══ */
/* ── Monitoring Heartbeat Hero ── */
.mon-hero-visual { display: flex; align-items: center; justify-content: center; }

.mon-heartbeat {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.mon-heartbeat-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.1) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.1) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: monGlow 6s ease-in-out infinite;
}
@keyframes monGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

/* ── Horizontal pulse line ── */
.mon-pulse-line {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 260px;
	height: 60px;
	margin: -30px 0 0 -130px;
	z-index: 3;
}
.mon-pulse-track {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: rgba(0, 255, 136, 0.15);
	border-radius: 1px;
}
.mon-pulse-beat {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.mon-pulse-beat::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 L60,30 L80,8 L100,52 L120,20 L140,40 L160,30 L260,30' fill='none' stroke='%2300ff88' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
	background-size: 100% 100%;
	filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.5));
	animation: monBeatPulse 2s ease-in-out infinite;
}
@keyframes monBeatPulse {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}
.mon-pulse-dot {
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 10px #00ff88, 0 0 20px rgba(0, 255, 136, 0.4);
	z-index: 3;
	animation: monDotMove 3s ease-in-out infinite;
}
@keyframes monDotMove {
	0% { left: 0; }
	50% { left: calc(100% - 8px); }
	100% { left: 0; }
}

/* ── Radar sweep ── */
.mon-radar {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 180px;
	height: 180px;
	margin: -90px;
	z-index: 2;
}
.mon-radar-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 1px solid rgba(0, 255, 136, 0.08);
}
.mon-radar-ring--1 { width: 180px; height: 180px; margin: -90px; }
.mon-radar-ring--2 { width: 120px; height: 120px; margin: -60px; }
.mon-radar-ring--3 { width: 60px; height: 60px; margin: -30px; }
.mon-radar-sweep {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90px;
	height: 2px;
	transform-origin: 0 50%;
	background: linear-gradient(90deg, rgba(0, 255, 136, 0.6), transparent);
	animation: monRadarSweep 4s linear infinite;
	z-index: 3;
}
@keyframes monRadarSweep {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}
.mon-radar-center {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	margin: -3px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 8px #00ff88;
	z-index: 4;
}

/* ── Status LED indicators ── */
.mon-leds {
	position: absolute;
	top: 15%;
	right: 10%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 5;
}
.mon-led {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background: rgba(10, 10, 15, 0.7);
	border: 1px solid rgba(0, 255, 136, 0.1);
	border-radius: 12px;
	backdrop-filter: blur(6px);
}
.mon-led-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88;
}
.mon-led--1 .mon-led-dot { animation: monLedBlink 2s ease-in-out infinite; }
.mon-led--2 .mon-led-dot { animation: monLedBlink 2s ease-in-out infinite 0.6s; }
.mon-led--3 .mon-led-dot { animation: monLedBlink 2s ease-in-out infinite 1.2s; }
@keyframes monLedBlink {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}
.mon-led::after {
	content: '';
	width: 30px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
}
.mon-led--1::after { background: linear-gradient(90deg, rgba(0, 255, 136, 0.5) 85%, transparent 85%); }
.mon-led--2::after { background: linear-gradient(90deg, rgba(0, 255, 136, 0.5) 70%, transparent 70%); }
.mon-led--3::after { background: linear-gradient(90deg, rgba(0, 255, 136, 0.5) 95%, transparent 95%); }

/* ── Bottom status bar ── */
.mon-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}
.mon-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: monStatusPulse 2s ease-in-out infinite;
}
.mon-status-bar {
	width: 40px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}
.mon-status-bar::after {
	content: '';
	display: block;
	width: 80%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	animation: monBarFill 3s ease-in-out infinite;
}
.mon-status-tag {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 255, 136, 0.7);
}
.mon-status-tag::after { content: 'ALL UP'; }
@keyframes monStatusPulse {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}
@keyframes monBarFill {
	0%, 100% { width: 70%; }
	50% { width: 95%; }
}

/* ── Monitor Types Comparison ── */
.comparison-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.monitor-types-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-top: 48px;
}
.monitor-type-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.monitor-type-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card);
}
.monitor-type-card--advanced {
	border-color: rgba(0, 153, 255, 0.25);
}
.monitor-type-card--advanced:hover {
	border-color: rgba(0, 153, 255, 0.45);
	box-shadow: 0 8px 32px rgba(0, 153, 255, 0.15);
}
.monitor-type-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 255, 136, 0.08);
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: var(--radius-md);
	color: var(--quantum-primary);
	margin-bottom: 20px;
}
.monitor-type-card--advanced .monitor-type-icon {
	background: rgba(0, 153, 255, 0.08);
	border-color: rgba(0, 153, 255, 0.15);
	color: var(--quantum-secondary);
}
.monitor-type-icon svg { width: 24px; height: 24px; }
.monitor-type-card h3 {
	font-family: var(--font-primary);
	font-size: 1.35rem;
	margin-bottom: 12px;
}
.monitor-type-desc {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 24px;
}
.monitor-type-how {
	background: rgba(0, 255, 136, 0.04);
	border: 1px solid rgba(0, 255, 136, 0.08);
	border-radius: var(--radius-sm);
	padding: 16px;
	margin-bottom: 20px;
}
.monitor-type-card--advanced .monitor-type-how {
	background: rgba(0, 153, 255, 0.04);
	border-color: rgba(0, 153, 255, 0.08);
}
.monitor-type-how-label {
	display: block;
	font-family: var(--font-primary);
	font-size: 0.7rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--quantum-primary);
	margin-bottom: 8px;
}
.monitor-type-card--advanced .monitor-type-how-label { color: var(--quantum-secondary); }
.monitor-type-how p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}
.monitor-type-best {
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
}
.monitor-type-best-label {
	font-family: var(--font-primary);
	font-size: 0.65rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--text-muted);
	white-space: nowrap;
}
.monitor-type-best span:last-child {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* ── Alert Chain ── */
.alert-section {
	padding: var(--spacing-2xl) 0;
}
.alert-chain {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 0;
	margin-top: 48px;
}
.alert-block {
	flex: 1;
	max-width: 320px;
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-md) var(--spacing-md);
	text-align: center;
	backdrop-filter: blur(20px);
	position: relative;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.alert-block:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}
.alert-block--red { border-top: 3px solid #ff4d4d; }
.alert-block--amber { border-top: 3px solid #ffaa00; }
.alert-block--green { border-top: 3px solid #00ff88; }
.alert-block-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	border-radius: 50%;
}
.alert-block--red .alert-block-icon {
	background: rgba(255, 77, 77, 0.1);
	color: #ff4d4d;
}
.alert-block--amber .alert-block-icon {
	background: rgba(255, 170, 0, 0.1);
	color: #ffaa00;
}
.alert-block--green .alert-block-icon {
	background: rgba(0, 255, 136, 0.1);
	color: #00ff88;
}
.alert-block-icon svg { width: 24px; height: 24px; }
.alert-block h3 {
	font-family: var(--font-primary);
	font-size: 1.1rem;
	margin-bottom: 10px;
}
.alert-block p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}

/* ── Alert connectors (dashed animated lines) ── */
.alert-connector {
	display: flex;
	align-items: center;
	width: 60px;
	min-width: 40px;
	position: relative;
}
.alert-connector-line {
	width: 100%;
	height: 2px;
	background-image: repeating-linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.3) 0px,
		rgba(255, 255, 255, 0.3) 6px,
		transparent 6px,
		transparent 12px
	);
	position: relative;
	animation: monDashFlow 1.5s linear infinite;
}
@keyframes monDashFlow {
	from { background-position: 0 0; }
	to { background-position: 12px 0; }
}

/* ── Capabilities Grid ── */
.capabilities-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.capabilities-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.capability-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.capability-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card);
}
.capability-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 255, 136, 0.08);
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: var(--radius-md);
	color: var(--quantum-primary);
	margin-bottom: 16px;
}
.capability-icon svg { width: 22px; height: 22px; }
.capability-card h3 {
	font-family: var(--font-primary);
	font-size: 1.1rem;
	margin-bottom: 8px;
}
.capability-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* ── Monitoring Responsive ── */
@media (max-width: 768px) {
	.mon-heartbeat { width: 240px; height: 240px; }
	.mon-pulse-line { width: 200px; margin-left: -100px; }
	.mon-radar { width: 140px; height: 140px; margin: -70px; }
	.mon-radar-ring--1 { width: 140px; height: 140px; margin: -70px; }
	.mon-radar-ring--2 { width: 95px; height: 95px; margin: -47.5px; }
	.mon-radar-ring--3 { width: 50px; height: 50px; margin: -25px; }
	.mon-radar-sweep { width: 70px; }
	.mon-leds { top: 8%; right: 5%; }
	.monitor-types-grid { grid-template-columns: 1fr; }
	.monitor-type-card { text-align: center; }
	.monitor-type-best { justify-content: center; }
	.alert-chain { flex-direction: column; align-items: stretch; }
	.alert-chain .alert-connector { align-self: center; }
	.alert-block { max-width: 100%; }
	.alert-connector { width: auto; height: 40px; min-width: unset; }
	.alert-connector-line {
		width: 2px;
		height: 100%;
		background-image: repeating-linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.3) 0px,
			rgba(255, 255, 255, 0.3) 6px,
			transparent 6px,
			transparent 12px
		);
		animation: monDashFlowV 1.5s linear infinite;
	}
	@keyframes monDashFlowV {
		from { background-position: 0 0; }
		to { background-position: 0 12px; }
	}
	.monitor-type-icon { margin: 0 auto 20px; }
	.capabilities-grid { grid-template-columns: 1fr; }
	.capability-card { text-align: center; }
	.capability-icon { margin: 0 auto 16px; }
}
/* ── Monitoring RTL ── */
@keyframes monDashFlowRtl {
	from { background-position: 0 0; }
	to { background-position: -12px 0; }
}
[dir="rtl"] .alert-connector-line {
	animation-name: monDashFlowRtl;
}

/* ══ Page: DNS ══ */
/* ── DNS Globe Hero ── */
.dns-hero-visual { display: flex; align-items: center; justify-content: center; }

.dns-globe {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.dns-globe-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.1) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.08) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.1) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: dnsGlow 6s ease-in-out infinite;
}
@keyframes dnsGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

/* ── Globe wireframe rings ── */
.dns-globe-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 1.5px solid rgba(0, 153, 255, 0.2);
	animation: dnsGlobeSpin 20s linear infinite;
}
.dns-globe-ring--equator {
	width: 200px;
	height: 200px;
	margin: -100px;
}
.dns-globe-ring--meridian {
	width: 200px;
	height: 200px;
	margin: -100px;
	transform: rotateY(60deg);
	animation: dnsGlobeSpinY 18s linear infinite;
}
.dns-globe-ring--meridian2 {
	width: 200px;
	height: 200px;
	margin: -100px;
	transform: rotateY(120deg);
	animation: dnsGlobeSpinY2 22s linear infinite;
}
.dns-globe-ring--tropic1 {
	width: 160px;
	height: 80px;
	margin: -40px 0 0 -80px;
	top: 35%;
	border-color: rgba(0, 153, 255, 0.12);
}
.dns-globe-ring--tropic2 {
	width: 160px;
	height: 80px;
	margin: -40px 0 0 -80px;
	top: 65%;
	border-color: rgba(0, 153, 255, 0.12);
}
@keyframes dnsGlobeSpin {
	from { transform: rotateX(75deg) rotateZ(0deg); }
	to { transform: rotateX(75deg) rotateZ(360deg); }
}
@keyframes dnsGlobeSpinY {
	from { transform: rotateY(60deg) rotateZ(0deg); }
	to { transform: rotateY(60deg) rotateZ(360deg); }
}
@keyframes dnsGlobeSpinY2 {
	from { transform: rotateY(120deg) rotateZ(0deg); }
	to { transform: rotateY(120deg) rotateZ(360deg); }
}

/* ── DNS resolution path lines ── */
.dns-path {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 0;
	transform-origin: 0 0;
	background: linear-gradient(180deg, rgba(0, 255, 136, 0.6), rgba(0, 153, 255, 0.3), transparent);
}
.dns-path--1 { transform: rotate(-30deg); animation: dnsPathGrow 3s ease-in-out infinite 0s; }
.dns-path--2 { transform: rotate(30deg); animation: dnsPathGrow 3s ease-in-out infinite 0.5s; }
.dns-path--3 { transform: rotate(90deg); animation: dnsPathGrow 3s ease-in-out infinite 1s; }
.dns-path--4 { transform: rotate(150deg); animation: dnsPathGrow 3s ease-in-out infinite 1.5s; }
.dns-path--5 { transform: rotate(210deg); animation: dnsPathGrow 3s ease-in-out infinite 2s; }
.dns-path--6 { transform: rotate(270deg); animation: dnsPathGrow 3s ease-in-out infinite 2.5s; }
@keyframes dnsPathGrow {
	0% { height: 0; opacity: 0; }
	30% { height: 110px; opacity: 0.8; }
	60% { height: 110px; opacity: 0.4; }
	100% { height: 0; opacity: 0; }
}

/* ── Endpoint dots at path tips ── */
.dns-endpoint {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 8px #00ff88, 0 0 16px rgba(0, 255, 136, 0.3);
	opacity: 0;
}
.dns-endpoint--1 { top: 7%; left: 27%; animation: dnsEndpointPulse 3s ease-in-out infinite 0.3s; }
.dns-endpoint--2 { top: 7%; right: 27%; animation: dnsEndpointPulse 3s ease-in-out infinite 0.8s; }
.dns-endpoint--3 { top: 50%; right: 5%; animation: dnsEndpointPulse 3s ease-in-out infinite 1.3s; }
.dns-endpoint--4 { bottom: 7%; right: 27%; animation: dnsEndpointPulse 3s ease-in-out infinite 1.8s; }
.dns-endpoint--5 { bottom: 7%; left: 27%; animation: dnsEndpointPulse 3s ease-in-out infinite 2.3s; }
.dns-endpoint--6 { top: 50%; left: 5%; animation: dnsEndpointPulse 3s ease-in-out infinite 2.8s; }
@keyframes dnsEndpointPulse {
	0%, 100% { opacity: 0; transform: scale(0.5); }
	30%, 60% { opacity: 1; transform: scale(1); }
}

/* ── Globe center core ── */
.dns-globe-core {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin: -8px;
	border-radius: 50%;
	background: radial-gradient(circle, #0099ff, rgba(0, 153, 255, 0.4));
	box-shadow: 0 0 20px rgba(0, 153, 255, 0.5), 0 0 40px rgba(0, 153, 255, 0.2);
	animation: dnsCorePulse 3s ease-in-out infinite;
	z-index: 4;
}
@keyframes dnsCorePulse {
	0%, 100% { box-shadow: 0 0 20px rgba(0, 153, 255, 0.5), 0 0 40px rgba(0, 153, 255, 0.2); transform: scale(1); }
	50% { box-shadow: 0 0 30px rgba(0, 153, 255, 0.7), 0 0 60px rgba(0, 153, 255, 0.3); transform: scale(1.15); }
}

/* ── Query tag ── */
.dns-query-tag {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 153, 255, 0.15);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 153, 255, 0.7);
	white-space: nowrap;
}
.dns-query-tag::after { content: 'DNS RESOLVING'; }

/* ── Record Types Grid ── */
.dns-records-section {
	padding: var(--spacing-2xl) 0;
}
.dns-records-subtitle {
	text-align: center;
	color: var(--text-secondary);
	max-width: 640px;
	margin: 12px auto 48px;
	line-height: 1.6;
}
.dns-records-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.dns-record-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-md);
	text-align: center;
	backdrop-filter: blur(20px);
	transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.dns-record-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card);
}
.dns-record-card--editable {
	border-color: rgba(0, 255, 136, 0.15);
}
.dns-record-card--editable:hover {
	border-color: rgba(0, 255, 136, 0.35);
	box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
}
.dns-record-card--readonly {
	border-color: rgba(255, 255, 255, 0.06);
	opacity: 0.6;
}
.dns-record-card--readonly:hover {
	opacity: 0.8;
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: 0 8px 32px rgba(255, 255, 255, 0.03);
}
.dns-record-type {
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: 2px;
	line-height: 1;
}
.dns-record-card--editable .dns-record-type {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.dns-record-card--readonly .dns-record-type {
	color: var(--text-muted);
}
.dns-record-desc {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}
.dns-record-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: auto;
}
.dns-record-badge--editable {
	background: rgba(0, 255, 136, 0.1);
	color: #00ff88;
	border: 1px solid rgba(0, 255, 136, 0.2);
}
.dns-record-badge--readonly {
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-muted);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Management Quad Grid ── */
.dns-quad-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.dns-quad-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.dns-quad-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.dns-quad-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card);
	border-color: rgba(0, 255, 136, 0.2);
}
.dns-quad-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 255, 136, 0.08);
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: var(--radius-md);
	color: var(--quantum-primary);
	margin-bottom: 20px;
}
.dns-quad-icon svg { width: 24px; height: 24px; }
.dns-quad-card h3 {
	font-family: var(--font-primary);
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.dns-quad-desc {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 16px;
}
.dns-quad-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.dns-quad-list li {
	position: relative;
	padding-left: 20px;
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
}
.dns-quad-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(0, 255, 136, 0.3);
	border: 1px solid rgba(0, 255, 136, 0.5);
}

/* ── Security Strip ── */
.dns-security-strip {
	padding: var(--spacing-2xl) 0;
}
.dns-strip-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 48px;
}
.dns-strip-item {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-md);
	text-align: center;
	backdrop-filter: blur(20px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.dns-strip-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
	border-color: rgba(0, 153, 255, 0.25);
}
.dns-strip-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 153, 255, 0.08);
	border: 1px solid rgba(0, 153, 255, 0.15);
	border-radius: 50%;
	color: var(--quantum-secondary);
}
.dns-strip-icon svg { width: 22px; height: 22px; }
.dns-strip-label {
	font-family: var(--font-primary);
	font-size: 0.95rem;
	font-weight: 700;
}
.dns-strip-detail {
	color: var(--text-secondary);
	font-size: 0.85rem;
	line-height: 1.4;
}

/* ── DNS Responsive ── */
@media (max-width: 768px) {
	.dns-globe { width: 240px; height: 240px; }
	.dns-globe-ring--equator,
	.dns-globe-ring--meridian,
	.dns-globe-ring--meridian2 { width: 160px; height: 160px; margin: -80px; }
	.dns-globe-ring--tropic1,
	.dns-globe-ring--tropic2 { width: 128px; height: 64px; margin: -32px 0 0 -64px; }
	.dns-records-grid { grid-template-columns: 1fr; }
	.dns-record-card { text-align: center; }
	.dns-quad-grid { grid-template-columns: 1fr; }
	.dns-quad-card { text-align: center; }
	.dns-quad-icon { margin-inline: auto; }
	.dns-quad-list li,
	[dir="rtl"] .dns-quad-list li { padding-left: 0; padding-right: 0; }
	.dns-quad-list li::before { display: none; }
	.dns-quad-list li + li { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 8px; }
	.dns-strip-grid { grid-template-columns: 1fr; }
	.dns-strip-item { text-align: center; }
}
@media (min-width: 769px) and (max-width: 1024px) {
	.dns-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── DNS RTL ── */
[dir="rtl"] .dns-quad-list li {
	padding-left: 0; padding-right: 20px;
}
[dir="rtl"] .dns-quad-list li::before {
	left: auto; right: 0;
}
@media (max-width: 768px) {
	[dir="rtl"] .dns-quad-list li { padding-right: 0; }
}

/* ══ Page: WordPress ══ */
/* ── WordPress Gear Hero ── */
.wp-hero-visual { display: flex; align-items: center; justify-content: center; }

.wp-gears {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.wp-gears-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.1) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.1) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: wpGearsGlow 6s ease-in-out infinite;
}
@keyframes wpGearsGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

.wp-gear {
	position: absolute;
	color: rgba(0, 255, 136, 0.35);
}
.wp-gear--main {
	width: 180px;
	height: 180px;
	top: 50%;
	left: 50%;
	margin: -90px;
	animation: wpGearSpin 20s linear infinite;
}
.wp-gear--small-tr {
	width: 90px;
	height: 90px;
	top: 18px;
	right: 10px;
	color: rgba(0, 153, 255, 0.35);
	animation: wpGearSpin 12s linear infinite reverse;
}
.wp-gear--small-bl {
	width: 90px;
	height: 90px;
	bottom: 18px;
	left: 10px;
	color: rgba(0, 153, 255, 0.35);
	animation: wpGearSpin 12s linear infinite reverse;
}
.wp-gear svg {
	width: 100%;
	height: 100%;
}

@keyframes wpGearSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.wp-center-w {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin: -20px;
	z-index: 6;
	color: #00ff88;
	animation: wpWPulse 3s ease-in-out infinite;
}
@keyframes wpWPulse {
	0%, 100% { opacity: 0.8; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.1); }
}

.wp-pulse-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	margin: -40px;
	border-radius: 50%;
	border: 2px solid rgba(0, 255, 136, 0.2);
	z-index: 5;
	animation: wpPulseRing 3s ease-in-out infinite;
}
@keyframes wpPulseRing {
	0%, 100% { transform: scale(1); opacity: 0.5; border-color: rgba(0, 255, 136, 0.2); }
	50% { transform: scale(1.3); opacity: 0.15; border-color: rgba(0, 255, 136, 0.4); }
}

/* ── Toolkit Section ── */
.toolkit-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.toolkit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.toolkit-column {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.toolkit-column:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card);
}
.toolkit-column--optimize {
	border-color: rgba(0, 255, 136, 0.2);
}
.toolkit-column--optimize:hover {
	border-color: rgba(0, 255, 136, 0.4);
	box-shadow: 0 0 30px rgba(0, 255, 136, 0.08);
}
.toolkit-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.toolkit-icon {
	color: var(--quantum-primary);
	opacity: 0.85;
	flex-shrink: 0;
}
.toolkit-header h3 {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	margin: 0;
}
.toolkit-items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.toolkit-items li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.4;
}
.toolkit-items li svg {
	color: var(--quantum-primary);
	flex-shrink: 0;
	opacity: 0.7;
}

/* ── Performance Spotlight (WordPress) ── */
.perf-section {
	padding: var(--spacing-2xl) 0;
}
.perf-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-top: 48px;
}
.perf-text p {
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 20px;
}
.perf-text .btn {
	margin-top: 12px;
}
.perf-visual {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.perf-gauge {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.perf-gauge-arc {
	position: relative;
}
.perf-needle {
	transform-origin: 100px 110px;
	animation: wpNeedleSweep 3s ease-out forwards;
}
@keyframes wpNeedleSweep {
	from { transform: rotate(-60deg); opacity: 0; }
	to { transform: rotate(0deg); opacity: 1; }
}
.perf-score {
	font-family: var(--font-primary);
	font-size: 2.5rem;
	font-weight: 700;
	color: #00ff88;
	text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
	margin-top: -10px;
}
.perf-metrics {
	display: flex;
	gap: 32px;
}
.perf-metric {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 12px 20px;
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	backdrop-filter: blur(10px);
}
.perf-metric-val {
	font-family: var(--font-primary);
	font-size: 1.1rem;
	font-weight: 700;
	color: #00ff88;
}
.perf-metric-label {
	font-size: 0.75rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ── Object Cache Strip ── */
.cache-strip {
	padding: var(--spacing-lg) 0;
	background: var(--bg-primary);
	border-top: 2px solid rgba(0, 255, 136, 0.2);
	border-bottom: 2px solid rgba(0, 255, 136, 0.2);
	background-image: linear-gradient(180deg, rgba(0, 255, 136, 0.03) 0%, transparent 100%);
}
.cache-strip-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 64px;
}
.cache-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.cache-stat-val {
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 700;
	color: #00ff88;
	text-shadow: 0 0 16px rgba(0, 255, 136, 0.25);
}
.cache-stat-label {
	font-size: 0.8rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

/* ── WordPress Responsive ── */
@media (max-width: 768px) {
	.wp-gears { width: 240px; height: 240px; }
	.wp-gear--main { width: 140px; height: 140px; margin: -70px; }
	.wp-gear--small-tr { width: 70px; height: 70px; top: 15px; right: 8px; }
	.wp-gear--small-bl { width: 70px; height: 70px; bottom: 15px; left: 8px; }
	.toolkit-grid { grid-template-columns: 1fr; }
	.toolkit-card { text-align: center; }
	.toolkit-card ul { text-align: start; display: inline-block; }
	.perf-grid { grid-template-columns: 1fr; }
	.perf-text { text-align: center; }
	.perf-visual { margin-top: 24px; }
	.perf-metrics { gap: 16px; justify-content: center; flex-wrap: wrap; }
	.perf-metric { padding: 10px 14px; }
	.cache-strip-inner { flex-direction: column; gap: 24px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
	.toolkit-grid { grid-template-columns: 1fr; }
	.perf-grid { grid-template-columns: 1fr; }
}

/* ══ Page: Staging ══ */
/* ── Branch/Merge Hero Animation ── */
.stage-hero-visual { display: flex; align-items: center; justify-content: center; }

.stage-branch-anim {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.stage-branch-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.1) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.08) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.06) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: stageGlow 6s ease-in-out infinite;
}
@keyframes stageGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

/* ── Branch lines ── */
.stage-line {
	position: absolute;
	background: rgba(0, 255, 136, 0.15);
	border-radius: 2px;
}
.stage-line--main {
	width: 3px;
	height: 260px;
	top: 20px;
	left: 50%;
	margin-left: -1.5px;
	background: linear-gradient(180deg, rgba(0, 255, 136, 0.3), rgba(0, 255, 136, 0.1));
}
.stage-line--branch1 {
	width: 80px;
	height: 2px;
	top: 80px;
	left: calc(50% - 80px);
	background: linear-gradient(90deg, rgba(0, 153, 255, 0.3), rgba(0, 255, 136, 0.15));
	transform: rotate(-25deg);
	transform-origin: right center;
	animation: stageBranch1 4s ease-in-out infinite;
}
.stage-line--branch2 {
	width: 80px;
	height: 2px;
	top: 140px;
	left: calc(50% + 0px);
	background: linear-gradient(90deg, rgba(0, 255, 136, 0.15), rgba(255, 0, 102, 0.3));
	transform: rotate(25deg);
	transform-origin: left center;
	animation: stageBranch2 4.5s ease-in-out infinite;
}
.stage-line--merge1 {
	width: 80px;
	height: 2px;
	top: 160px;
	left: calc(50% - 80px);
	background: linear-gradient(90deg, rgba(0, 153, 255, 0.2), rgba(0, 255, 136, 0.2));
	transform: rotate(25deg);
	transform-origin: right center;
	animation: stageMerge1 4s ease-in-out infinite 2s;
}
.stage-line--merge2 {
	width: 80px;
	height: 2px;
	top: 220px;
	left: calc(50% + 0px);
	background: linear-gradient(90deg, rgba(0, 255, 136, 0.2), rgba(255, 0, 102, 0.2));
	transform: rotate(-25deg);
	transform-origin: left center;
	animation: stageMerge2 4.5s ease-in-out infinite 2s;
}

@keyframes stageBranch1 {
	0%, 100% { opacity: 0.4; width: 70px; }
	50% { opacity: 1; width: 85px; }
}
@keyframes stageBranch2 {
	0%, 100% { opacity: 0.4; width: 70px; }
	50% { opacity: 1; width: 85px; }
}
@keyframes stageMerge1 {
	0%, 100% { opacity: 0.3; width: 65px; }
	50% { opacity: 0.8; width: 80px; }
}
@keyframes stageMerge2 {
	0%, 100% { opacity: 0.3; width: 65px; }
	50% { opacity: 0.8; width: 80px; }
}

/* ── Branch nodes ── */
.stage-node {
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid rgba(0, 255, 136, 0.5);
	background: var(--bg-primary, #0a0a0f);
	z-index: 3;
}
.stage-node--1 {
	top: 20px;
	left: 50%;
	margin-left: -6px;
	border-color: rgba(0, 255, 136, 0.7);
	animation: stageNodePulse 3s ease-in-out infinite;
}
.stage-node--2 {
	top: 70px;
	left: calc(50% - 70px);
	border-color: rgba(0, 153, 255, 0.7);
	animation: stageNodePulse 3s ease-in-out infinite 0.4s;
}
.stage-node--3 {
	top: 100px;
	left: 50%;
	margin-left: -6px;
	border-color: rgba(0, 255, 136, 0.5);
	animation: stageNodePulse 3s ease-in-out infinite 0.8s;
}
.stage-node--4 {
	top: 140px;
	left: calc(50% + 60px);
	border-color: rgba(255, 0, 102, 0.7);
	animation: stageNodePulse 3s ease-in-out infinite 1.2s;
}
.stage-node--5 {
	top: 170px;
	left: calc(50% - 55px);
	border-color: rgba(0, 153, 255, 0.5);
	animation: stageNodePulse 3s ease-in-out infinite 1.6s;
}
.stage-node--6 {
	top: 200px;
	left: 50%;
	margin-left: -6px;
	border-color: rgba(0, 255, 136, 0.6);
	animation: stageNodePulse 3s ease-in-out infinite 2s;
}
.stage-node--7 {
	top: 260px;
	left: calc(50% + 50px);
	border-color: rgba(255, 0, 102, 0.5);
	animation: stageNodePulse 3s ease-in-out infinite 2.4s;
}

@keyframes stageNodePulse {
	0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
	50% { transform: scale(1.2); box-shadow: 0 0 12px 3px rgba(0, 255, 136, 0.2); }
}

/* ── Code brackets ── */
.stage-bracket {
	position: absolute;
	font-family: var(--font-primary, "Orbitron", monospace);
	font-size: 0.65rem;
	letter-spacing: 1px;
	z-index: 4;
	opacity: 0;
	animation: stageBracketFade 5s ease-in-out infinite;
}
.stage-bracket--open {
	top: 55px;
	left: calc(50% - 100px);
	color: rgba(0, 153, 255, 0.6);
	animation-delay: 0s;
}
.stage-bracket--close {
	top: 180px;
	left: calc(50% + 75px);
	color: rgba(255, 0, 102, 0.5);
	animation-delay: 1.5s;
}
.stage-bracket--fn {
	top: 240px;
	left: calc(50% - 90px);
	color: rgba(0, 255, 136, 0.5);
	animation-delay: 3s;
}

@keyframes stageBracketFade {
	0%, 100% { opacity: 0; transform: translateY(5px); }
	30%, 70% { opacity: 1; transform: translateY(0); }
}

/* ── Pulse particles ── */
.stage-pulse {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	z-index: 3;
}
.stage-pulse--1 {
	background: #00ff88;
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
	animation: stagePulseTravel1 4s ease-in-out infinite;
}
.stage-pulse--2 {
	background: #0099ff;
	box-shadow: 0 0 8px rgba(0, 153, 255, 0.6);
	animation: stagePulseTravel2 5s ease-in-out infinite 1s;
}
.stage-pulse--3 {
	background: #ff0066;
	box-shadow: 0 0 8px rgba(255, 0, 102, 0.6);
	animation: stagePulseTravel3 4.5s ease-in-out infinite 2s;
}

@keyframes stagePulseTravel1 {
	0% { top: 20px; left: calc(50% - 3px); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { top: 270px; left: calc(50% - 3px); opacity: 0; }
}
@keyframes stagePulseTravel2 {
	0% { top: 80px; left: calc(50% - 3px); opacity: 0; }
	10% { opacity: 1; }
	30% { top: 70px; left: calc(50% - 73px); }
	70% { top: 170px; left: calc(50% - 55px); }
	90% { opacity: 1; }
	100% { top: 200px; left: calc(50% - 3px); opacity: 0; }
}
@keyframes stagePulseTravel3 {
	0% { top: 100px; left: calc(50% - 3px); opacity: 0; }
	10% { opacity: 1; }
	30% { top: 140px; left: calc(50% + 57px); }
	70% { top: 220px; left: calc(50% + 47px); }
	90% { opacity: 1; }
	100% { top: 260px; left: calc(50% - 3px); opacity: 0; }
}

/* ── Status tag ── */
.stage-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}
.stage-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: stageLedPulse 2s ease-in-out infinite;
}
.stage-status-tag {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 255, 136, 0.7);
}
.stage-status-tag::after { content: 'STAGING'; }

@keyframes stageLedPulse {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}

/* ── Deploy Actions Section ── */
.stage-deploy-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.stage-deploy-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.stage-deploy-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.stage-deploy-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-card);
	border-color: rgba(0, 255, 136, 0.2);
}
.stage-deploy-card--accent {
	border-color: rgba(0, 255, 136, 0.3);
}
.stage-deploy-card--accent:hover {
	border-color: rgba(0, 255, 136, 0.5);
	box-shadow: var(--shadow-quantum);
}
.stage-deploy-icon {
	width: 48px;
	height: 48px;
	color: var(--quantum-primary);
	margin-bottom: 20px;
	opacity: 0.8;
}
.stage-deploy-icon svg {
	width: 100%;
	height: 100%;
}
.stage-deploy-card h3 {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	margin-bottom: 12px;
	color: var(--text-primary);
}
.stage-deploy-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
}
.stage-deploy-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.stage-deploy-list li {
	color: var(--text-secondary);
	font-size: 0.9rem;
	padding-left: 24px;
	position: relative;
	line-height: 1.4;
}
.stage-deploy-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--quantum-primary);
	opacity: 0.5;
}

/* ── Tool Arsenal Section ── */
.stage-arsenal-section {
	padding: var(--spacing-2xl) 0;
}
.stage-arsenal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 48px;
}
.stage-arsenal-col {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-md) var(--spacing-lg);
	backdrop-filter: blur(20px);
}
.stage-arsenal-heading {
	font-family: var(--font-primary);
	font-size: 1.1rem;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.stage-arsenal-heading svg {
	color: var(--quantum-primary);
	flex-shrink: 0;
}
.stage-arsenal-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.stage-arsenal-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.stage-arsenal-item svg {
	flex-shrink: 0;
	color: var(--quantum-primary);
}
.stage-arsenal-item span {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.4;
}

/* ── Development Stack Section ── */
.stage-stack-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.stage-stack-strip {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 48px;
}
.stage-stack-badge {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(20px);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.stage-stack-badge:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 255, 136, 0.2);
	box-shadow: var(--shadow-card);
}
.stage-stack-icon {
	width: 36px;
	height: 36px;
	color: var(--quantum-primary);
	opacity: 0.8;
}
.stage-stack-icon svg {
	width: 100%;
	height: 100%;
}
.stage-stack-badge span {
	font-family: var(--font-primary);
	font-size: 0.85rem;
	color: var(--text-primary);
	letter-spacing: 0.3px;
	white-space: nowrap;
}

/* ── Staging Responsive ── */
@media (max-width: 768px) {
	.stage-branch-anim { width: 240px; height: 240px; }
	.stage-line--main { height: 210px; }
	.stage-line--branch1, .stage-line--branch2,
	.stage-line--merge1, .stage-line--merge2 { width: 60px; }
	.stage-node--2 { left: calc(50% - 55px); }
	.stage-node--4 { left: calc(50% + 45px); }
	.stage-node--5 { left: calc(50% - 40px); }
	.stage-node--7 { left: calc(50% + 35px); }
	.stage-deploy-grid { grid-template-columns: 1fr; }
	.stage-deploy-card { text-align: center; }
	.stage-deploy-icon { margin: 0 auto 20px; }
	.stage-deploy-list { text-align: start; }
	.stage-arsenal-grid { grid-template-columns: 1fr; }
	.stage-arsenal-card { text-align: center; }
	.stage-stack-strip { flex-direction: column; align-items: center; }
	.stage-stack-badge { width: 100%; max-width: 320px; justify-content: center; }
}
/* ── Staging RTL ── */
[dir="rtl"] .stage-deploy-list li {
	padding-left: 0; padding-right: 24px;
}
[dir="rtl"] .stage-deploy-list li::before {
	left: auto; right: 0;
}

/* ══ Page: SSL ══ */
/* ── SSL Padlock Hero ── */
.ssl-hero-visual { display: flex; align-items: center; justify-content: center; }

.ssl-padlock {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.ssl-padlock-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.12) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.08) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.06) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: sslGlow 6s ease-in-out infinite;
}
@keyframes sslGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

/* ── Padlock body ── */
.ssl-padlock-body {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
}

.ssl-padlock-shackle {
	width: 60px;
	height: 40px;
	border: 4px solid rgba(0, 255, 136, 0.5);
	border-bottom: none;
	border-radius: 30px 30px 0 0;
	margin: 0 auto;
	position: relative;
	animation: sslShackle 4s ease-in-out infinite;
}
@keyframes sslShackle {
	0%, 100% { transform: translateY(0); border-color: rgba(0, 255, 136, 0.5); }
	25% { transform: translateY(-6px); border-color: rgba(0, 255, 136, 0.8); }
	50% { transform: translateY(0); border-color: rgba(0, 255, 136, 0.5); }
}

.ssl-padlock-face {
	width: 80px;
	height: 60px;
	background: rgba(26, 26, 46, 0.9);
	border: 2px solid rgba(0, 255, 136, 0.3);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 30px rgba(0, 255, 136, 0.1), inset 0 0 20px rgba(0, 255, 136, 0.03);
}

.ssl-keyhole {
	width: 12px;
	height: 12px;
	background: #00ff88;
	border-radius: 50%;
	position: relative;
	box-shadow: 0 0 12px rgba(0, 255, 136, 0.6), 0 0 30px rgba(0, 255, 136, 0.2);
	animation: sslKeyholePulse 2.5s ease-in-out infinite;
}
.ssl-keyhole::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 14px;
	background: #00ff88;
	border-radius: 0 0 3px 3px;
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}
@keyframes sslKeyholePulse {
	0%, 100% { box-shadow: 0 0 12px rgba(0, 255, 136, 0.6), 0 0 30px rgba(0, 255, 136, 0.2); }
	50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 50px rgba(0, 255, 136, 0.3); }
}

/* ── Rotating gears ── */
.ssl-gear {
	position: absolute;
	color: rgba(0, 153, 255, 0.35);
	z-index: 3;
}
.ssl-gear--1 {
	top: 30px;
	right: 30px;
	animation: sslGearSpin 12s linear infinite;
}
.ssl-gear--2 {
	bottom: 50px;
	left: 25px;
	animation: sslGearSpin 9s linear infinite reverse;
}
@keyframes sslGearSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* ── Certificate ribbon ── */
.ssl-ribbon {
	position: absolute;
	bottom: 40px;
	right: 40px;
	z-index: 5;
	animation: sslRibbonFloat 3s ease-in-out infinite;
}
.ssl-ribbon-body {
	width: 38px;
	height: 38px;
	background: rgba(10, 10, 15, 0.9);
	border: 1px solid rgba(0, 255, 136, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00ff88;
	box-shadow: 0 0 16px rgba(0, 255, 136, 0.15);
}
.ssl-ribbon-tail {
	position: absolute;
	bottom: -12px;
	width: 8px;
	height: 14px;
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 153, 255, 0.2));
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.ssl-ribbon-tail--l { left: 8px; transform: rotate(-10deg); }
.ssl-ribbon-tail--r { right: 8px; transform: rotate(10deg); }
@keyframes sslRibbonFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

/* ── Orbit ring ── */
.ssl-orbit {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 220px;
	height: 220px;
	margin: -110px;
	border-radius: 50%;
	border: 1px dashed rgba(0, 255, 136, 0.1);
	animation: sslOrbitSpin 25s linear infinite;
}
@keyframes sslOrbitSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* ── Status indicator ── */
.ssl-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}
.ssl-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: sslLedPulse 2s ease-in-out infinite;
}
.ssl-status-bar {
	width: 40px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}
.ssl-status-bar::after {
	content: '';
	display: block;
	width: 80%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	animation: sslBarFill 3s ease-in-out infinite;
}
.ssl-status-tag {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 255, 136, 0.7);
}
.ssl-status-tag::after { content: 'HTTPS'; }

@keyframes sslLedPulse {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}
@keyframes sslBarFill {
	0%, 100% { width: 70%; }
	50% { width: 95%; }
}

/* ── Certificate Lifecycle Timeline ── */
.ssl-timeline-section {
	padding: var(--spacing-2xl) 0;
}
.ssl-timeline {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	margin-top: 60px;
	padding: 0 20px;
}
.ssl-timeline-line {
	position: absolute;
	top: 28px;
	left: 80px;
	right: 80px;
	height: 2px;
	background: linear-gradient(90deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.4), rgba(0, 153, 255, 0.4), rgba(0, 153, 255, 0.1));
	z-index: 0;
}
.ssl-timeline-line::after {
	content: '';
	position: absolute;
	top: -3px;
	right: -8px;
	width: 0;
	height: 0;
	border-left: 10px solid rgba(0, 153, 255, 0.4);
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}
.ssl-timeline-step {
	flex: 1;
	text-align: center;
	position: relative;
	z-index: 1;
	max-width: 220px;
}
.ssl-timeline-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--bg-card);
	border: 2px solid rgba(0, 255, 136, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	color: var(--quantum-primary);
	box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
	transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ssl-timeline-icon svg { width: 24px; height: 24px; }
.ssl-timeline-step:hover .ssl-timeline-icon {
	transform: scale(1.1);
	border-color: rgba(0, 255, 136, 0.6);
	box-shadow: 0 0 30px rgba(0, 255, 136, 0.25);
}
.ssl-timeline-number {
	font-family: var(--font-primary);
	font-size: 0.75rem;
	color: var(--quantum-secondary);
	letter-spacing: 2px;
	margin-bottom: 8px;
}
.ssl-timeline-step-title {
	font-family: var(--font-primary);
	font-size: 1.05rem;
	margin-bottom: 8px;
	color: var(--text-primary);
}
.ssl-timeline-step-desc {
	color: var(--text-secondary);
	font-size: 0.85rem;
	line-height: 1.6;
	margin: 0;
}

/* ── Feature Cards (3-col) ── */
.ssl-features-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.ssl-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.ssl-feature-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.ssl-feature-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 255, 136, 0.25);
	box-shadow: var(--shadow-card);
}
.ssl-feature-icon {
	color: var(--quantum-primary);
	margin-bottom: 16px;
	width: 32px;
	height: 32px;
}
.ssl-feature-icon svg { width: 32px; height: 32px; }
.ssl-feature-card h3 {
	font-family: var(--font-primary);
	font-size: 1.15rem;
	margin-bottom: 10px;
}
.ssl-feature-card p {
	color: var(--text-secondary);
	font-size: 0.92rem;
	line-height: 1.6;
	margin: 0 0 16px;
}
.ssl-feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ssl-feature-list li {
	color: var(--text-secondary);
	font-size: 0.85rem;
	padding: 6px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	gap: 8px;
}
.ssl-feature-list li::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	flex-shrink: 0;
}

/* ── Domain Status Dashboard ── */
.ssl-dashboard-section {
	padding: var(--spacing-2xl) 0;
}
.ssl-dashboard-subtitle {
	text-align: center;
	color: var(--text-secondary);
	font-size: 1.05rem;
	margin-top: -16px;
	margin-bottom: 40px;
}
.ssl-dashboard {
	max-width: 800px;
	margin: 0 auto;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(0, 255, 136, 0.03);
}
.ssl-dashboard-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: rgba(26, 26, 46, 0.95);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ssl-dashboard-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.ssl-dashboard-dot--red { background: #ff5f57; }
.ssl-dashboard-dot--yellow { background: #ffbd2e; }
.ssl-dashboard-dot--green { background: #28ca41; }
.ssl-dashboard-title-bar {
	margin-left: 8px;
	font-family: var(--font-primary);
	font-size: 0.7rem;
	letter-spacing: 1px;
	color: var(--text-muted);
	text-transform: uppercase;
}
.ssl-dashboard-body {
	background: rgba(10, 10, 15, 0.9);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.ssl-domain-card {
	display: grid;
	grid-template-columns: 100px 1fr 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 14px 18px;
	background: var(--bg-card);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-sm);
	transition: border-color 0.25s, box-shadow 0.25s;
}
.ssl-domain-card:hover {
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.ssl-domain-card--active:hover { border-color: rgba(0, 255, 136, 0.2); }
.ssl-domain-card--pending:hover { border-color: rgba(255, 189, 46, 0.2); }
.ssl-domain-card--expired:hover { border-color: rgba(255, 0, 102, 0.2); }

.ssl-domain-status {
	display: flex;
	align-items: center;
	gap: 8px;
}
.ssl-domain-led {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}
.ssl-domain-led--green {
	background: #00ff88;
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.5);
}
.ssl-domain-led--yellow {
	background: #ffbd2e;
	box-shadow: 0 0 6px rgba(255, 189, 46, 0.5);
	animation: sslLedBlink 1.5s ease-in-out infinite;
}
.ssl-domain-led--red {
	background: #ff0066;
	box-shadow: 0 0 6px rgba(255, 0, 102, 0.5);
}
@keyframes sslLedBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}
.ssl-domain-status-text {
	font-family: var(--font-primary);
	font-size: 0.72rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.ssl-domain-card--active .ssl-domain-status-text { color: #00ff88; }
.ssl-domain-card--pending .ssl-domain-status-text { color: #ffbd2e; }
.ssl-domain-card--expired .ssl-domain-status-text { color: #ff0066; }

.ssl-domain-name {
	font-family: var(--font-primary);
	font-size: 0.88rem;
	color: var(--text-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ssl-domain-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.ssl-domain-issuer {
	font-size: 0.75rem;
	color: var(--text-muted);
}
.ssl-domain-expiry {
	font-size: 0.78rem;
	color: var(--text-secondary);
}
.ssl-domain-actions {
	display: flex;
	gap: 8px;
}
.ssl-action-btn {
	padding: 4px 10px;
	font-size: 0.7rem;
	font-family: var(--font-primary);
	letter-spacing: 0.5px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-secondary);
	cursor: default;
	text-transform: uppercase;
	transition: background 0.2s, border-color 0.2s;
}
.ssl-action-btn:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}
.ssl-action-btn--primary {
	color: var(--quantum-primary);
	border-color: rgba(0, 255, 136, 0.2);
}
.ssl-action-btn--primary:hover {
	background: rgba(0, 255, 136, 0.08);
	border-color: rgba(0, 255, 136, 0.4);
}
.ssl-action-btn--danger {
	color: var(--quantum-accent);
	border-color: rgba(255, 0, 102, 0.2);
}
.ssl-action-btn--danger:hover {
	background: rgba(255, 0, 102, 0.08);
	border-color: rgba(255, 0, 102, 0.4);
}
.ssl-action-btn--disabled {
	color: rgba(255,255,255,0.35);
	border-color: rgba(255,255,255,0.08);
	cursor: default;
	font-style: italic;
}

/* ── SSL Responsive ── */
@media (max-width: 768px) {
	.ssl-padlock { width: 240px; height: 240px; }
	.ssl-orbit { width: 180px; height: 180px; margin: -90px; }
	.ssl-padlock-shackle { width: 48px; height: 32px; }
	.ssl-padlock-face { width: 64px; height: 48px; }
	.ssl-gear--1 { top: 20px; right: 15px; }
	.ssl-gear--1 svg { width: 30px; height: 30px; }
	.ssl-gear--2 { bottom: 35px; left: 10px; }
	.ssl-gear--2 svg { width: 22px; height: 22px; }
	.ssl-ribbon { bottom: 30px; right: 25px; }

	/* Timeline vertical on mobile */
	.ssl-timeline {
		flex-direction: column;
		gap: 32px;
		padding: 0;
	}
	.ssl-timeline-line {
		top: 28px;
		bottom: 28px;
		left: 28px;
		right: auto;
		width: 2px;
		height: auto;
	}
	.ssl-timeline-line::after {
		top: auto;
		bottom: -8px;
		right: auto;
		left: -3px;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		border-top: 10px solid rgba(0, 153, 255, 0.4);
		border-bottom: none;
	}
	.ssl-timeline-step {
		text-align: start;
		padding-inline-start: 72px;
		max-width: 100%;
	}
	.ssl-timeline-icon {
		position: absolute;
		left: 0;
		margin: 0;
	}

	/* Feature cards single column */
	.ssl-features-grid { grid-template-columns: 1fr; }
	.ssl-feature-card { text-align: center; }
	.ssl-feature-icon { margin: 0 auto 16px; }
	.ssl-feature-list { text-align: start; display: inline-block; }

	/* Dashboard cards stack */
	.ssl-domain-card {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
	}
	.ssl-domain-name { grid-column: 1 / -1; }
	.ssl-domain-actions { grid-column: 1 / -1; }
}
/* ── SSL RTL ── */
[dir="rtl"] .ssl-timeline-line::after {
	right: auto; left: -8px;
	border-left: none;
	border-right: 10px solid rgba(0, 153, 255, 0.4);
}
[dir="rtl"] .ssl-dashboard-title-bar {
	margin-left: 0; margin-right: 8px;
}
@media (max-width: 768px) {
	[dir="rtl"] .ssl-timeline-step {
		text-align: right;
		padding-left: 0;
		padding-right: 72px;
	}
	[dir="rtl"] .ssl-timeline-icon {
		left: auto;
		right: 0;
	}
	[dir="rtl"] .ssl-timeline-line {
		left: auto;
		right: 28px;
	}
	[dir="rtl"] .ssl-timeline-line::after {
		left: auto;
		right: -3px;
		border-right: 4px solid transparent;
		border-left: 4px solid transparent;
		border-top: 10px solid rgba(0, 153, 255, 0.4);
		border-bottom: none;
	}
}

/* ══ Page: Performance ══ */
/* ── Tachometer Hero ── */
.perf-hero-visual { display: flex; align-items: center; justify-content: center; }

.perf-tachometer {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.perf-tachometer-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.1) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.1) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: perfTachGlow 6s ease-in-out infinite;
}
@keyframes perfTachGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

.perf-gauge-svg {
	width: 240px;
	height: 160px;
}

.perf-tach-needle {
	transform-origin: 120px 140px;
	animation: perfNeedleSweep 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes perfNeedleSweep {
	0% { transform: rotate(-120deg); opacity: 0; }
	10% { opacity: 1; }
	100% { transform: rotate(0deg); opacity: 1; }
}

.perf-tach-score {
	position: absolute;
	bottom: 55px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}
.perf-tach-value {
	font-family: var(--font-primary);
	font-size: 1.4rem;
	font-weight: 700;
	color: #00ff88;
	text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
	letter-spacing: 4px;
}

/* Speed lines shooting right */
.perf-speed-line {
	position: absolute;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.4), transparent);
	opacity: 0;
}
.perf-speed-line--1 {
	width: 60px;
	top: 35%;
	right: -20px;
	animation: perfSpeedLine 3s ease-out infinite 0.5s;
}
.perf-speed-line--2 {
	width: 45px;
	top: 50%;
	right: -30px;
	animation: perfSpeedLine 3s ease-out infinite 1.2s;
}
.perf-speed-line--3 {
	width: 50px;
	top: 42%;
	right: -10px;
	animation: perfSpeedLine 3s ease-out infinite 2s;
}
@keyframes perfSpeedLine {
	0% { opacity: 0; transform: translateX(-20px); }
	20% { opacity: 0.7; }
	100% { opacity: 0; transform: translateX(40px); }
}

.perf-tach-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	margin: -100px;
	border-radius: 50%;
	border: 2px solid rgba(0, 255, 136, 0.1);
	z-index: -1;
	animation: perfTachPulse 3s ease-in-out infinite;
}
@keyframes perfTachPulse {
	0%, 100% { transform: scale(1); opacity: 0.4; }
	50% { transform: scale(1.15); opacity: 0.1; }
}

/* ── Cache Tier Chart ── */
.perf-tiers-section {
	padding: var(--spacing-2xl) 0;
}
.perf-tiers-subtitle {
	text-align: center;
	color: var(--text-secondary);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 16px auto 0;
}
.perf-tiers-chart {
	margin-top: 48px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.perf-tier {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 24px;
	align-items: center;
	padding: 16px 0;
}

.perf-tier-bar {
	height: 40px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
}
.perf-tier-bar-fill {
	height: 100%;
	border-radius: var(--radius-sm);
	animation: perfBarGrow 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	transform-origin: left center;
}
@keyframes perfBarGrow {
	from { width: 0 !important; }
}

.perf-tier--off .perf-tier-bar-fill {
	width: 20%;
	background: linear-gradient(90deg, rgba(122, 122, 149, 0.4), rgba(122, 122, 149, 0.2));
}
.perf-tier--basic .perf-tier-bar-fill {
	width: 45%;
	background: linear-gradient(90deg, rgba(0, 153, 255, 0.5), rgba(0, 153, 255, 0.2));
	animation-delay: 0.2s;
}
.perf-tier--balanced .perf-tier-bar-fill {
	width: 72%;
	background: linear-gradient(90deg, rgba(0, 200, 100, 0.5), rgba(0, 200, 100, 0.2));
	animation-delay: 0.4s;
}
.perf-tier--strict .perf-tier-bar-fill {
	width: 100%;
	background: linear-gradient(90deg, rgba(0, 255, 136, 0.6), rgba(0, 255, 136, 0.2));
	animation-delay: 0.6s;
}

.perf-tier-info h3 {
	font-family: var(--font-primary);
	font-size: 1.05rem;
	margin: 0 0 4px;
}
.perf-tier--off .perf-tier-info h3 { color: var(--text-muted); }
.perf-tier--basic .perf-tier-info h3 { color: #0099ff; }
.perf-tier--balanced .perf-tier-info h3 { color: #00c864; }
.perf-tier--strict .perf-tier-info h3 { color: #00ff88; }

.perf-tier-info p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}

/* ── Optimization Trio ── */
.perf-trio-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.perf-trio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.perf-trio-column {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.perf-trio-column:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-card);
}
.perf-trio-column--highlight {
	border-color: rgba(0, 255, 136, 0.2);
}
.perf-trio-column--highlight:hover {
	border-color: rgba(0, 255, 136, 0.4);
	box-shadow: 0 0 30px rgba(0, 255, 136, 0.08);
}
.perf-trio-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.perf-trio-icon {
	color: var(--quantum-primary);
	opacity: 0.85;
	flex-shrink: 0;
}
.perf-trio-header h3 {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	margin: 0;
}
.perf-trio-items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.perf-trio-items li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.4;
}
.perf-trio-items li svg {
	color: var(--quantum-primary);
	flex-shrink: 0;
	opacity: 0.7;
}

/* ── Redis Metrics Strip ── */
.perf-redis-strip {
	padding: var(--spacing-lg) 0;
	background: rgba(10, 10, 15, 0.95);
	border-top: 1px solid rgba(0, 255, 136, 0.15);
	border-bottom: 1px solid rgba(0, 255, 136, 0.15);
}
.perf-redis-items {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
}
.perf-redis-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 28px;
	color: var(--quantum-primary);
}
.perf-redis-badge svg {
	opacity: 0.7;
	flex-shrink: 0;
}
.perf-redis-label {
	font-family: var(--font-primary);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	white-space: nowrap;
}
.perf-redis-sep {
	width: 1px;
	height: 24px;
	background: rgba(255, 255, 255, 0.12);
	flex-shrink: 0;
}

/* ── Performance Responsive ── */
@media (max-width: 768px) {
	.perf-tachometer { width: 240px; height: 240px; }
	.perf-gauge-svg { width: 200px; height: 140px; }
	.perf-tach-score { bottom: 40px; }
	.perf-tach-value { font-size: 1.1rem; }
	.perf-speed-line { display: none; }
	.perf-tiers-chart { margin-top: 32px; }
	.perf-tier { grid-template-columns: 1fr; gap: 8px; }
	.perf-trio-grid { grid-template-columns: 1fr; }
	.perf-trio-column { text-align: center; }
	.perf-trio-header { justify-content: center; }
	.perf-trio-items { text-align: start; }
	.perf-redis-items { gap: 4px; }
	.perf-redis-badge { padding: 8px 14px; gap: 8px; }
	.perf-redis-label { font-size: 0.72rem; letter-spacing: 1px; }
	.perf-redis-sep { height: 18px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
	.perf-trio-grid { grid-template-columns: 1fr; }
}

/* ══ Page: Backups ══ */
/* ── Backup Vault Hero ── */
.backup-hero-visual { display: flex; align-items: center; justify-content: center; }

.backup-vault {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.backup-vault-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.1) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.1) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: backupGlow 6s ease-in-out infinite;
}
@keyframes backupGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

/* ── Concentric rings ── */
.backup-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
}
.backup-ring--1 {
	width: 280px;
	height: 280px;
	margin: -140px;
	border: 1px solid rgba(0, 255, 136, 0.08);
	animation: backupRingSpin 35s linear infinite;
}
.backup-ring--2 {
	width: 200px;
	height: 200px;
	margin: -100px;
	border: 1px dashed rgba(0, 255, 136, 0.12);
	animation: backupRingSpin 25s linear infinite reverse;
}
.backup-ring--3 {
	width: 120px;
	height: 120px;
	margin: -60px;
	border: 1px dotted rgba(0, 153, 255, 0.18);
	animation: backupRingSpin 18s linear infinite;
}
@keyframes backupRingSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* ── Orbiting data particles ── */
.backup-particle {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	z-index: 3;
}
.backup-particle--1, .backup-particle--3, .backup-particle--5 {
	background: #00ff88;
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.6), 0 0 16px rgba(0, 255, 136, 0.2);
}
.backup-particle--2, .backup-particle--4, .backup-particle--6 {
	background: #0099ff;
	box-shadow: 0 0 8px rgba(0, 153, 255, 0.6), 0 0 16px rgba(0, 153, 255, 0.2);
}

/* Outer ring particles */
.backup-particle--1 { animation: backupParticleOrbit1 35s linear infinite; }
.backup-particle--2 { animation: backupParticleOrbit2 35s linear infinite; }
/* Middle ring particles */
.backup-particle--3 { animation: backupParticleOrbit3 25s linear infinite; }
.backup-particle--4 { animation: backupParticleOrbit4 25s linear infinite; }
/* Inner ring particles */
.backup-particle--5 { animation: backupParticleOrbit5 18s linear infinite; }
.backup-particle--6 { animation: backupParticleOrbit6 18s linear infinite; }

@keyframes backupParticleOrbit1 {
	from { top: calc(50% - 140px - 4px); left: calc(50% - 4px); }
	25% { top: calc(50% - 4px); left: calc(50% + 140px - 4px); }
	50% { top: calc(50% + 140px - 4px); left: calc(50% - 4px); }
	75% { top: calc(50% - 4px); left: calc(50% - 140px - 4px); }
	to { top: calc(50% - 140px - 4px); left: calc(50% - 4px); }
}
@keyframes backupParticleOrbit2 {
	from { top: calc(50% + 140px - 4px); left: calc(50% - 4px); }
	25% { top: calc(50% - 4px); left: calc(50% - 140px - 4px); }
	50% { top: calc(50% - 140px - 4px); left: calc(50% - 4px); }
	75% { top: calc(50% - 4px); left: calc(50% + 140px - 4px); }
	to { top: calc(50% + 140px - 4px); left: calc(50% - 4px); }
}
@keyframes backupParticleOrbit3 {
	from { top: calc(50% - 4px); left: calc(50% + 100px - 4px); }
	25% { top: calc(50% + 100px - 4px); left: calc(50% - 4px); }
	50% { top: calc(50% - 4px); left: calc(50% - 100px - 4px); }
	75% { top: calc(50% - 100px - 4px); left: calc(50% - 4px); }
	to { top: calc(50% - 4px); left: calc(50% + 100px - 4px); }
}
@keyframes backupParticleOrbit4 {
	from { top: calc(50% - 4px); left: calc(50% - 100px - 4px); }
	25% { top: calc(50% - 100px - 4px); left: calc(50% - 4px); }
	50% { top: calc(50% - 4px); left: calc(50% + 100px - 4px); }
	75% { top: calc(50% + 100px - 4px); left: calc(50% - 4px); }
	to { top: calc(50% - 4px); left: calc(50% - 100px - 4px); }
}
@keyframes backupParticleOrbit5 {
	from { top: calc(50% - 60px - 4px); left: calc(50% - 4px); }
	25% { top: calc(50% - 4px); left: calc(50% - 60px - 4px); }
	50% { top: calc(50% + 60px - 4px); left: calc(50% - 4px); }
	75% { top: calc(50% - 4px); left: calc(50% + 60px - 4px); }
	to { top: calc(50% - 60px - 4px); left: calc(50% - 4px); }
}
@keyframes backupParticleOrbit6 {
	from { top: calc(50% + 60px - 4px); left: calc(50% - 4px); }
	25% { top: calc(50% - 4px); left: calc(50% + 60px - 4px); }
	50% { top: calc(50% - 60px - 4px); left: calc(50% - 4px); }
	75% { top: calc(50% - 4px); left: calc(50% - 60px - 4px); }
	to { top: calc(50% + 60px - 4px); left: calc(50% - 4px); }
}

/* ── Central shield core ── */
.backup-core-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90px;
	height: 90px;
	margin: -45px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, transparent 70%);
	z-index: 4;
	animation: backupCorePulse 2.5s ease-in-out infinite;
}
.backup-core-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 64px;
	height: 64px;
	margin: -32px;
	border-radius: 50%;
	border: 2px solid rgba(0, 255, 136, 0.25);
	z-index: 5;
	animation: backupCoreBreath 3s ease-in-out infinite;
}
.backup-core-shield {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	margin: -16px;
	z-index: 6;
	color: #00ff88;
	animation: backupShieldPulse 4s ease-in-out infinite;
}
@keyframes backupCorePulse {
	0%, 100% { transform: scale(1); opacity: 0.4; }
	50% { transform: scale(1.4); opacity: 0.15; }
}
@keyframes backupCoreBreath {
	0%, 100% { transform: scale(1); opacity: 0.6; border-color: rgba(0, 255, 136, 0.25); }
	50% { transform: scale(1.1); opacity: 1; border-color: rgba(0, 255, 136, 0.5); }
}
@keyframes backupShieldPulse {
	0%, 100% { transform: scale(1); opacity: 0.9; }
	50% { transform: scale(1.12); opacity: 1; }
}

/* ── Data stream particles ── */
.backup-stream {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 12px rgba(0, 255, 136, 0.4);
	z-index: 3;
	opacity: 0;
}
.backup-stream--1 { animation: backupStreamIn1 3s ease-out infinite; }
.backup-stream--2 { animation: backupStreamIn2 3.5s ease-out infinite -0.8s; }
.backup-stream--3 { animation: backupStreamOut1 3.2s ease-out infinite -1.5s; }
.backup-stream--4 { animation: backupStreamOut2 2.8s ease-out infinite -0.4s; }

@keyframes backupStreamIn1 {
	0% { top: -5%; left: 30%; opacity: 0; }
	10% { opacity: 0.8; }
	70% { top: 38%; left: 45%; opacity: 0.6; }
	100% { top: 45%; left: 48%; opacity: 0; }
}
@keyframes backupStreamIn2 {
	0% { top: 20%; right: -5%; opacity: 0; }
	10% { opacity: 0.8; }
	70% { top: 42%; right: 38%; opacity: 0.6; }
	100% { top: 48%; right: 45%; opacity: 0; }
}
@keyframes backupStreamOut1 {
	0%, 30% { bottom: 50%; left: 52%; opacity: 0; }
	40% { opacity: 0.7; }
	80% { bottom: 10%; left: 80%; opacity: 0.5; }
	100% { bottom: -5%; left: 95%; opacity: 0; }
}
@keyframes backupStreamOut2 {
	0%, 30% { bottom: 52%; right: 52%; opacity: 0; }
	40% { opacity: 0.7; }
	80% { bottom: 85%; right: 15%; opacity: 0.5; }
	100% { bottom: 100%; right: 5%; opacity: 0; }
}

/* ── Status indicator ── */
.backup-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}
.backup-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: backupLedPulse 2s ease-in-out infinite;
}
.backup-status-bar {
	width: 40px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}
.backup-status-bar::after {
	content: '';
	display: block;
	width: 80%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	animation: backupBarFill 3s ease-in-out infinite;
}
.backup-status-tag {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 255, 136, 0.7);
}
.backup-status-tag::after { content: 'SECURED'; }

@keyframes backupLedPulse {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}
@keyframes backupBarFill {
	0%, 100% { width: 70%; }
	50% { width: 95%; }
}

/* ── Backup Types Section ── */
.types-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.types-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.type-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	backdrop-filter: blur(20px);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.type-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-card);
	border-color: rgba(0, 255, 136, 0.2);
}
.type-card--accent {
	border-color: rgba(0, 255, 136, 0.3);
}
.type-card--accent:hover {
	border-color: rgba(0, 255, 136, 0.5);
	box-shadow: var(--shadow-quantum);
}
.type-card-icon {
	width: 48px;
	height: 48px;
	color: var(--quantum-primary);
	margin-bottom: 20px;
	opacity: 0.8;
}
.type-card-icon svg {
	width: 100%;
	height: 100%;
}
.type-card h3 {
	font-family: var(--font-primary);
	font-size: 1.25rem;
	margin-bottom: 12px;
	color: var(--text-primary);
}
.type-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
}
.type-card-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.type-card-list li {
	color: var(--text-secondary);
	font-size: 0.9rem;
	padding-left: 24px;
	position: relative;
	line-height: 1.4;
}
.type-card-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--quantum-primary);
	opacity: 0.5;
}

/* ── Capabilities Checklist Section ── */
.checklist-section {
	padding: var(--spacing-2xl) 0;
}
.checklist-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px 64px;
	margin-top: 48px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.checklist-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.checklist-item {
	display: flex;
	align-items: center;
	gap: 14px;
}
.checklist-item svg {
	flex-shrink: 0;
	color: var(--quantum-primary);
}
.checklist-item span {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.5;
}

/* ── Restore Spotlight Section ── */
.restore-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.restore-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	margin-top: 48px;
}
.restore-text p {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 20px;
}
.restore-text .btn {
	margin-top: 12px;
}
.restore-visual {
	display: flex;
	justify-content: center;
}
.restore-browser {
	width: 100%;
	max-width: 380px;
	background: rgba(10, 10, 15, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.restore-browser-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.restore-browser-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
}
.restore-browser-dot:first-child { background: rgba(255, 0, 0, 0.4); }
.restore-browser-dot:nth-child(2) { background: rgba(255, 200, 0, 0.4); }
.restore-browser-dot:nth-child(3) { background: rgba(0, 255, 0, 0.4); }
.restore-browser-title {
	margin-left: 8px;
	font-size: 0.75rem;
	color: var(--text-muted);
	font-family: var(--font-primary);
	letter-spacing: 0.5px;
}
.restore-browser-body {
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.restore-tree-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: var(--radius-sm);
	color: var(--text-secondary);
	font-size: 0.85rem;
	font-family: var(--font-secondary);
	transition: background 0.2s ease;
}
.restore-tree-item:hover {
	background: rgba(255, 255, 255, 0.03);
}
.restore-tree-item--child {
	padding-left: 32px;
}
.restore-tree-item svg {
	flex-shrink: 0;
	color: var(--text-muted);
	opacity: 0.6;
}
.restore-tree-item--checked svg {
	color: var(--quantum-primary);
	opacity: 0.8;
}
.restore-checkbox {
	width: 16px;
	height: 16px;
	border-radius: 3px;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	flex-shrink: 0;
	position: relative;
}
.restore-checkbox--checked {
	background: rgba(0, 255, 136, 0.15);
	border-color: var(--quantum-primary);
}
.restore-checkbox--checked::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 4px;
	width: 5px;
	height: 8px;
	border: solid var(--quantum-primary);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* ── Backups Responsive ── */
@media (max-width: 768px) {
	.backup-vault { width: 240px; height: 240px; }
	.backup-ring--1 { width: 220px; height: 220px; margin: -110px; }
	.backup-ring--2 { width: 160px; height: 160px; margin: -80px; }
	.backup-ring--3 { width: 100px; height: 100px; margin: -50px; }
	.types-grid { grid-template-columns: 1fr; }
	.type-card { text-align: center; }
	.type-card-icon { margin: 0 auto 20px; }
	.type-card-list { text-align: start; }
	.checklist-grid { grid-template-columns: 1fr; }
	.restore-grid { grid-template-columns: 1fr; }
	.restore-text { text-align: center; }
}
/* ── Backups RTL ── */
[dir="rtl"] .type-card-list li {
	padding-left: 0; padding-right: 24px;
}
[dir="rtl"] .type-card-list li::before {
	left: auto; right: 0;
}
[dir="rtl"] .restore-tree-item--child {
	padding-left: 12px; padding-right: 32px;
}
[dir="rtl"] .restore-checkbox--checked::after {
	left: auto; right: 4px;
}

/* ══ Page: Panel ══ */
/* ── Panel Mockup Hero ── */
.panel-hero-visual { display: flex; align-items: center; justify-content: center; }

.panel-mockup {
	position: relative;
	width: 380px;
	height: 260px;
	background: #f1f1f1;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
	z-index: 2;
	font-family: "IBM Plex Sans", "Exo 2", sans-serif;
}

.panel-mockup-glow {
	position: absolute;
	inset: -150px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(99,102,241,0.1) 0%, transparent 40%),
		radial-gradient(ellipse at 60% 65%, rgba(0,255,136,0.06) 0%, transparent 35%);
	z-index: -1;
	filter: blur(30px);
	animation: panelGlow 6s ease-in-out infinite;
}
@keyframes panelGlow {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}

/* ── Sidebar ── */
.pm-sidebar {
	width: 110px;
	background: #ffffff;
	border-inline-end: 1px solid #e9ecef;
	padding: 10px 0;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}
.pm-sidebar-logo {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px 10px;
	border-bottom: 1px solid #f1f5f9;
	margin-bottom: 6px;
}
.pm-logo-dot {
	width: 16px;
	height: 16px;
	border-radius: 6px;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	flex-shrink: 0;
}
.pm-logo-text {
	height: 6px;
	width: 50px;
	background: #e2e8f0;
	border-radius: 3px;
}
.pm-sidebar-items {
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding: 0 6px;
}
.pm-item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 5px 8px;
	border-radius: 6px;
	cursor: default;
	transition: background 0.3s;
	animation: pmItemCycle 16s ease-in-out infinite;
	animation-delay: calc(var(--item-idx) * 2s);
}
.pm-item--active {
	background: rgba(99,102,241,0.08);
}
.pm-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
}
.pm-label {
	font-size: 7px;
	font-weight: 500;
	color: #495057;
	white-space: nowrap;
}

@keyframes pmItemCycle {
	0%, 8% { background: rgba(99,102,241,0.1); }
	12%, 100% { background: transparent; }
}

/* ── Content Area ── */
.pm-content {
	flex: 1;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	overflow: hidden;
}
.pm-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2px 4px;
}
.pm-breadcrumb {
	height: 5px;
	width: 80px;
	background: #e2e8f0;
	border-radius: 3px;
}
.pm-topbar-dots {
	display: flex;
	gap: 3px;
}
.pm-topbar-dots span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #cbd5e1;
}

/* ── Cards ── */
.pm-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	flex: 1;
}
.pm-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 8px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
	animation: pmCardFade 16s ease-in-out infinite;
}
.pm-card--wide {
	width: 100%;
	animation-delay: 0s;
}
.pm-card--half {
	flex: 1;
	min-width: 0;
}
.pm-card--half:nth-child(2) { animation-delay: 4s; }
.pm-card--half:nth-child(3) { animation-delay: 8s; }

.pm-card-header {
	height: 5px;
	width: 50%;
	background: #e2e8f0;
	border-radius: 3px;
	margin-bottom: 8px;
}
.pm-card-bar {
	height: 4px;
	border-radius: 2px;
	margin-bottom: 4px;
}
.pm-card-bar--1 {
	width: 85%;
	background: linear-gradient(90deg, #6366f1, #818cf8);
	animation: pmBarPulse 3s ease-in-out infinite;
}
.pm-card-bar--2 {
	width: 62%;
	background: linear-gradient(90deg, #22c55e, #4ade80);
	animation: pmBarPulse 3s ease-in-out infinite 0.5s;
}
.pm-card-bar--3 {
	width: 45%;
	background: linear-gradient(90deg, #0ea5e9, #38bdf8);
	animation: pmBarPulse 3s ease-in-out infinite 1s;
}
.pm-card-circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 3px solid #6366f1;
	border-top-color: transparent;
	margin: 4px auto 0;
	animation: pmCircleSpin 2s linear infinite;
}
.pm-card-lines {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.pm-card-line {
	height: 4px;
	background: #f1f5f9;
	border-radius: 2px;
}
.pm-card-line:nth-child(1) { width: 90%; }
.pm-card-line:nth-child(2) { width: 70%; }
.pm-card-line:nth-child(3) { width: 50%; }

@keyframes pmBarPulse {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}
@keyframes pmCircleSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}
@keyframes pmCardFade {
	0%, 5% { opacity: 0.6; transform: translateY(2px); }
	10%, 90% { opacity: 1; transform: translateY(0); }
	95%, 100% { opacity: 0.6; transform: translateY(2px); }
}

/* ── Proper Chat Bubble ── */
.pm-proper {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(99,102,241,0.4);
	animation: pmProperPulse 3s ease-in-out infinite;
	z-index: 3;
}
@keyframes pmProperPulse {
	0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(99,102,241,0.4); }
	50% { transform: scale(1.08); box-shadow: 0 6px 20px rgba(99,102,241,0.6); }
}

/* ── Stats Ribbon ── */
.stats-ribbon {
	padding: var(--spacing-lg) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.stats-ribbon-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-lg);
	flex-wrap: wrap;
}
.stats-ribbon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	min-width: 120px;
}
.stats-ribbon-value {
	font-family: var(--font-primary);
	font-size: 1.6rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.stats-ribbon-label {
	font-family: var(--font-secondary);
	font-size: 0.85rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
}
.stats-ribbon-divider {
	width: 1px;
	height: 40px;
	background: rgba(255,255,255,0.1);
}

/* ── Showcase Section ── */
.showcase-section {
	padding: var(--spacing-2xl) 0;
}
.showcase-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 48px;
}
.showcase-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	padding: var(--spacing-md);
	backdrop-filter: blur(20px);
	transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.showcase-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
	border-color: rgba(255,255,255,0.18);
}
.showcase-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}
.showcase-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
	box-shadow: 0 0 8px currentColor;
}
.showcase-card h3 {
	font-family: var(--font-primary);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0;
}
.showcase-items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.showcase-items li {
	font-family: var(--font-secondary);
	font-size: 0.82rem;
	color: var(--text-muted);
	padding-inline-start: 16px;
	position: relative;
	line-height: 1.5;
}
.showcase-items li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 7px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--quantum-primary);
	opacity: 0.5;
}

/* ── Spotlight Section ── */
.spotlight-section {
	padding: var(--spacing-2xl) 0;
}
.spotlight-section--alt {
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.spotlight-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xl);
	align-items: center;
}
.spotlight-reverse {
	direction: rtl;
}
.spotlight-reverse > * {
	direction: ltr;
}
.spotlight-text p {
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: var(--spacing-sm);
}
.spotlight-text .btn {
	margin-top: var(--spacing-sm);
}
.spotlight-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ── Spotlight 1: Chat Mockup ── */
.spot-chat {
	width: 280px;
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}
.spot-chat-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border-bottom: var(--border-glass);
	background: rgba(255,255,255,0.02);
}
.spot-chat-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
}
.spot-chat-name {
	font-family: var(--font-primary);
	font-size: 0.8rem;
	color: var(--text-primary);
}
.spot-chat-status {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 6px var(--quantum-primary);
	margin-inline-start: auto;
}
.spot-chat-messages {
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.spot-chat-msg {
	font-family: var(--font-secondary);
	font-size: 0.78rem;
	line-height: 1.5;
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	max-width: 85%;
}
.spot-chat-msg--user {
	background: rgba(99,102,241,0.15);
	color: var(--text-primary);
	align-self: flex-end;
	border-bottom-right-radius: 2px;
}
.spot-chat-msg--bot {
	background: rgba(0,255,136,0.06);
	border: 1px solid rgba(0,255,136,0.1);
	color: var(--text-secondary);
	align-self: flex-start;
	border-bottom-left-radius: 2px;
}

/* ── Spotlight 2: WordPress Card ── */
.spot-wp-card {
	width: 240px;
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-md);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.spot-wp-icon {
	position: relative;
	color: #6366f1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.spot-wp-badge {
	position: absolute;
	top: -8px;
	right: -30px;
	font-family: var(--font-primary);
	font-size: 0.55rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	background: var(--quantum-primary);
	padding: 2px 8px;
	border-radius: 10px;
	letter-spacing: 0.5px;
	white-space: nowrap;
}
.spot-wp-actions {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.spot-wp-action {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	background: rgba(0,255,136,0.04);
	border: 1px solid rgba(0,255,136,0.08);
	border-radius: var(--radius-sm);
	color: var(--text-secondary);
	font-family: var(--font-secondary);
	font-size: 0.8rem;
}
.spot-wp-action svg {
	color: var(--quantum-primary);
	flex-shrink: 0;
}

/* ── Panel Responsive ── */
@media (max-width: 768px) {
	.panel-mockup { width: 300px; height: 210px; }
	.pm-sidebar { width: 85px; }
	.pm-label { font-size: 6px; }
	.pm-card-circle { width: 24px; height: 24px; border-width: 2px; }
	.stats-ribbon-inner { flex-direction: column; gap: var(--spacing-md); }
	.stats-ribbon-divider { width: 60px; height: 1px; }
	.showcase-grid { grid-template-columns: repeat(2, 1fr); }
	.showcase-card { text-align: center; }
	.showcase-card-header { justify-content: center; }
	.showcase-items { text-align: start; }
	.spotlight-row { grid-template-columns: 1fr; gap: var(--spacing-lg); }
	.spotlight-reverse { direction: ltr; }
	.spotlight-text { text-align: center; }
	.spotlight-text .section-title { text-align: center !important; }
	.spot-chat { width: 100%; max-width: 300px; margin: 0 auto; }
	.spot-wp-card { width: 100%; max-width: 260px; margin: 0 auto; }
}
@media (min-width: 769px) and (max-width: 1024px) {
	.panel-mockup { width: 340px; height: 240px; }
	.pm-sidebar { width: 95px; }
	.showcase-grid { grid-template-columns: repeat(2, 1fr); }
	.spotlight-row { grid-template-columns: 1fr; gap: var(--spacing-lg); }
	.spotlight-reverse { direction: ltr; }
}
/* ── Panel RTL ── */
[dir="rtl"] .spotlight-reverse {
	direction: ltr;
}
[dir="rtl"] .spotlight-reverse > * {
	direction: rtl;
}
.spotlight-text .section-title {
	text-align: start;
}
@media (max-width: 768px) {
	[dir="rtl"] .spotlight-reverse {
		direction: rtl;
	}
	[dir="rtl"] .spotlight-text .section-title {
		text-align: center !important;
	}
}

/* ══ Page: Affiliates ══ */
/* ── Affiliate Hero Visual ── */
.aff-hero-visual { display: flex; align-items: center; justify-content: center; }

.aff-coin-stack {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.aff-coin-glow {
	position: absolute;
	inset: -180px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.1) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.1) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: affGlow 6s ease-in-out infinite;
}
@keyframes affGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

/* Central coin */
.aff-coin-core {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	margin: -40px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 153, 255, 0.2));
	border: 2px solid rgba(0, 255, 136, 0.4);
	z-index: 5;
	animation: affCoreBreath 3s ease-in-out infinite;
}
.aff-coin-core-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	margin: -40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 900;
	color: var(--quantum-primary);
	z-index: 6;
	text-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
	animation: affCoreBreath 3s ease-in-out infinite;
}
@keyframes affCoreBreath {
	0%, 100% { transform: scale(1); filter: brightness(1); }
	50% { transform: scale(1.06); filter: brightness(1.2); }
}

/* Orbiting dollar signs */
.aff-orbit {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
}
.aff-dollar {
	font-family: var(--font-primary);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--quantum-primary);
	text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
	position: absolute;
}

.aff-orbit--1 { animation: affOrbit1 8s linear infinite; }
.aff-orbit--2 { animation: affOrbit2 10s linear infinite; }
.aff-orbit--3 { animation: affOrbit3 12s linear infinite; }
.aff-orbit--4 { animation: affOrbit4 9s linear infinite; }
.aff-orbit--5 { animation: affOrbit5 11s linear infinite; }
.aff-orbit--6 { animation: affOrbit6 7s linear infinite; }

.aff-orbit--1 .aff-dollar { animation: affDollarCounter 8s linear infinite; }
.aff-orbit--2 .aff-dollar { animation: affDollarCounter 10s linear infinite; }
.aff-orbit--3 .aff-dollar { animation: affDollarCounter 12s linear infinite; }
.aff-orbit--4 .aff-dollar { animation: affDollarCounter 9s linear infinite; }
.aff-orbit--5 .aff-dollar { animation: affDollarCounter 11s linear infinite; }
.aff-orbit--6 .aff-dollar { animation: affDollarCounter 7s linear infinite; }

@keyframes affOrbit1 { from { transform: rotate(0deg) translateX(90px); } to { transform: rotate(360deg) translateX(90px); } }
@keyframes affOrbit2 { from { transform: rotate(60deg) translateX(120px); } to { transform: rotate(420deg) translateX(120px); } }
@keyframes affOrbit3 { from { transform: rotate(120deg) translateX(100px); } to { transform: rotate(480deg) translateX(100px); } }
@keyframes affOrbit4 { from { transform: rotate(180deg) translateX(130px); } to { transform: rotate(540deg) translateX(130px); } }
@keyframes affOrbit5 { from { transform: rotate(240deg) translateX(110px); } to { transform: rotate(600deg) translateX(110px); } }
@keyframes affOrbit6 { from { transform: rotate(300deg) translateX(95px); } to { transform: rotate(660deg) translateX(95px); } }
@keyframes affDollarCounter { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* Floating coins */
.aff-float-coin {
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 2px solid rgba(0, 255, 136, 0.3);
	background: rgba(0, 255, 136, 0.08);
	z-index: 3;
}
.aff-float-coin--1 {
	top: 15%;
	left: 20%;
	animation: affFloat 4s ease-in-out infinite;
}
.aff-float-coin--2 {
	top: 70%;
	right: 15%;
	animation: affFloat 5s ease-in-out infinite -1.5s;
}
.aff-float-coin--3 {
	bottom: 20%;
	left: 15%;
	animation: affFloat 4.5s ease-in-out infinite -3s;
}
@keyframes affFloat {
	0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
	50% { transform: translateY(-12px) scale(1.1); opacity: 0.8; }
}

/* Status indicator */
.aff-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}
.aff-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: affLedPulse 2s ease-in-out infinite;
}
.aff-status-bar {
	width: 40px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}
.aff-status-bar::after {
	content: '';
	display: block;
	width: 80%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	animation: affBarFill 3s ease-in-out infinite;
}
.aff-status-tag {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 255, 136, 0.7);
}
.aff-status-tag::after { content: 'EARNING'; }

@keyframes affLedPulse {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}
@keyframes affBarFill {
	0%, 100% { width: 70%; }
	50% { width: 95%; }
}

/* ── Commission Section ── */
.aff-commission-section {
	padding: var(--spacing-2xl) 0;
}
.aff-commission-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-lg);
	margin-top: var(--spacing-xl);
	margin-bottom: var(--spacing-lg);
}
.aff-commission-desc {
	text-align: center;
	color: var(--text-secondary);
	font-size: 1.1rem;
	line-height: 1.7;
	max-width: 800px;
	margin: 0 auto;
}

/* ── Calculator Section ── */
.aff-calculator-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.aff-calculator-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-xl);
	backdrop-filter: blur(20px);
	margin-top: var(--spacing-xl);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xl);
	align-items: center;
}
.aff-calc-slider-group {
	margin-bottom: var(--spacing-lg);
}
.aff-calc-slider-group:last-child {
	margin-bottom: 0;
}
.aff-calc-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--spacing-sm);
	color: var(--text-primary);
	font-weight: 600;
	font-size: 0.95rem;
}
.aff-calc-value {
	font-family: var(--font-primary);
	color: var(--quantum-primary);
	font-weight: 700;
	font-size: 1.1rem;
}

/* Range input styling */
.aff-range-input {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.1);
	outline: none;
	cursor: pointer;
}
.aff-range-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--quantum-primary);
	cursor: pointer;
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
	transition: transform 0.2s, box-shadow 0.2s;
}
.aff-range-input::-webkit-slider-thumb:hover {
	transform: scale(1.15);
	box-shadow: 0 0 16px rgba(0, 255, 136, 0.7);
}
.aff-range-input::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--quantum-primary);
	border: none;
	cursor: pointer;
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Calculator results */
.aff-calc-results {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}
.aff-calc-result {
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	padding: var(--spacing-md) var(--spacing-lg);
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: transform 0.2s, border-color 0.2s;
}
.aff-calc-result:hover {
	transform: translateY(-2px);
}
.aff-calc-result-label {
	color: var(--text-secondary);
	font-size: 0.95rem;
}
.aff-calc-result-value {
	font-family: var(--font-primary);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--quantum-primary);
}
.aff-calc-result--highlight {
	border-color: rgba(0, 255, 136, 0.3);
}
.aff-calc-result--highlight .aff-calc-result-value {
	font-size: 1.7rem;
}
.aff-calc-result--highlight2 {
	border-color: rgba(0, 153, 255, 0.3);
	background: rgba(0, 153, 255, 0.05);
}
.aff-calc-result--highlight2 .aff-calc-result-value {
	font-size: 1.9rem;
	color: var(--quantum-secondary);
}

/* ── FAQ Section ── */
.aff-faq-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.aff-faq-list {
	max-width: 800px;
	margin: var(--spacing-xl) auto 0;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
}
.aff-faq-item {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: border-color 0.3s;
}
.aff-faq-item[open] {
	border-color: rgba(0, 255, 136, 0.3);
}
.aff-faq-item summary {
	padding: var(--spacing-md) var(--spacing-lg);
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	color: var(--text-primary);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.2s;
}
.aff-faq-item summary::-webkit-details-marker { display: none; }
.aff-faq-item summary::after {
	content: '+';
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--quantum-primary);
	transition: transform 0.3s;
	flex-shrink: 0;
	margin-left: var(--spacing-sm);
}
[dir="rtl"] .aff-faq-item summary::after {
	margin-left: 0;
	margin-right: var(--spacing-sm);
}
.aff-faq-item[open] summary::after {
	transform: rotate(45deg);
}
.aff-faq-item summary:hover {
	color: var(--quantum-primary);
}
.aff-faq-answer {
	padding: 0 var(--spacing-lg) var(--spacing-md);
	color: var(--text-secondary);
	line-height: 1.7;
	animation: affFaqSlide 0.3s ease-out;
}
@keyframes affFaqSlide {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}
.aff-faq-answer p {
	margin: 0;
}

/* ── Bottom CTA Section ── */
.aff-bottom-cta-section {
	padding: var(--spacing-2xl) 0;
	text-align: center;
}
.aff-bottom-cta-content {
	max-width: 600px;
	margin: 0 auto;
}
.aff-bottom-cta-text {
	color: var(--text-secondary);
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: var(--spacing-sm);
}
.aff-bottom-cta-email {
	color: var(--text-muted);
	margin-bottom: var(--spacing-lg);
}
.aff-bottom-cta-email a {
	color: var(--quantum-primary);
	text-decoration: none;
	transition: opacity 0.2s;
}
.aff-bottom-cta-email a:hover {
	opacity: 0.8;
}

/* ── Affiliates Responsive ── */
@media (max-width: 768px) {
	.aff-commission-grid { grid-template-columns: repeat(2, 1fr); }
	.aff-calculator-card { grid-template-columns: 1fr; }
	.aff-coin-stack { width: 240px; height: 240px; }
}
@media (max-width: 480px) {
	.aff-commission-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
	.aff-commission-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══ Page: Flood Protection ══ */

.flood-hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flood-wave-container {
	position: relative;
	width: 300px;
	height: 260px;
	z-index: 2;
}

.flood-wave-glow {
	position: absolute;
	inset: -180px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.09) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(255, 0, 102, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: floodGlow 5s ease-in-out infinite;
}
@keyframes floodGlow {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

.flood-bar {
	position: absolute;
	bottom: 40px;
	width: 24px;
	border-radius: 4px 4px 0 0;
	animation: floodBarPulse 3s ease-in-out infinite;
}

.flood-bar--1 { left: 10px; height: 60px; background: rgba(0, 255, 136, 0.5); animation-delay: 0s; }
.flood-bar--2 { left: 48px; height: 80px; background: rgba(0, 255, 136, 0.5); animation-delay: 0.2s; }
.flood-bar--3 { left: 86px; height: 110px; background: rgba(0, 255, 136, 0.5); animation-delay: 0.4s; }
.flood-bar--4 { left: 124px; height: 160px; background: rgba(255, 51, 102, 0.6); animation-delay: 0.6s; box-shadow: 0 0 12px rgba(255, 51, 102, 0.3); }
.flood-bar--5 { left: 162px; height: 190px; background: rgba(255, 51, 102, 0.7); animation-delay: 0.8s; box-shadow: 0 0 16px rgba(255, 51, 102, 0.4); }
.flood-bar--6 { left: 200px; height: 170px; background: rgba(255, 51, 102, 0.6); animation-delay: 1.0s; box-shadow: 0 0 12px rgba(255, 51, 102, 0.3); }
.flood-bar--7 { left: 238px; height: 90px; background: rgba(0, 255, 136, 0.5); animation-delay: 1.2s; }
.flood-bar--8 { left: 276px; height: 70px; background: rgba(0, 255, 136, 0.5); animation-delay: 1.4s; }

@keyframes floodBarPulse {
	0%, 100% { opacity: 0.7; transform: scaleY(1); }
	50% { opacity: 1; transform: scaleY(1.15); }
}

.flood-threshold {
	position: absolute;
	bottom: 160px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(0, 153, 255, 0.8), transparent);
	box-shadow: 0 0 8px rgba(0, 153, 255, 0.4);
	animation: floodThresholdPulse 3s ease-in-out infinite;
}
@keyframes floodThresholdPulse {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

.flood-threshold-label {
	position: absolute;
	bottom: 164px;
	right: 0;
	font-family: var(--font-primary);
	font-size: 0.55rem;
	color: var(--quantum-secondary);
	letter-spacing: 2px;
	opacity: 0.7;
}

.flood-block-badge {
	position: absolute;
	top: 20px;
	right: 30px;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: var(--radius-sm);
	background: rgba(255, 51, 102, 0.15);
	border: 1px solid rgba(255, 51, 102, 0.3);
	color: #ff3366;
	font-family: var(--font-primary);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 2px;
	animation: floodBlockFlash 2.5s ease-in-out infinite;
}
@keyframes floodBlockFlash {
	0%, 100% { opacity: 0.5; box-shadow: none; }
	50% { opacity: 1; box-shadow: 0 0 12px rgba(255, 51, 102, 0.3); }
}

/* ── Flood Protection Responsive ── */
@media (max-width: 768px) {
	.flood-wave-container { width: 240px; height: 210px; }
	.flood-bar { width: 18px; }
	.flood-bar--1 { left: 8px; height: 45px; }
	.flood-bar--2 { left: 36px; height: 60px; }
	.flood-bar--3 { left: 64px; height: 85px; }
	.flood-bar--4 { left: 92px; height: 125px; }
	.flood-bar--5 { left: 120px; height: 150px; }
	.flood-bar--6 { left: 148px; height: 130px; }
	.flood-bar--7 { left: 176px; height: 68px; }
	.flood-bar--8 { left: 204px; height: 52px; }
	.flood-threshold { bottom: 125px; }
	.flood-threshold-label { bottom: 129px; }
	.flood-block-badge { top: 10px; right: 10px; font-size: 0.55rem; padding: 4px 10px; }
}
@media (max-width: 480px) {
	.flood-wave-glow { display: none; }
	.flood-wave-container { width: 200px; height: 180px; }
	.flood-bar { width: 14px; }
	.flood-bar--1 { left: 6px; height: 35px; }
	.flood-bar--2 { left: 30px; height: 48px; }
	.flood-bar--3 { left: 54px; height: 70px; }
	.flood-bar--4 { left: 78px; height: 105px; }
	.flood-bar--5 { left: 102px; height: 125px; }
	.flood-bar--6 { left: 126px; height: 108px; }
	.flood-bar--7 { left: 150px; height: 55px; }
	.flood-bar--8 { left: 174px; height: 42px; }
	.flood-threshold { bottom: 105px; }
	.flood-threshold-label { bottom: 109px; }
}

/* ══ Page: Real-Time DDoS Monitor ══ */

.ddosmon-hero-visual { display: flex; align-items: center; justify-content: center; }

.ddosmon-dashboard {
	position: relative;
	width: 320px;
	height: 280px;
	z-index: 2;
}

.ddosmon-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.09) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.08) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: ddosmonGlow 6s ease-in-out infinite;
}
@keyframes ddosmonGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.ddosmon-frame {
	width: 100%;
	height: 230px;
	background: rgba(10, 10, 15, 0.9);
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: var(--radius-md);
	overflow: hidden;
	backdrop-filter: blur(20px);
	display: flex;
	flex-direction: column;
}

.ddosmon-topbar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ddosmon-topbar-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
.ddosmon-topbar-dot--red { background: #ff5f57; }
.ddosmon-topbar-dot--yellow { background: #febc2e; }
.ddosmon-topbar-dot--green { background: #28c840; }
.ddosmon-topbar-title {
	margin-inline-start: auto;
	width: 60px;
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
}

.ddosmon-graph {
	flex: 1;
	display: flex;
	align-items: flex-end;
	gap: 6px;
	padding: 16px 16px 12px;
	position: relative;
}
.ddosmon-graph-grid {
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(255,255,255,0.03) 24px, rgba(255,255,255,0.03) 25px),
		repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(255,255,255,0.03) 24px, rgba(255,255,255,0.03) 25px);
	pointer-events: none;
}

.ddosmon-bar {
	flex: 1;
	border-radius: 3px 3px 0 0;
	background: linear-gradient(180deg, rgba(0, 153, 255, 0.7), rgba(0, 153, 255, 0.3));
	position: relative;
	z-index: 1;
	animation: ddosmonBarPulse 3s ease-in-out infinite;
}
.ddosmon-bar--1 { height: 30%; animation-delay: 0s; }
.ddosmon-bar--2 { height: 45%; animation-delay: 0.2s; }
.ddosmon-bar--3 { height: 85%; animation-delay: 0.4s; }
.ddosmon-bar--4 { height: 90%; animation-delay: 0.6s; }
.ddosmon-bar--5 { height: 40%; animation-delay: 0.8s; }
.ddosmon-bar--6 { height: 35%; animation-delay: 1.0s; }
.ddosmon-bar--7 { height: 75%; animation-delay: 1.2s; }
.ddosmon-bar--8 { height: 80%; animation-delay: 1.4s; }

@keyframes ddosmonBarPulse {
	0%, 100% { opacity: 0.8; }
	50% { opacity: 1; }
}

.ddosmon-blocked {
	position: absolute;
	bottom: 12px;
	width: calc((100% - 16px * 2 - 6px * 7) / 8);
	border-radius: 3px 3px 0 0;
	background: linear-gradient(180deg, rgba(255, 51, 102, 0.8), rgba(255, 51, 102, 0.3));
	z-index: 2;
	animation: ddosmonBlockedFlash 3s ease-in-out infinite;
}
.ddosmon-blocked--3 {
	left: calc(16px + (100% - 16px * 2 - 6px * 7) / 8 * 2 + 6px * 2);
	height: 40%;
	animation-delay: 0.4s;
}
.ddosmon-blocked--4 {
	left: calc(16px + (100% - 16px * 2 - 6px * 7) / 8 * 3 + 6px * 3);
	height: 45%;
	animation-delay: 0.6s;
}
.ddosmon-blocked--7 {
	left: calc(16px + (100% - 16px * 2 - 6px * 7) / 8 * 6 + 6px * 6);
	height: 35%;
	animation-delay: 1.2s;
}
.ddosmon-blocked--8 {
	left: calc(16px + (100% - 16px * 2 - 6px * 7) / 8 * 7 + 6px * 7);
	height: 40%;
	animation-delay: 1.4s;
}
@keyframes ddosmonBlockedFlash {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

.ddosmon-stats-row {
	display: flex;
	gap: 10px;
	padding: 10px 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ddosmon-stat-box {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 1;
}
.ddosmon-stat-led {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	flex-shrink: 0;
}
.ddosmon-stat-led--green {
	background: #00ff88;
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.5);
}
.ddosmon-stat-led--red {
	background: #ff3366;
	box-shadow: 0 0 6px rgba(255, 51, 102, 0.5);
}
.ddosmon-stat-led--blue {
	background: #0099ff;
	box-shadow: 0 0 6px rgba(0, 153, 255, 0.5);
}
.ddosmon-stat-line {
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.1);
	flex: 1;
}
.ddosmon-stat-line--short { max-width: 60%; }
.ddosmon-stat-line--medium { max-width: 80%; }

.ddosmon-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}
.ddosmon-status-led {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px #00ff88, 0 0 14px rgba(0, 255, 136, 0.3);
	animation: ddosmonLedPulse 2s ease-in-out infinite;
}
.ddosmon-status-bar {
	width: 40px; height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}
.ddosmon-status-bar::after {
	content: '';
	display: block;
	width: 80%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	animation: ddosmonBarFill 3s ease-in-out infinite;
}
.ddosmon-status-tag {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 255, 136, 0.7);
}
.ddosmon-status-tag::after { content: 'MONITORING'; }

@keyframes ddosmonLedPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes ddosmonBarFill { 0%, 100% { width: 60%; } 50% { width: 95%; } }

/* ── DDoS Monitor Pipeline ── */
.ddosmon-pipeline-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.ddosmon-pipeline {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	margin-top: 48px;
	position: relative;
}
.ddosmon-pipeline-step {
	text-align: center;
	flex: 1;
	max-width: 220px;
	min-width: 150px;
	padding: 24px 16px;
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	backdrop-filter: blur(20px);
	position: relative;
	z-index: 2;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ddosmon-pipeline-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}
.ddosmon-pipeline-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	color: #00ff88;
}
.ddosmon-pipeline-icon svg { width: 24px; height: 24px; }
.ddosmon-pipeline-icon--visualize {
	background: rgba(0, 153, 255, 0.1);
	border-color: rgba(0, 153, 255, 0.25);
	color: #0099ff;
}
.ddosmon-pipeline-icon--analyze {
	background: rgba(255, 165, 0, 0.1);
	border-color: rgba(255, 165, 0, 0.25);
	color: #ffa500;
}
.ddosmon-pipeline-icon--alert {
	background: rgba(255, 51, 102, 0.1);
	border-color: rgba(255, 51, 102, 0.25);
	color: #ff3366;
}
.ddosmon-pipeline-step h3 {
	font-family: var(--font-primary);
	font-size: 1rem;
	margin-bottom: 8px;
}
.ddosmon-pipeline-step p {
	color: var(--text-secondary);
	font-size: 0.85rem;
	line-height: 1.5;
}
.ddosmon-pipeline-arrow {
	display: flex;
	align-items: center;
	padding-top: 50px;
	color: var(--quantum-primary);
	opacity: 0.5;
	flex-shrink: 0;
	padding-inline-start: 6px;
	padding-inline-end: 6px;
}

.ddosmon-pipeline-track {
	margin: 24px auto 0;
	max-width: 900px;
	height: 4px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}
.ddosmon-pipeline-track-fill {
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, #00ff88, #0099ff, transparent);
	animation: ddosmonConveyor 2.5s linear infinite;
}
@keyframes ddosmonConveyor {
	from { left: -30%; }
	to { left: 100%; }
}

/* ── DDoS Monitor Responsive ── */
@media (max-width: 768px) {
	.ddosmon-dashboard { width: 260px; height: 230px; }
	.ddosmon-frame { height: 190px; }
	.ddosmon-pipeline { flex-direction: column; align-items: center; gap: 0; }
	.ddosmon-pipeline-step { max-width: 280px; width: 100%; text-align: center; }
	.ddosmon-pipeline-arrow { transform: rotate(90deg); padding: 8px 0; }
}
@media (max-width: 480px) {
	.ddosmon-dashboard { width: 220px; height: 200px; }
	.ddosmon-frame { height: 165px; }
	.ddosmon-topbar { padding: 6px 10px; }
	.ddosmon-graph { padding: 10px 10px 8px; gap: 4px; }
	.ddosmon-stats-row { padding: 8px 10px; gap: 6px; }
}

/* ── DDoS Monitor RTL ── */
[dir="rtl"] .ddosmon-pipeline-arrow svg { transform: scaleX(-1); }
[dir="rtl"] .ddosmon-pipeline-track-fill {
	left: auto; right: -30%;
	animation-name: ddosmonConveyorRtl;
}
@keyframes ddosmonConveyorRtl {
	from { right: -30%; }
	to { right: 100%; }
}
[dir="rtl"] .ddosmon-blocked--3 {
	left: auto;
	right: calc(16px + (100% - 16px * 2 - 6px * 7) / 8 * 2 + 6px * 2);
}
[dir="rtl"] .ddosmon-blocked--4 {
	left: auto;
	right: calc(16px + (100% - 16px * 2 - 6px * 7) / 8 * 3 + 6px * 3);
}
[dir="rtl"] .ddosmon-blocked--7 {
	left: auto;
	right: calc(16px + (100% - 16px * 2 - 6px * 7) / 8 * 6 + 6px * 6);
}
[dir="rtl"] .ddosmon-blocked--8 {
	left: auto;
	right: calc(16px + (100% - 16px * 2 - 6px * 7) / 8 * 7 + 6px * 7);
}
[dir="rtl"] .stat-badge .stat-value { direction: ltr; }
@media (max-width: 768px) {
	[dir="rtl"] .ddosmon-pipeline-arrow { transform: rotate(90deg); }
	[dir="rtl"] .ddosmon-pipeline-arrow svg { transform: none; }
}

/* ══════════════════════════════════════════════════════════════
   Brute Force Protection Page
   ══════════════════════════════════════════════════════════════ */

/* ── Hero Visual ── */
.bf-hero-visual { display: flex; align-items: center; justify-content: center; }

.bf-lockbox {
	position: relative;
	width: 300px;
	height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.bf-lockbox-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(255, 51, 102, 0.09) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: bfGlow 6s ease-in-out infinite;
}
@keyframes bfGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.bf-lock {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 3;
}

.bf-lock-shackle {
	width: 48px;
	height: 32px;
	border: 4px solid #ff3366;
	border-bottom: none;
	border-radius: 24px 24px 0 0;
	margin-bottom: -2px;
	animation: bfShackleShake 4s ease-in-out infinite;
}
@keyframes bfShackleShake {
	0%, 60%, 100% { transform: translateX(0); }
	65% { transform: translateX(-3px); }
	70% { transform: translateX(3px); }
	75% { transform: translateX(-2px); }
	80% { transform: translateX(2px); }
	85% { transform: translateX(0); }
}

.bf-lock-body {
	width: 64px;
	height: 48px;
	background: rgba(255, 51, 102, 0.15);
	border: 2px solid rgba(255, 51, 102, 0.4);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bf-lock-keyhole {
	width: 10px;
	height: 10px;
	background: #ff3366;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(255, 51, 102, 0.6);
	position: relative;
}
.bf-lock-keyhole::after {
	content: '';
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 8px;
	background: #ff3366;
	border-radius: 0 0 2px 2px;
}

.bf-counter {
	margin-top: 20px;
	text-align: center;
	z-index: 3;
}

.bf-counter-label {
	font-family: var(--font-secondary);
	font-size: 0.7rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.bf-counter-digits {
	display: flex;
	gap: 4px;
	justify-content: center;
}

.bf-digit {
	display: inline-block;
	width: 28px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(255, 51, 102, 0.2);
	border-radius: 4px;
	font-family: var(--font-primary);
	font-size: 1.1rem;
	color: #ff3366;
}

.bf-digit--3 { animation: bfCount3 4s infinite; }
.bf-digit--2 { animation: bfCount2 4s infinite; }
.bf-digit--1 { animation: bfCount1 4s infinite; }

@keyframes bfCount3 {
	0%, 5% { color: rgba(255, 51, 102, 0.4); }
	10% { color: #ff3366; text-shadow: 0 0 6px rgba(255, 51, 102, 0.5); }
	20% { color: #ff3366; text-shadow: 0 0 6px rgba(255, 51, 102, 0.5); }
	30% { color: #ff3366; text-shadow: 0 0 6px rgba(255, 51, 102, 0.5); }
	40% { color: #ff3366; text-shadow: 0 0 6px rgba(255, 51, 102, 0.5); }
	50% { color: #ff3366; text-shadow: 0 0 6px rgba(255, 51, 102, 0.5); }
	60%, 70% { color: #00ff88; text-shadow: 0 0 8px rgba(0, 255, 136, 0.6); }
	85%, 100% { color: rgba(255, 51, 102, 0.4); text-shadow: none; }
}
@keyframes bfCount2 {
	0%, 40% { color: rgba(255, 51, 102, 0.3); }
	50% { color: #ff3366; text-shadow: 0 0 6px rgba(255, 51, 102, 0.5); }
	60%, 70% { color: #00ff88; text-shadow: 0 0 8px rgba(0, 255, 136, 0.6); }
	85%, 100% { color: rgba(255, 51, 102, 0.3); text-shadow: none; }
}
@keyframes bfCount1 {
	0%, 50% { color: rgba(255, 51, 102, 0.2); }
	60%, 70% { color: #00ff88; text-shadow: 0 0 8px rgba(0, 255, 136, 0.6); }
	85%, 100% { color: rgba(255, 51, 102, 0.2); text-shadow: none; }
}

.bf-blocked-badge {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.2);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
	opacity: 0;
	animation: bfBlockedAppear 4s ease-in-out infinite;
}
.bf-blocked-badge svg { color: #00ff88; }
.bf-blocked-badge span {
	font-family: var(--font-primary);
	font-size: 0.65rem;
	color: #00ff88;
	letter-spacing: 1px;
	text-transform: uppercase;
}

@keyframes bfBlockedAppear {
	0%, 55% { opacity: 0; transform: translateX(-50%) translateY(6px); }
	65% { opacity: 1; transform: translateX(-50%) translateY(0); }
	80% { opacity: 1; transform: translateX(-50%) translateY(0); }
	90%, 100% { opacity: 0; transform: translateX(-50%) translateY(6px); }
}

.bf-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 140px;
	height: 140px;
	margin: -70px 0 0 -70px;
	border-radius: 50%;
	border: 1px solid rgba(255, 51, 102, 0.15);
	z-index: 1;
}
.bf-pulse--1 { animation: bfPulseRing 4s ease-out infinite 0.6s; }
.bf-pulse--2 { animation: bfPulseRing 4s ease-out infinite 1.2s; }

@keyframes bfPulseRing {
	0% { transform: scale(0.8); opacity: 0.6; border-color: rgba(255, 51, 102, 0.3); }
	50% { transform: scale(1.8); opacity: 0.1; border-color: rgba(255, 51, 102, 0.05); }
	100% { transform: scale(2.2); opacity: 0; }
}

/* ── Pipeline Section ── */
.bf-pipeline-section { padding: var(--spacing-2xl) 0; }
.bf-pipeline {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	margin-top: 48px;
	position: relative;
}
.bf-pipeline-step {
	text-align: center;
	flex: 1;
	max-width: 220px;
	min-width: 150px;
	padding: 24px 16px;
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-md);
	backdrop-filter: blur(20px);
	position: relative;
	z-index: 2;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bf-pipeline-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}
.bf-pipeline-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	color: #00ff88;
}
.bf-pipeline-icon svg { width: 24px; height: 24px; }
.bf-pipeline-icon--detect {
	background: rgba(255, 165, 0, 0.1);
	border-color: rgba(255, 165, 0, 0.25);
	color: #ffa500;
}
.bf-pipeline-icon--ban {
	background: rgba(255, 51, 102, 0.1);
	border-color: rgba(255, 51, 102, 0.25);
	color: #ff3366;
}
.bf-pipeline-icon--alert {
	background: rgba(0, 153, 255, 0.1);
	border-color: rgba(0, 153, 255, 0.25);
	color: #0099ff;
}
.bf-pipeline-step h3 {
	font-family: var(--font-primary);
	font-size: 1rem;
	margin-bottom: 8px;
}
.bf-pipeline-step p {
	color: var(--text-secondary);
	font-size: 0.85rem;
	line-height: 1.5;
}
.bf-pipeline-arrow {
	display: flex;
	align-items: center;
	padding-top: 50px;
	color: var(--quantum-primary);
	opacity: 0.5;
	flex-shrink: 0;
	padding-inline-start: 6px;
	padding-inline-end: 6px;
}
[dir="rtl"] .bf-pipeline-arrow svg { transform: scaleX(-1); }

.bf-pipeline-track {
	margin: 24px auto 0;
	max-width: 900px;
	height: 4px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}
.bf-pipeline-track-fill {
	position: absolute;
	top: 0;
	left: -30%;
	width: 30%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, #ff3366, #00ff88, transparent);
	animation: bfConveyor 2.5s linear infinite;
}
@keyframes bfConveyor {
	from { left: -30%; }
	to { left: 100%; }
}

/* ── Features Section ── */
.bf-features-section {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.bf-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 48px;
}
.bf-feature-card {
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: var(--radius-lg);
	padding: var(--spacing-md);
	backdrop-filter: blur(20px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bf-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}
.bf-feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: #00ff88;
}
.bf-feature-icon svg { width: 24px; height: 24px; }
.bf-feature-icon--ban {
	background: rgba(255, 51, 102, 0.1);
	border-color: rgba(255, 51, 102, 0.25);
	color: #ff3366;
}
.bf-feature-icon--multi {
	background: rgba(0, 153, 255, 0.1);
	border-color: rgba(0, 153, 255, 0.25);
	color: #0099ff;
}
.bf-feature-icon--threshold {
	background: rgba(255, 165, 0, 0.1);
	border-color: rgba(255, 165, 0, 0.25);
	color: #ffa500;
}
.bf-feature-icon--whitelist {
	background: rgba(0, 255, 136, 0.1);
	border-color: rgba(0, 255, 136, 0.25);
	color: #00ff88;
}
.bf-feature-card h3 {
	font-family: var(--font-primary);
	font-size: 1rem;
	margin-bottom: 10px;
}
.bf-feature-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
}

/* ── Brute Force Responsive ── */
@media (max-width: 768px) {
	.bf-features-grid { grid-template-columns: 1fr; }
	.bf-pipeline { flex-direction: column; align-items: center; gap: 16px; }
	.bf-pipeline-arrow { transform: rotate(90deg); padding-top: 0; padding-inline-start: 0; padding-inline-end: 0; }
	[dir="rtl"] .bf-pipeline-arrow { transform: rotate(90deg); }
	[dir="rtl"] .bf-pipeline-arrow svg { transform: none; }
	.bf-pipeline-step { max-width: 100%; min-width: auto; width: 100%; }
	.bf-lockbox { width: 240px; height: 240px; }
}
@media (max-width: 480px) {
	.bf-lockbox { width: 200px; height: 200px; }
	.bf-lock-body { width: 52px; height: 40px; }
	.bf-lock-shackle { width: 40px; height: 26px; }
	.bf-counter-digits { gap: 3px; }
	.bf-digit { width: 24px; height: 30px; line-height: 30px; font-size: 0.9rem; }
}

/* ══ Page: Firewall ══ */

.fw-hero-visual { display: flex; align-items: center; justify-content: center; }

.fw-shield {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.fw-shield-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 153, 255, 0.1) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.08) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: fwGlow 6s ease-in-out infinite;
}
@keyframes fwGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.fw-shield-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 1px solid rgba(0, 153, 255, 0.12);
}
.fw-shield-ring--3 {
	width: 280px; height: 280px;
	margin: -140px 0 0 -140px;
	border-color: rgba(0, 153, 255, 0.1);
}
.fw-shield-ring--2 {
	width: 190px; height: 190px;
	margin: -95px 0 0 -95px;
	border-color: rgba(0, 153, 255, 0.18);
}
.fw-shield-ring--1 {
	width: 100px; height: 100px;
	margin: -50px 0 0 -50px;
	border-color: rgba(0, 153, 255, 0.25);
}

.fw-shield-line {
	position: absolute;
	z-index: 1;
}
.fw-shield-line--h {
	top: 50%;
	left: 10px;
	right: 10px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 153, 255, 0.12), transparent);
}
.fw-shield-line--v {
	left: 50%;
	top: 10px;
	bottom: 10px;
	width: 1px;
	background: linear-gradient(180deg, transparent, rgba(0, 153, 255, 0.12), transparent);
}

.fw-blip {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	z-index: 3;
	opacity: 0;
}
.fw-blip::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px solid;
	opacity: 0.4;
}

.fw-blip--1, .fw-blip--3, .fw-blip--5 {
	background: #ff3366;
	box-shadow: 0 0 8px rgba(255, 51, 102, 0.6);
}
.fw-blip--1::after, .fw-blip--3::after, .fw-blip--5::after {
	border-color: #ff3366;
}

.fw-blip--2, .fw-blip--4, .fw-blip--6 {
	background: #ff3366;
	box-shadow: 0 0 8px rgba(255, 51, 102, 0.6);
}
.fw-blip--2::after, .fw-blip--4::after, .fw-blip--6::after {
	border-color: #ff3366;
}

.fw-blip--1 { top: 22%; left: 62%; animation: fwBlipBlock 5s ease-out infinite 0.5s; }
.fw-blip--2 { top: 38%; left: 26%; animation: fwBlipBlock 5s ease-out infinite 1.2s; }
.fw-blip--3 { top: 58%; left: 70%; animation: fwBlipBlock 5s ease-out infinite 1.9s; }
.fw-blip--4 { top: 68%; left: 38%; animation: fwBlipBlock 5s ease-out infinite 2.6s; }
.fw-blip--5 { top: 18%; left: 40%; animation: fwBlipBlock 5s ease-out infinite 3.3s; }
.fw-blip--6 { top: 75%; left: 58%; animation: fwBlipBlock 5s ease-out infinite 4.0s; }

@keyframes fwBlipBlock {
	0%, 8% { opacity: 0; transform: scale(0.3); }
	12% { opacity: 1; transform: scale(1.4); }
	18% { opacity: 0.9; transform: scale(1); }
	30% { opacity: 0.8; transform: scale(1); }
	50% { opacity: 0; transform: scale(0.5); }
	100% { opacity: 0; }
}

.fw-shield-core {
	position: absolute;
	top: 50%; left: 50%;
	width: 18px; height: 18px;
	margin: -9px;
	border-radius: 50%;
	background: #0099ff;
	box-shadow: 0 0 12px #0099ff, 0 0 24px rgba(0, 153, 255, 0.3);
	z-index: 5;
	animation: fwCoreBeat 2s ease-in-out infinite;
}
.fw-shield-core-pulse {
	position: absolute;
	top: 50%; left: 50%;
	width: 50px; height: 50px;
	margin: -25px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 153, 255, 0.15) 0%, transparent 70%);
	z-index: 4;
	animation: fwCorePulseAnim 2.5s ease-in-out infinite;
}
@keyframes fwCoreBeat {
	0%, 100% { transform: scale(1); opacity: 0.8; }
	50% { transform: scale(1.15); opacity: 1; }
}
@keyframes fwCorePulseAnim {
	0%, 100% { transform: scale(1); opacity: 0.5; }
	50% { transform: scale(1.8); opacity: 0.1; }
}

.fw-shield-status {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 153, 255, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	z-index: 5;
}
.fw-shield-led {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: #0099ff;
	box-shadow: 0 0 6px #0099ff, 0 0 14px rgba(0, 153, 255, 0.3);
	animation: fwLedPulse 2s ease-in-out infinite;
}
.fw-shield-bar {
	width: 40px; height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}
.fw-shield-bar::after {
	content: '';
	display: block;
	width: 80%;
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, #0099ff, #00ff88);
	animation: fwBarFill 3s ease-in-out infinite;
}
.fw-shield-tag {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(0, 153, 255, 0.7);
}
.fw-shield-tag::after { content: 'ENFORCING'; }

@keyframes fwLedPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes fwBarFill { 0%, 100% { width: 60%; } 50% { width: 95%; } }

/* ── Firewall Responsive ── */
@media (max-width: 768px) {
	.fw-shield { width: 240px; height: 240px; }
	.fw-shield-ring--3 { width: 230px; height: 230px; margin: -115px 0 0 -115px; }
	.fw-shield-ring--2 { width: 155px; height: 155px; margin: -77.5px 0 0 -77.5px; }
	.fw-shield-ring--1 { width: 80px; height: 80px; margin: -40px 0 0 -40px; }
}
@media (max-width: 480px) {
	.fw-shield { width: 190px; height: 190px; }
	.fw-shield-glow { display: none; }
	.fw-shield-ring--3 { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
	.fw-shield-ring--2 { width: 120px; height: 120px; margin: -60px 0 0 -60px; }
	.fw-shield-ring--1 { width: 60px; height: 60px; margin: -30px 0 0 -30px; }
	.fw-shield-status { padding: 4px 10px; gap: 6px; }
	.fw-shield-tag { font-size: 0.5rem; }
}

/* ══ Page: Image Optimizer ══ */
/* ── Image Compress Hero Visual ── */
.imgopt-hero-visual { display: flex; align-items: center; justify-content: center; }
.imgopt-compress-box {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 30px;
}
.imgopt-compress-glow {
	position: absolute;
	inset: -30px;
	background: radial-gradient(ellipse at center, rgba(0,255,136,0.08) 0%, transparent 70%);
	border-radius: 50%;
	animation: imgopt-glow-pulse 3s ease-in-out infinite;
	pointer-events: none;
}
@keyframes imgopt-glow-pulse {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.05); }
}

.imgopt-file {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 20px 24px;
	border-radius: var(--radius-md);
	background: var(--bg-glass);
	border: var(--border-glass);
	transition: transform 0.3s ease;
	position: relative;
	z-index: 1;
}
.imgopt-file--original {
	animation: imgopt-file-original 4s ease-in-out infinite;
}
@keyframes imgopt-file-original {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.03); }
}
.imgopt-file--optimized {
	border-color: rgba(0,255,136,0.3);
	box-shadow: 0 0 20px rgba(0,255,136,0.1);
	animation: imgopt-file-optimized 4s ease-in-out infinite;
}
@keyframes imgopt-file-optimized {
	0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(0,255,136,0.1); }
	50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(0,255,136,0.2); }
}
.imgopt-file-icon {
	width: 48px;
	height: 48px;
	color: var(--text-secondary);
}
.imgopt-file--optimized .imgopt-file-icon { color: var(--quantum-primary); }
.imgopt-file-icon svg { width: 100%; height: 100%; }
.imgopt-file-label {
	font-family: var(--font-primary);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted);
}
.imgopt-file-size {
	font-family: var(--font-primary);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-primary);
}
.imgopt-file--original .imgopt-file-size { color: var(--text-secondary); }
.imgopt-file--optimized .imgopt-file-size { color: var(--quantum-primary); }

.imgopt-arrow-wrap {
	display: flex;
	align-items: center;
	position: relative;
	color: var(--quantum-primary);
	z-index: 1;
}
.imgopt-arrow-wrap svg { position: relative; z-index: 1; }
.imgopt-arrow-beam {
	position: absolute;
	inset-inline-start: -8px;
	top: 50%;
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--quantum-primary), transparent);
	transform: translateY(-50%);
	animation: imgopt-beam-flow 2s linear infinite;
}
@keyframes imgopt-beam-flow {
	0% { opacity: 0.3; }
	50% { opacity: 1; }
	100% { opacity: 0.3; }
}

.imgopt-savings-badge {
	position: absolute;
	bottom: -10px;
	inset-inline-end: -10px;
	background: var(--gradient-primary);
	color: var(--bg-primary);
	font-family: var(--font-primary);
	font-size: 0.9rem;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: var(--radius-sm);
	z-index: 2;
	animation: imgopt-badge-pop 3s ease-in-out infinite;
}
@keyframes imgopt-badge-pop {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

/* ── Image Optimizer Responsive ── */
@media (max-width: 768px) {
	.imgopt-compress-box { gap: 12px; padding: 20px; }
	.imgopt-file { padding: 14px 16px; }
	.imgopt-file-icon { width: 36px; height: 36px; }
	.imgopt-file-size { font-size: 0.9rem; }
	.imgopt-savings-badge { font-size: 0.75rem; padding: 4px 10px; }
}
@media (max-width: 480px) {
	.imgopt-compress-box { flex-direction: column; gap: 10px; padding: 15px; }
	.imgopt-arrow-wrap { transform: rotate(90deg); }
	.imgopt-compress-glow { display: none; }
	.imgopt-file-icon { width: 28px; height: 28px; }
	.imgopt-file-label { font-size: 0.6rem; }
	.imgopt-file-size { font-size: 0.8rem; }
	.imgopt-savings-badge { bottom: auto; top: -10px; inset-inline-end: -5px; font-size: 0.65rem; }
}

/* ── Image Optimizer RTL ── */
[dir="rtl"] .imgopt-arrow-wrap svg { transform: scaleX(-1); }
[dir="rtl"] .imgopt-file-size { direction: ltr; }
[dir="rtl"] .imgopt-savings-badge { direction: ltr; }

/* ═══════════════════════════════════════════
   Redis Caching Page — Hero Visual
   ═══════════════════════════════════════════ */
.redis-hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}
.redis-memory {
	position: relative;
	width: 300px;
	height: 300px;
}
.redis-memory-glow {
	position: absolute;
	top: 50%; left: 50%;
	width: 260px; height: 260px;
	margin: -130px 0 0 -130px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 70%);
	animation: redisGlow 3s ease-in-out infinite;
}

/* Key-value slots */
.redis-slot {
	position: absolute;
	display: flex;
	gap: 6px;
	padding: 6px 12px;
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-sm);
	font-family: "Courier New", monospace;
	font-size: 0.7rem;
	color: var(--text-secondary);
	opacity: 0;
	animation: redisSlotIn 2s ease-in-out infinite;
}
.redis-key {
	color: var(--quantum-primary);
	font-weight: 600;
}
.redis-val {
	color: var(--quantum-secondary);
}
.redis-slot--1 { top: 10%; inset-inline-start: 5%; animation-delay: 0s; }
.redis-slot--2 { top: 28%; inset-inline-end: 2%; animation-delay: 0.4s; }
.redis-slot--3 { top: 48%; inset-inline-start: 0%; animation-delay: 0.8s; }
.redis-slot--4 { top: 66%; inset-inline-end: 5%; animation-delay: 1.2s; }
.redis-slot--5 { top: 82%; inset-inline-start: 10%; animation-delay: 1.6s; }

/* Core */
.redis-core-pulse {
	position: absolute;
	top: 50%; left: 50%;
	width: 60px; height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,255,136,0.3) 0%, transparent 70%);
	animation: redisPulse 2s ease-in-out infinite;
}
.redis-core {
	position: absolute;
	top: 50%; left: 50%;
	width: 28px; height: 28px;
	margin: -14px 0 0 -14px;
	border-radius: 50%;
	background: var(--gradient-primary);
	box-shadow: 0 0 20px rgba(0,255,136,0.5);
}

/* Status bar */
.redis-status {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(0,0,0,0.4);
	border: var(--border-glass);
	border-radius: 20px;
}
.redis-led {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 6px var(--quantum-primary);
	animation: redisLedPulse 1.5s ease-in-out infinite;
}
.redis-bar {
	width: 40px; height: 3px;
	border-radius: 2px;
	background: rgba(255,255,255,0.1);
	overflow: hidden;
}
.redis-bar::after {
	content: '';
	display: block;
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 2px;
	animation: redisBarFill 2s ease-in-out infinite;
}
.redis-tag {
	font-family: var(--font-primary);
	font-size: 0.55rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(0,153,255,0.7);
}
.redis-tag::after { content: 'CONNECTED'; }

/* Animations */
@keyframes redisGlow {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}
@keyframes redisSlotIn {
	0% { opacity: 0; transform: translateY(8px); }
	20% { opacity: 1; transform: translateY(0); }
	80% { opacity: 1; transform: translateY(0); }
	100% { opacity: 0; transform: translateY(-8px); }
}
@keyframes redisPulse {
	0%, 100% { transform: scale(1); opacity: 0.6; }
	50% { transform: scale(1.4); opacity: 0.2; }
}
@keyframes redisLedPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes redisBarFill { 0%, 100% { width: 60%; } 50% { width: 95%; } }

/* ── Redis Responsive ── */
@media (max-width: 768px) {
	.redis-memory { width: 240px; height: 240px; }
	.redis-memory-glow { width: 210px; height: 210px; margin: -105px 0 0 -105px; }
	.redis-slot { font-size: 0.6rem; padding: 4px 8px; }
}
@media (max-width: 480px) {
	.redis-memory { width: 190px; height: 190px; }
	.redis-memory-glow { display: none; }
	.redis-slot { font-size: 0.55rem; padding: 3px 6px; }
	.redis-status { padding: 4px 10px; gap: 6px; }
	.redis-tag { font-size: 0.5rem; }
}

/* ── Redis RTL ── */
[dir="rtl"] .redis-slot { direction: ltr; }
[dir="rtl"] .redis-status { direction: ltr; }

/* ══════════════════════════════════════════════
   PageSpeed Insights — Hero Gauge
   ══════════════════════════════════════════════ */
.pspeed-hero-visual { display: flex; align-items: center; justify-content: center; }

.pspeed-gauge {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.pspeed-gauge-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.09) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 255, 136, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: pspeedGlow 6s ease-in-out infinite;
}
@keyframes pspeedGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.pspeed-gauge-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 260px;
	height: 260px;
	margin: -130px 0 0 -130px;
	border-radius: 50%;
	border: 1px solid rgba(0, 255, 136, 0.12);
}

.pspeed-gauge-arc {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	margin: -100px 0 0 -100px;
}
.pspeed-gauge-arc-fill {
	animation: pspeedArcFill 2.5s ease-out forwards;
}
@keyframes pspeedArcFill {
	0% { stroke-dashoffset: 553; }
	100% { stroke-dashoffset: 31; }
}

.pspeed-gauge-score {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
.pspeed-gauge-number {
	font-family: var(--font-primary);
	font-size: 3.5rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pspeed-gauge-status {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 255, 136, 0.05);
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: 20px;
	padding: 5px 14px;
	white-space: nowrap;
}
.pspeed-gauge-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
	animation: pspeedLedPulse 2s ease-in-out infinite;
}
.pspeed-gauge-bar {
	width: 40px;
	height: 3px;
	border-radius: 2px;
	background: rgba(0, 255, 136, 0.15);
	overflow: hidden;
}
.pspeed-gauge-bar::after {
	content: '';
	display: block;
	width: 60%;
	height: 100%;
	background: #00ff88;
	border-radius: 2px;
	animation: pspeedBarFill 3s ease-in-out infinite;
}
.pspeed-gauge-tag {
	font-family: var(--font-primary);
	font-size: 0.55rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(0, 153, 255, 0.7);
}
.pspeed-gauge-tag::after { content: 'SCORING'; }

/* Tick marks around the gauge */
.pspeed-gauge-tick {
	position: absolute;
	width: 2px;
	height: 10px;
	background: rgba(0, 255, 136, 0.25);
	border-radius: 1px;
	left: 50%;
	top: 50%;
}
.pspeed-gauge-tick--1 { transform: translate(-50%, -130px); }
.pspeed-gauge-tick--2 { transform: translate(-50%, -130px) rotate(90deg); transform-origin: 50% 130px; }
.pspeed-gauge-tick--3 { transform: translate(-50%, -130px) rotate(180deg); transform-origin: 50% 130px; }
.pspeed-gauge-tick--4 { transform: translate(-50%, -130px) rotate(270deg); transform-origin: 50% 130px; }

@keyframes pspeedLedPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes pspeedBarFill { 0%, 100% { width: 60%; } 50% { width: 95%; } }

/* ── PageSpeed Responsive ── */
@media (max-width: 768px) {
	.pspeed-gauge { width: 240px; height: 240px; }
	.pspeed-gauge-ring { width: 210px; height: 210px; margin: -105px 0 0 -105px; }
	.pspeed-gauge-arc { width: 160px; height: 160px; margin: -80px 0 0 -80px; }
	.pspeed-gauge-number { font-size: 2.8rem; }
}
@media (max-width: 480px) {
	.pspeed-gauge { width: 190px; height: 190px; }
	.pspeed-gauge-glow { display: none; }
	.pspeed-gauge-ring { width: 170px; height: 170px; margin: -85px 0 0 -85px; }
	.pspeed-gauge-arc { width: 130px; height: 130px; margin: -65px 0 0 -65px; }
	.pspeed-gauge-number { font-size: 2.2rem; }
	.pspeed-gauge-status { padding: 4px 10px; gap: 6px; }
	.pspeed-gauge-tag { font-size: 0.5rem; }
}

/* ── PageSpeed RTL ── */
[dir="rtl"] .pspeed-gauge-number { direction: ltr; }
[dir="rtl"] .pspeed-gauge-status { direction: ltr; }

/* ══ Page: WordPress Optimization ══ */

.wpopt-hero-visual { display: flex; align-items: center; justify-content: center; }

.wpopt-db {
	position: relative;
	width: 280px;
	height: 300px;
	z-index: 2;
}

.wpopt-db-glow {
	position: absolute;
	inset: -180px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.09) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.08) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: wpoptGlow 6s ease-in-out infinite;
}
@keyframes wpoptGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.wpopt-db-table {
	position: relative;
	width: 260px;
	margin: 20px auto 0;
	background: rgba(0, 255, 136, 0.03);
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: 10px;
	overflow: hidden;
}

.wpopt-db-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: rgba(0, 255, 136, 0.06);
	border-bottom: 1px solid rgba(0, 255, 136, 0.12);
	font-family: var(--font-primary);
	font-size: 0.7rem;
	color: var(--quantum-primary);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.wpopt-db-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
	animation: wpoptLed 2s ease-in-out infinite;
}
@keyframes wpoptLed {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

.wpopt-db-row {
	height: 28px;
	margin: 6px 10px;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
}

.wpopt-db-row::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 255, 136, 0.06);
	border: 1px solid rgba(0, 255, 136, 0.08);
	border-radius: 4px;
}

.wpopt-db-row::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, rgba(0, 255, 136, 0.15), rgba(0, 153, 255, 0.1));
	border-radius: 4px;
	animation: wpoptRowFill 3s ease-in-out infinite;
}

.wpopt-db-row--1::after { animation-delay: 0s; }
.wpopt-db-row--2::after { animation-delay: 0.4s; }
.wpopt-db-row--3::after { animation-delay: 0.8s; }
.wpopt-db-row--4::after { animation-delay: 1.2s; }
.wpopt-db-row--5::after { animation-delay: 1.6s; }

@keyframes wpoptRowFill {
	0% { width: 0; opacity: 0.5; }
	50% { width: 100%; opacity: 1; }
	100% { width: 100%; opacity: 0; }
}

.wpopt-db-sweep {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.06), transparent);
	animation: wpoptSweep 4s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}
@keyframes wpoptSweep {
	0% { left: -100%; }
	100% { left: 100%; }
}

.wpopt-db-status {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 16px auto 0;
	width: 260px;
	padding: 8px 12px;
	background: rgba(0, 255, 136, 0.04);
	border: 1px solid rgba(0, 255, 136, 0.1);
	border-radius: 6px;
}

.wpopt-db-status-led {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 4px rgba(0, 255, 136, 0.5);
	flex-shrink: 0;
}

.wpopt-db-status-bar {
	flex: 1;
	height: 3px;
	border-radius: 2px;
	background: rgba(0, 255, 136, 0.1);
	position: relative;
	overflow: hidden;
}
.wpopt-db-status-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 60%;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	border-radius: 2px;
	animation: wpoptBarFill 3s ease-in-out infinite;
}
@keyframes wpoptBarFill { 0%, 100% { width: 40%; } 50% { width: 95%; } }

.wpopt-db-status-tag {
	width: 30px;
	height: 8px;
	border-radius: 4px;
	background: rgba(0, 255, 136, 0.12);
	flex-shrink: 0;
}

/* ── WordPress Optimization Responsive ── */
@media (max-width: 768px) {
	.wpopt-db { width: 240px; height: 260px; }
	.wpopt-db-table { width: 220px; }
	.wpopt-db-status { width: 220px; }
	.wpopt-db-row { height: 24px; }
}
@media (max-width: 480px) {
	.wpopt-db { width: 200px; height: 230px; }
	.wpopt-db-glow { display: none; }
	.wpopt-db-table { width: 190px; }
	.wpopt-db-status { width: 190px; }
	.wpopt-db-row { height: 20px; margin: 4px 8px; }
	.wpopt-db-header { padding: 8px 10px; font-size: 0.6rem; }
}

/* ── WordPress Optimization RTL ── */
[dir="rtl"] .wpopt-db-status { direction: ltr; }

/* ══════════════════════════════════════════════════════════════
   WordPress Management Hero
   ══════════════════════════════════════════════════════════════ */
.wpmgmt-hero-visual { display: flex; align-items: center; justify-content: center; }

.wpmgmt-panel {
	position: relative;
	width: 320px;
	height: 260px;
	z-index: 2;
}

.wpmgmt-panel-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.09) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.07) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: wpmgmtGlow 6s ease-in-out infinite;
}
@keyframes wpmgmtGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.wpmgmt-panel-frame {
	width: 100%;
	height: 220px;
	border-radius: 12px;
	border: 1px solid rgba(0, 255, 136, 0.2);
	background: rgba(10, 10, 15, 0.9);
	overflow: hidden;
	box-shadow: 0 0 40px rgba(0, 255, 136, 0.08), 0 0 80px rgba(0, 153, 255, 0.06);
}

.wpmgmt-panel-titlebar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wpmgmt-panel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
.wpmgmt-panel-dot--1 { background: #ff5f56; }
.wpmgmt-panel-dot--2 { background: #ffbd2e; }
.wpmgmt-panel-dot--3 { background: #27c93f; }

.wpmgmt-panel-body {
	display: flex;
	height: calc(100% - 33px);
}

.wpmgmt-panel-sidebar {
	width: 60px;
	border-inline-end: 1px solid rgba(255, 255, 255, 0.06);
	padding: 12px 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wpmgmt-panel-nav-item {
	height: 6px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.08);
	transition: background 0.3s;
}
.wpmgmt-panel-nav-item--active {
	background: rgba(0, 255, 136, 0.4);
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.2);
}

.wpmgmt-panel-content {
	flex: 1;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wpmgmt-panel-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.03);
	animation: wpmgmtCardPulse 4s ease-in-out infinite;
}
.wpmgmt-panel-card--1 { animation-delay: 0s; }
.wpmgmt-panel-card--2 { animation-delay: 1.3s; }
.wpmgmt-panel-card--3 { animation-delay: 2.6s; }

@keyframes wpmgmtCardPulse {
	0%, 100% { border-color: rgba(255, 255, 255, 0.06); }
	50% { border-color: rgba(0, 255, 136, 0.25); }
}

.wpmgmt-panel-card-icon {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: rgba(0, 255, 136, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--quantum-primary);
	flex-shrink: 0;
}

.wpmgmt-panel-card-bar {
	flex: 1;
	height: 6px;
	border-radius: 3px;
	background: linear-gradient(90deg, rgba(0, 255, 136, 0.3), rgba(0, 153, 255, 0.2));
	animation: wpmgmtBarFill 3s ease-in-out infinite;
}
@keyframes wpmgmtBarFill {
	0%, 100% { opacity: 0.5; transform: scaleX(0.7); transform-origin: start; }
	50% { opacity: 1; transform: scaleX(1); transform-origin: start; }
}

.wpmgmt-panel-status {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	padding: 6px 14px;
	border-radius: 20px;
	background: rgba(10, 10, 15, 0.85);
	border: 1px solid rgba(0, 255, 136, 0.15);
	width: fit-content;
	margin-inline: auto;
}

.wpmgmt-panel-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
	animation: wpmgmtLedPulse 2s ease-in-out infinite;
}

.wpmgmt-panel-bar {
	width: 40px;
	height: 4px;
	border-radius: 2px;
	background: rgba(0, 255, 136, 0.2);
	position: relative;
	overflow: hidden;
}
.wpmgmt-panel-bar::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--quantum-primary);
	border-radius: 2px;
	animation: wpmgmtStatusBar 3s ease-in-out infinite;
}

.wpmgmt-panel-tag {
	width: 30px;
	height: 4px;
	border-radius: 2px;
	background: rgba(0, 153, 255, 0.3);
}

@keyframes wpmgmtLedPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes wpmgmtStatusBar { 0%, 100% { width: 60%; } 50% { width: 95%; } }

/* ── WordPress Management Responsive ── */
@media (max-width: 768px) {
	.wpmgmt-panel { width: 260px; height: 220px; }
	.wpmgmt-panel-frame { height: 185px; }
	.wpmgmt-panel-sidebar { width: 45px; padding: 8px 6px; }
	.wpmgmt-panel-content { padding: 8px; gap: 8px; }
	.wpmgmt-panel-card { padding: 8px 10px; }
}
@media (max-width: 480px) {
	.wpmgmt-panel { width: 210px; height: 185px; }
	.wpmgmt-panel-glow { display: none; }
	.wpmgmt-panel-frame { height: 155px; border-radius: 8px; }
	.wpmgmt-panel-sidebar { width: 36px; padding: 6px 4px; gap: 6px; }
	.wpmgmt-panel-content { padding: 6px; gap: 6px; }
	.wpmgmt-panel-card { padding: 6px 8px; gap: 6px; }
	.wpmgmt-panel-card-icon { width: 22px; height: 22px; }
	.wpmgmt-panel-card-icon svg { width: 10px; height: 10px; }
	.wpmgmt-panel-status { padding: 4px 10px; gap: 6px; }
}

/* ── WordPress Management RTL ── */
[dir="rtl"] .wpmgmt-panel-status { direction: ltr; }

/* ══════════════════════════════════════════════
   WordPress Security Hero (.wpsec-hero-visual)
   ══════════════════════════════════════════════ */
.wpsec-hero-visual { display: flex; align-items: center; justify-content: center; }

.wpsec-shield {
	position: relative;
	width: 280px;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.wpsec-shield-glow {
	position: absolute;
	inset: -180px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.09) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.08) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 153, 255, 0.12) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: wpsecGlow 6s ease-in-out infinite;
}
@keyframes wpsecGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.wpsec-wp-logo {
	width: 90px;
	height: 90px;
	color: rgba(0, 255, 136, 0.7);
	z-index: 3;
	animation: wpsecLogoPulse 4s ease-in-out infinite;
}
.wpsec-wp-logo svg { width: 100%; height: 100%; }
@keyframes wpsecLogoPulse {
	0%, 100% { opacity: 0.7; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.05); }
}

.wpsec-shield-border {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 180px;
	height: 210px;
	margin: -115px 0 0 -90px;
	border: 2px solid rgba(0, 255, 136, 0.25);
	border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
	animation: wpsecShieldPulse 3s ease-in-out infinite;
}
@keyframes wpsecShieldPulse {
	0%, 100% { border-color: rgba(0, 255, 136, 0.25); box-shadow: 0 0 20px rgba(0, 255, 136, 0.05); }
	50% { border-color: rgba(0, 255, 136, 0.45); box-shadow: 0 0 30px rgba(0, 255, 136, 0.15); }
}

.wpsec-scan-line {
	position: absolute;
	left: 15%;
	right: 15%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(0, 153, 255, 0.6), transparent);
	opacity: 0;
	animation: wpsecScanLine 3s ease-in-out infinite;
}
.wpsec-scan-line--1 { top: 30%; animation-delay: 0s; }
.wpsec-scan-line--2 { top: 50%; animation-delay: 1s; }
.wpsec-scan-line--3 { top: 70%; animation-delay: 2s; }
@keyframes wpsecScanLine {
	0% { opacity: 0; transform: translateY(-10px); }
	30% { opacity: 0.8; }
	70% { opacity: 0.8; }
	100% { opacity: 0; transform: translateY(10px); }
}

.wpsec-orbit {
	position: absolute;
	inset: -20px;
	border: 1px solid rgba(0, 255, 136, 0.08);
	border-radius: 50%;
	animation: wpsecOrbitSpin 12s linear infinite;
}
@keyframes wpsecOrbitSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.wpsec-orbit-dot {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}
.wpsec-orbit-dot--1 { top: 0; left: 50%; margin: -4px 0 0 -4px; }
.wpsec-orbit-dot--2 { bottom: 20%; right: 0; margin: 0 -4px -4px 0; }
.wpsec-orbit-dot--3 { bottom: 20%; left: 0; margin: 0 0 -4px -4px; }

.wpsec-status {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 14px;
	background: rgba(0, 255, 136, 0.06);
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: 20px;
}

.wpsec-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.8);
	animation: wpsecLedBlink 2s ease-in-out infinite;
}
@keyframes wpsecLedBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

.wpsec-status-bar {
	width: 50px;
	height: 3px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}
.wpsec-status-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 60%;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	border-radius: 2px;
	animation: wpsecBarFill 3s ease-in-out infinite;
}
@keyframes wpsecBarFill { 0%, 100% { width: 60%; } 50% { width: 95%; } }

/* ── WordPress Security Hero Responsive ── */
@media (max-width: 768px) {
	.wpsec-shield { width: 220px; height: 220px; }
	.wpsec-wp-logo { width: 70px; height: 70px; }
	.wpsec-shield-border { width: 140px; height: 170px; margin: -95px 0 0 -70px; }
	.wpsec-orbit { inset: -15px; }
}
@media (max-width: 480px) {
	.wpsec-shield { width: 180px; height: 180px; }
	.wpsec-shield-glow { display: none; }
	.wpsec-wp-logo { width: 56px; height: 56px; }
	.wpsec-shield-border { width: 110px; height: 135px; margin: -77px 0 0 -55px; }
	.wpsec-orbit { inset: -10px; }
	.wpsec-orbit-dot { width: 6px; height: 6px; }
	.wpsec-scan-line { left: 20%; right: 20%; }
	.wpsec-status { padding: 3px 10px; gap: 6px; }
}

/* ── WordPress Security RTL ── */
[dir="rtl"] .wpsec-status { direction: ltr; }

/* ══════════════════════════════════════════════════════════
   PHP Management Hero
   ══════════════════════════════════════════════════════════ */
.phpmgmt-hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}
.phpmgmt-terminal {
	position: relative;
	width: 300px;
	height: 300px;
}
.phpmgmt-terminal-glow {
	position: absolute;
	top: 50%; left: 50%;
	width: 260px; height: 260px;
	margin: -130px 0 0 -130px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,153,255,0.15) 0%, transparent 70%);
	animation: phpmgmtGlow 3s ease-in-out infinite;
}

/* Version badges */
.phpmgmt-ver {
	position: absolute;
	display: flex;
	gap: 6px;
	padding: 6px 12px;
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-sm);
	font-family: "Courier New", monospace;
	font-size: 0.7rem;
	color: var(--text-secondary);
	opacity: 0;
	animation: phpmgmtVerIn 2s ease-in-out infinite;
}
.phpmgmt-ver-label {
	color: var(--quantum-secondary);
	font-weight: 600;
}
.phpmgmt-ver-num {
	color: var(--quantum-primary);
}
.phpmgmt-ver--1 { top: 10%; inset-inline-start: 5%; animation-delay: 0s; }
.phpmgmt-ver--2 { top: 30%; inset-inline-end: 2%; animation-delay: 0.5s; }
.phpmgmt-ver--3 { top: 55%; inset-inline-start: 0%; animation-delay: 1s; }
.phpmgmt-ver--4 { top: 75%; inset-inline-end: 5%; animation-delay: 1.5s; }

/* Core */
.phpmgmt-core-pulse {
	position: absolute;
	top: 50%; left: 50%;
	width: 60px; height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,153,255,0.3) 0%, transparent 70%);
	animation: phpmgmtPulse 2s ease-in-out infinite;
}
.phpmgmt-core {
	position: absolute;
	top: 50%; left: 50%;
	width: 28px; height: 28px;
	margin: -14px 0 0 -14px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0099ff, #00ff88);
	box-shadow: 0 0 20px rgba(0,153,255,0.5);
}

/* Status bar */
.phpmgmt-status {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(0,0,0,0.4);
	border: var(--border-glass);
	border-radius: 20px;
}
.phpmgmt-led {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--quantum-secondary);
	box-shadow: 0 0 6px var(--quantum-secondary);
	animation: phpmgmtLedPulse 1.5s ease-in-out infinite;
}
.phpmgmt-bar {
	width: 40px; height: 3px;
	border-radius: 2px;
	background: rgba(255,255,255,0.1);
	overflow: hidden;
}
.phpmgmt-bar::after {
	content: '';
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #0099ff, #00ff88);
	border-radius: 2px;
	animation: phpmgmtBarFill 2.5s ease-in-out infinite;
}
.phpmgmt-tag {
	font-family: "Courier New", monospace;
	font-size: 0.55rem;
	color: var(--text-muted);
	letter-spacing: 1px;
}
.phpmgmt-tag::after {
	content: 'PHP-FPM';
}

/* Animations */
@keyframes phpmgmtGlow {
	0%, 100% { transform: scale(1); opacity: 0.6; }
	50% { transform: scale(1.08); opacity: 1; }
}
@keyframes phpmgmtVerIn {
	0% { opacity: 0; transform: translateY(6px); }
	20% { opacity: 1; transform: translateY(0); }
	80% { opacity: 1; transform: translateY(0); }
	100% { opacity: 0; transform: translateY(-6px); }
}
@keyframes phpmgmtPulse {
	0%, 100% { transform: scale(1); opacity: 0.6; }
	50% { transform: scale(1.4); opacity: 0; }
}
@keyframes phpmgmtLedPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}
@keyframes phpmgmtBarFill {
	0% { width: 0; }
	50% { width: 100%; }
	100% { width: 0; }
}

/* ── PHP Management Hero Responsive ── */
@media (max-width: 768px) {
	.phpmgmt-terminal { width: 220px; height: 220px; }
	.phpmgmt-terminal-glow { width: 190px; height: 190px; margin: -95px 0 0 -95px; }
	.phpmgmt-ver { font-size: 0.6rem; padding: 4px 8px; }
}
@media (max-width: 480px) {
	.phpmgmt-terminal { width: 180px; height: 180px; }
	.phpmgmt-terminal-glow { display: none; }
	.phpmgmt-ver { font-size: 0.55rem; padding: 3px 6px; }
	.phpmgmt-status { padding: 3px 10px; gap: 6px; }
}

/* ── PHP Management RTL ── */
[dir="rtl"] .phpmgmt-status { direction: ltr; }

/* ═══════════════════════════════════════
   SSH Access Hero
   ═══════════════════════════════════════ */
.ssh-hero-visual { display: flex; align-items: center; justify-content: center; }

.ssh-terminal {
	position: relative;
	width: 300px;
	height: 260px;
	z-index: 2;
}

.ssh-terminal-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.12) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.08) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.06) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: sshGlow 6s ease-in-out infinite;
}
@keyframes sshGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

.ssh-terminal-window {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 260px;
	background: rgba(10, 10, 20, 0.95);
	border: 1px solid rgba(0, 255, 136, 0.25);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0, 255, 136, 0.1), 0 0 80px rgba(0, 255, 136, 0.05);
}

.ssh-terminal-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	background: rgba(26, 26, 46, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ssh-terminal-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.ssh-terminal-dot--red { background: #ff5f57; }
.ssh-terminal-dot--yellow { background: #ffbd2e; }
.ssh-terminal-dot--green { background: #28c840; }

.ssh-terminal-body {
	padding: 14px 16px 18px;
	font-family: "Courier New", monospace;
	font-size: 13px;
	line-height: 1.8;
}

.ssh-terminal-line {
	white-space: nowrap;
	overflow: hidden;
}

.ssh-prompt {
	color: #00ff88;
	font-weight: 700;
	margin-inline-end: 8px;
}

.ssh-cmd {
	color: #0099ff;
}

.ssh-arg {
	color: #b8b8d1;
	margin-inline-start: 6px;
}

.ssh-output {
	color: #7a7a95;
}

/* Typing animation for each line */
.ssh-terminal-line--1 {
	width: 0;
	animation: sshType 1.2s steps(20) 0.5s forwards;
}
.ssh-terminal-line--2 {
	opacity: 0;
	animation: sshFadeIn 0.3s ease 1.8s forwards;
}
.ssh-terminal-line--3 {
	opacity: 0;
	animation: sshFadeIn 0.3s ease 2.2s forwards;
}

@keyframes sshType {
	to { width: 100%; }
}
@keyframes sshFadeIn {
	to { opacity: 1; }
}

.ssh-cursor {
	display: inline-block;
	width: 8px;
	height: 15px;
	background: #00ff88;
	vertical-align: middle;
	animation: sshBlink 1s step-end infinite;
}
@keyframes sshBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

/* Floating key icon */
.ssh-key-float {
	position: absolute;
	top: 12px;
	inset-inline-end: -10px;
	width: 48px;
	height: 48px;
	background: rgba(26, 26, 46, 0.9);
	border: 1px solid rgba(0, 255, 136, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00ff88;
	box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
	animation: sshKeyFloat 3s ease-in-out infinite;
}
@keyframes sshKeyFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ── SSH Hero Responsive ── */
@media (max-width: 768px) {
	.ssh-terminal { width: 240px; height: 220px; }
	.ssh-terminal-window { width: 220px; }
	.ssh-terminal-body { font-size: 11px; padding: 10px 12px 14px; }
	.ssh-key-float { width: 40px; height: 40px; top: 8px; inset-inline-end: -6px; }
	.ssh-key-float svg { width: 22px; height: 22px; }
}
@media (max-width: 480px) {
	.ssh-terminal { width: 200px; height: 190px; }
	.ssh-terminal-window { width: 190px; }
	.ssh-terminal-body { font-size: 10px; padding: 8px 10px 12px; }
	.ssh-terminal-glow { display: none; }
	.ssh-key-float { width: 34px; height: 34px; }
	.ssh-key-float svg { width: 18px; height: 18px; }
}

/* ── SSH Hero RTL ── */
[dir="rtl"] .ssh-terminal-body { direction: ltr; text-align: left; }

/* ══════════════════════════════════════════════
   Node.js Hosting Hero
   ══════════════════════════════════════════════ */
.node-hero-visual { display: flex; align-items: center; justify-content: center; }
.node-terminal {
	position: relative;
	width: 320px;
	background: rgba(10, 10, 15, 0.95);
	border: 1px solid rgba(0, 255, 136, 0.25);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: 0 0 40px rgba(0, 255, 136, 0.1), 0 0 80px rgba(0, 153, 255, 0.05);
}
.node-terminal-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 50% 80%, rgba(0, 255, 136, 0.06) 0%, transparent 60%);
	pointer-events: none;
}
.node-terminal-bar {
	display: flex;
	gap: 6px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.node-terminal-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.node-terminal-dot--red { background: #ff5f56; }
.node-terminal-dot--yellow { background: #ffbd2e; }
.node-terminal-dot--green { background: #27c93f; }
.node-terminal-body {
	padding: 16px 18px 20px;
	font-family: 'Courier New', monospace;
	font-size: 0.85rem;
	line-height: 1.8;
	color: var(--text-secondary);
}
.node-line {
	opacity: 0;
	animation: nodeLineIn 0.4s ease forwards;
}
.node-line--1 { animation-delay: 0.5s; }
.node-line--2 { animation-delay: 1.2s; }
.node-line--3 { animation-delay: 2s; }
.node-line--4 { animation-delay: 2.8s; }
.node-prompt { color: #0099ff; margin-inline-end: 6px; }
.node-ok { color: #00ff88; }
.node-cursor {
	display: inline-block;
	width: 8px;
	height: 16px;
	background: #00ff88;
	margin-top: 4px;
	opacity: 0;
	animation: nodeCursorBlink 1s step-end infinite 3.4s;
}
@keyframes nodeLineIn { to { opacity: 1; } }
@keyframes nodeCursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.node-status {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-family: var(--font-secondary);
	font-size: 0.75rem;
	color: var(--text-muted);
}
.node-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
	animation: nodeStatusPulse 2s ease-in-out infinite;
}
@keyframes nodeStatusPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.node-status-text { text-transform: uppercase; letter-spacing: 1px; }

/* ── Node.js Hero Responsive ── */
@media (max-width: 768px) {
	.node-terminal { width: 270px; }
	.node-terminal-body { font-size: 0.78rem; padding: 12px 14px 16px; }
}
@media (max-width: 480px) {
	.node-terminal { width: 230px; }
	.node-terminal-glow { display: none; }
	.node-terminal-body { font-size: 0.72rem; padding: 10px 12px 14px; }
	.node-terminal-dot { width: 8px; height: 8px; }
}

/* ── Node.js Hero RTL ── */
[dir="rtl"] .node-terminal-body { direction: ltr; text-align: left; }
[dir="rtl"] .node-status { direction: ltr; }

/* ══════════════════════════════════════════════════
   Git Integration Hero (.git-hero-visual)
   ══════════════════════════════════════════════════ */
.git-hero-visual { display: flex; align-items: center; justify-content: center; }
.git-terminal {
	position: relative;
	width: 320px;
	background: rgba(10, 10, 15, 0.95);
	border: 1px solid rgba(0, 255, 136, 0.25);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: 0 0 40px rgba(0, 255, 136, 0.1), 0 0 80px rgba(0, 153, 255, 0.05);
}
.git-terminal-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 50% 80%, rgba(0, 255, 136, 0.06) 0%, transparent 60%);
	pointer-events: none;
}
.git-terminal-bar {
	display: flex;
	gap: 6px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.git-terminal-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.git-terminal-dot--red { background: #ff5f56; }
.git-terminal-dot--yellow { background: #ffbd2e; }
.git-terminal-dot--green { background: #27c93f; }
.git-terminal-body {
	padding: 16px 18px 20px;
	font-family: 'Courier New', monospace;
	font-size: 0.85rem;
	line-height: 1.8;
	color: var(--text-secondary);
}
.git-line {
	opacity: 0;
	animation: gitLineIn 0.4s ease forwards;
}
.git-line--1 { animation-delay: 0.5s; }
.git-line--2 { animation-delay: 1.2s; }
.git-line--3 { animation-delay: 2s; }
.git-line--4 { animation-delay: 2.8s; }
.git-prompt { color: #0099ff; margin-inline-end: 6px; }
.git-ok { color: #00ff88; }
.git-string { color: #ffbd2e; }
.git-diff-add { color: #00ff88; }
.git-diff-del { color: #ff5f56; }
.git-cursor {
	display: inline-block;
	width: 8px;
	height: 16px;
	background: #00ff88;
	margin-top: 4px;
	opacity: 0;
	animation: gitCursorBlink 1s step-end infinite 3.4s;
}
@keyframes gitLineIn { to { opacity: 1; } }
@keyframes gitCursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.git-status {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-family: var(--font-secondary);
	font-size: 0.75rem;
	color: var(--text-muted);
}
.git-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
	animation: gitStatusPulse 2s ease-in-out infinite;
}
@keyframes gitStatusPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.git-status-branch {
	display: flex;
	align-items: center;
	gap: 4px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #00ff88;
}
.git-status-branch svg { color: var(--text-muted); }

/* ── Git Hero Responsive ── */
@media (max-width: 768px) {
	.git-terminal { width: 270px; }
	.git-terminal-body { font-size: 0.78rem; padding: 12px 14px 16px; }
}
@media (max-width: 480px) {
	.git-terminal { width: 230px; }
	.git-terminal-glow { display: none; }
	.git-terminal-body { font-size: 0.72rem; padding: 10px 12px 14px; }
	.git-terminal-dot { width: 8px; height: 8px; }
}

/* ── Git Hero RTL ── */
[dir="rtl"] .git-terminal-body { direction: ltr; text-align: left; }
[dir="rtl"] .git-status { direction: ltr; }

/* ═══════════════════════════════════════
   File Manager Hero
   ═══════════════════════════════════════ */
.filemgr-hero-visual { display: flex; align-items: center; justify-content: center; }

.filemgr-editor {
	position: relative;
	width: 300px;
	height: 260px;
	z-index: 2;
}

.filemgr-editor-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.12) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.08) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.06) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: filemgrGlow 6s ease-in-out infinite;
}
@keyframes filemgrGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

.filemgr-editor-window {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 260px;
	background: rgba(10, 10, 20, 0.95);
	border: 1px solid rgba(0, 255, 136, 0.25);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0, 255, 136, 0.1), 0 0 80px rgba(0, 255, 136, 0.05);
}

.filemgr-editor-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	background: rgba(26, 26, 46, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.filemgr-editor-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.filemgr-editor-dot--red { background: #ff5f56; }
.filemgr-editor-dot--yellow { background: #ffbd2e; }
.filemgr-editor-dot--green { background: #27c93f; }

.filemgr-editor-filename {
	margin-inline-start: auto;
	font-family: var(--font-secondary);
	font-size: 0.7rem;
	color: var(--text-muted);
	letter-spacing: 0.5px;
}

.filemgr-editor-body {
	padding: 14px 16px 18px;
	font-family: 'Courier New', monospace;
	font-size: 0.82rem;
	line-height: 1.8;
	direction: ltr;
	text-align: left;
}

.filemgr-editor-line {
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	opacity: 0;
	animation: filemgrLineAppear 0.4s ease forwards;
}
.filemgr-editor-line--1 { animation-delay: 0.3s; }
.filemgr-editor-line--2 { animation-delay: 0.7s; }
.filemgr-editor-line--3 { animation-delay: 1.1s; }

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

.filemgr-line-num {
	color: rgba(255, 255, 255, 0.2);
	font-size: 0.72rem;
	min-width: 14px;
	text-align: end;
	user-select: none;
}
.filemgr-tag { color: #ff0066; }
.filemgr-keyword { color: #0099ff; }
.filemgr-string { color: #00ff88; }
.filemgr-punct { color: var(--text-secondary); }

.filemgr-cursor {
	display: inline-block;
	width: 7px;
	height: 14px;
	background: #00ff88;
	margin-inline-start: 2px;
	animation: filemgrBlink 1s step-end infinite;
	vertical-align: middle;
}
@keyframes filemgrBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.filemgr-file-float {
	position: absolute;
	bottom: 10px;
	inset-inline-end: -10px;
	color: var(--quantum-secondary);
	opacity: 0.5;
	animation: filemgrFileFloat 4s ease-in-out infinite;
	filter: drop-shadow(0 0 8px rgba(0, 153, 255, 0.3));
}
@keyframes filemgrFileFloat {
	0%, 100% { transform: translateY(0) rotate(-6deg); }
	50% { transform: translateY(-10px) rotate(6deg); }
}

/* ── File Manager Hero Responsive ── */
@media (max-width: 768px) {
	.filemgr-editor { width: 270px; }
	.filemgr-editor-body { font-size: 0.78rem; padding: 12px 14px 16px; }
}
@media (max-width: 480px) {
	.filemgr-editor { width: 230px; }
	.filemgr-editor-glow { display: none; }
	.filemgr-editor-body { font-size: 0.72rem; padding: 10px 12px 14px; }
	.filemgr-editor-dot { width: 8px; height: 8px; }
}

/* ── File Manager Hero RTL ── */
[dir="rtl"] .filemgr-editor-body { direction: ltr; text-align: left; }

/* ══════════════════════════════════════════════════
   Cronjobs Hero (.cron-hero-visual)
   ══════════════════════════════════════════════════ */
.cron-hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}
.cron-scheduler {
	position: relative;
	width: 300px;
	height: 300px;
}
.cron-scheduler-glow {
	position: absolute;
	inset: -30px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
	animation: cronGlow 4s ease-in-out infinite;
}
@keyframes cronGlow { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.cron-clock {
	position: absolute;
	inset: 30px;
	border-radius: 50%;
}
.cron-clock-ring--outer {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid rgba(0, 255, 136, 0.3);
}
.cron-clock-ring--inner {
	position: absolute;
	inset: 18px;
	border-radius: 50%;
	border: 1px solid rgba(0, 153, 255, 0.2);
}
.cron-clock-hand--hour {
	position: absolute;
	bottom: 50%;
	left: 50%;
	width: 2px;
	height: 50px;
	margin-inline-start: -1px;
	background: linear-gradient(to top, rgba(0, 255, 136, 0.8), rgba(0, 255, 136, 0.2));
	transform-origin: bottom center;
	animation: cronHourHand 12s linear infinite;
	border-radius: 1px;
}
@keyframes cronHourHand { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cron-clock-hand--minute {
	position: absolute;
	bottom: 50%;
	left: 50%;
	width: 2px;
	height: 70px;
	margin-inline-start: -1px;
	background: linear-gradient(to top, rgba(0, 153, 255, 0.9), rgba(0, 153, 255, 0.2));
	transform-origin: bottom center;
	animation: cronMinuteHand 4s linear infinite;
	border-radius: 1px;
}
@keyframes cronMinuteHand { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cron-clock-dot {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}
/* Schedule ticks around the clock */
.cron-tick {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--quantum-secondary);
	opacity: 0;
	animation: cronTickBlink 3s ease-in-out infinite;
}
.cron-tick--1 { top: 10px; left: 50%; margin-inline-start: -2px; animation-delay: 0s; }
.cron-tick--2 { top: 60px; right: 20px; animation-delay: 0.5s; }
.cron-tick--3 { bottom: 60px; right: 20px; animation-delay: 1s; }
.cron-tick--4 { bottom: 10px; left: 50%; margin-inline-start: -2px; animation-delay: 1.5s; }
.cron-tick--5 { bottom: 60px; left: 20px; animation-delay: 2s; }
.cron-tick--6 { top: 60px; left: 20px; animation-delay: 2.5s; }
@keyframes cronTickBlink { 0%, 100% { opacity: 0.2; } 50% { opacity: 1; box-shadow: 0 0 6px rgba(0, 153, 255, 0.6); } }
/* Pulse rings */
.cron-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	border: 1px solid rgba(0, 255, 136, 0.3);
	opacity: 0;
	animation: cronPulseRing 3s ease-out infinite;
}
.cron-pulse--2 { animation-delay: 1s; }
.cron-pulse--3 { animation-delay: 2s; }
@keyframes cronPulseRing { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(4); opacity: 0; } }
/* Status bar */
.cron-status {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	font-family: var(--font-secondary);
	font-size: 0.7rem;
	color: var(--text-muted);
	white-space: nowrap;
}
.cron-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
	animation: cronLedPulse 2s ease-in-out infinite;
}
@keyframes cronLedPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.cron-status-bar {
	width: 40px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}
.cron-status-bar::after {
	content: '';
	display: block;
	width: 60%;
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 2px;
	animation: cronBarFill 2.5s ease-in-out infinite;
}
@keyframes cronBarFill { 0% { width: 20%; } 50% { width: 80%; } 100% { width: 20%; } }
.cron-status-tag {
	width: 20px;
	height: 3px;
	border-radius: 2px;
	background: rgba(0, 153, 255, 0.3);
}

/* ── Cronjobs Hero Responsive ── */
@media (max-width: 768px) {
	.cron-scheduler { width: 240px; height: 240px; }
	.cron-clock { inset: 24px; }
	.cron-clock-hand--hour { height: 40px; }
	.cron-clock-hand--minute { height: 56px; }
}
@media (max-width: 480px) {
	.cron-scheduler { width: 200px; height: 200px; }
	.cron-scheduler-glow { display: none; }
	.cron-clock { inset: 20px; }
	.cron-clock-hand--hour { height: 34px; }
	.cron-clock-hand--minute { height: 48px; }
	.cron-pulse { display: none; }
}

/* ── Cronjobs Hero RTL ── */
[dir="rtl"] .cron-status { direction: ltr; }

/* ══ Page: Site Cloning ══ */

.clone-hero-visual { display: flex; align-items: center; justify-content: center; }

.clone-visual-container {
	position: relative;
	width: 300px;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.clone-visual-glow {
	position: absolute;
	inset: -100px;
	background: radial-gradient(circle at center, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

/* Source & Target servers */
.clone-source, .clone-target {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.clone-source { inset-inline-start: 0; }
.clone-target { inset-inline-end: 0; }

.clone-server-icon {
	width: 70px;
	height: 70px;
	border-radius: var(--radius-md);
	background: var(--bg-card);
	border: var(--border-glass);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--quantum-primary);
	box-shadow: var(--shadow-card);
}
.clone-server-icon svg { width: 36px; height: 36px; }
.clone-server-icon--target {
	color: var(--quantum-secondary);
	border-color: rgba(0, 153, 255, 0.3);
	animation: cloneTargetPulse 2s ease-in-out infinite;
}

.clone-label {
	font-family: var(--font-primary);
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
}

/* Data stream between servers */
.clone-stream {
	position: absolute;
	top: 50%;
	inset-inline-start: 85px;
	width: 130px;
	height: 2px;
	transform: translateY(-50%);
}
.clone-stream-line {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 255, 136, 0.4), rgba(0, 153, 255, 0.4));
	border-radius: 1px;
}

.clone-particle {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	background: var(--quantum-primary);
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
	animation: cloneParticleFlow 2s linear infinite;
}
.clone-particle--2 { animation-delay: -0.66s; background: var(--quantum-secondary); box-shadow: 0 0 10px rgba(0, 153, 255, 0.6); }
.clone-particle--3 { animation-delay: -1.33s; }

[dir="rtl"] .clone-particle { animation-name: cloneParticleFlowRtl; }

@keyframes cloneParticleFlow {
	0% { inset-inline-start: -8px; opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { inset-inline-start: 130px; opacity: 0; }
}
@keyframes cloneParticleFlowRtl {
	0% { right: -8px; opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { right: 130px; opacity: 0; }
}

@keyframes cloneTargetPulse {
	0%, 100% { box-shadow: var(--shadow-card); }
	50% { box-shadow: 0 0 20px rgba(0, 153, 255, 0.3); }
}

/* Status bar */
.clone-status {
	position: absolute;
	bottom: 20px;
	inset-inline-start: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
}
[dir="rtl"] .clone-status { transform: translateX(50%); }

.clone-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
	animation: cloneLedBlink 1.5s ease-in-out infinite;
}
@keyframes cloneLedBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.clone-status-bar {
	width: 80px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}
.clone-status-fill {
	display: block;
	width: 60%;
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 2px;
	animation: cloneBarFill 2.5s ease-in-out infinite;
}
@keyframes cloneBarFill { 0% { width: 20%; } 50% { width: 90%; } 100% { width: 20%; } }

/* ── Site Cloning Hero Responsive ── */
@media (max-width: 768px) {
	.clone-visual-container { width: 240px; height: 240px; }
	.clone-server-icon { width: 56px; height: 56px; }
	.clone-server-icon svg { width: 28px; height: 28px; }
	.clone-stream { inset-inline-start: 68px; width: 104px; }
	.clone-particle { width: 6px; height: 6px; }
}
@media (max-width: 480px) {
	.clone-visual-container { width: 200px; height: 200px; }
	.clone-visual-glow { display: none; }
	.clone-server-icon { width: 48px; height: 48px; }
	.clone-server-icon svg { width: 24px; height: 24px; }
	.clone-stream { inset-inline-start: 58px; width: 84px; }
	.clone-label { font-size: 0.55rem; }
}

/* ── Site Cloning Hero RTL ── */
[dir="rtl"] .clone-status { direction: ltr; }

/* ══ Page: Email Forwarding ══ */

.emailfwd-hero-visual { display: flex; align-items: center; justify-content: center; }

.emailfwd-envelope {
	position: relative;
	width: 280px;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.emailfwd-envelope-glow {
	position: absolute;
	inset: -40px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 70%);
	animation: emailfwdGlow 3s ease-in-out infinite;
}

.emailfwd-envelope-body {
	position: relative;
	width: 120px;
	height: 90px;
	z-index: 2;
}

.emailfwd-envelope-front {
	position: absolute;
	inset: 0;
	background: var(--bg-glass);
	border: var(--border-quantum);
	border-radius: var(--radius-sm);
}

.emailfwd-envelope-flap {
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	width: 100%;
	height: 50%;
	background: rgba(0,255,136,0.08);
	border: var(--border-quantum);
	border-radius: var(--radius-sm) var(--radius-sm) 0 0;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	z-index: 3;
}

.emailfwd-route {
	position: absolute;
	width: 60px;
	height: 2px;
	background: var(--gradient-primary);
	z-index: 1;
	opacity: 0;
	animation: emailfwdRoute 2.4s ease-in-out infinite;
}

.emailfwd-route--1 { top: 35%; inset-inline-end: 20px; transform: rotate(-20deg); animation-delay: 0s; }
.emailfwd-route--2 { top: 50%; inset-inline-end: 10px; animation-delay: 0.4s; }
.emailfwd-route--3 { top: 65%; inset-inline-end: 20px; transform: rotate(20deg); animation-delay: 0.8s; }

.emailfwd-dest {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--quantum-secondary);
	box-shadow: 0 0 8px rgba(0,153,255,0.6);
	z-index: 1;
	opacity: 0;
	animation: emailfwdDest 2.4s ease-in-out infinite;
}

.emailfwd-dest--1 { top: 28%; inset-inline-end: 5px; animation-delay: 0.3s; }
.emailfwd-dest--2 { top: 48%; inset-inline-end: -5px; animation-delay: 0.7s; }
.emailfwd-dest--3 { top: 68%; inset-inline-end: 5px; animation-delay: 1.1s; }

.emailfwd-pulse {
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 1px solid rgba(0,255,136,0.2);
	animation: emailfwdPulse 2s ease-out infinite;
}

@keyframes emailfwdGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.05); }
}

@keyframes emailfwdRoute {
	0%, 20% { opacity: 0; transform: scaleX(0); }
	40%, 60% { opacity: 1; transform: scaleX(1); }
	80%, 100% { opacity: 0; transform: scaleX(0); }
}

@keyframes emailfwdDest {
	0%, 30% { opacity: 0; transform: scale(0); }
	50%, 70% { opacity: 1; transform: scale(1); }
	90%, 100% { opacity: 0; transform: scale(0); }
}

@keyframes emailfwdPulse {
	0% { opacity: 0.5; transform: scale(0.9); }
	100% { opacity: 0; transform: scale(1.4); }
}

/* ── Email Forwarding Hero Responsive ── */
@media (max-width: 768px) {
	.emailfwd-envelope { width: 220px; height: 220px; }
	.emailfwd-envelope-body { width: 100px; height: 75px; }
	.emailfwd-route { width: 45px; }
}
@media (max-width: 480px) {
	.emailfwd-envelope { width: 180px; height: 180px; }
	.emailfwd-envelope-glow { display: none; }
	.emailfwd-envelope-body { width: 80px; height: 60px; }
	.emailfwd-route { width: 35px; }
	.emailfwd-pulse { display: none; }
}

/* ══════════════════════════════════════════════════════════
   MySQL Management Hero
   ══════════════════════════════════════════════════════════ */
.mysql-hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}
.mysql-db {
	position: relative;
	width: 300px;
	height: 300px;
}
.mysql-db-glow {
	position: absolute;
	top: 50%; left: 50%;
	width: 260px; height: 260px;
	margin: -130px 0 0 -130px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,153,255,0.15) 0%, transparent 70%);
	animation: mysqlGlow 3s ease-in-out infinite;
}

/* Database cylinders */
.mysql-cyl {
	position: absolute;
	width: 50px; height: 30px;
	border: 1.5px solid rgba(0,255,136,0.4);
	border-radius: 50%;
	background: rgba(0,255,136,0.05);
	opacity: 0;
	animation: mysqlCylIn 3s ease-in-out infinite;
}
.mysql-cyl--1 { top: 15%; inset-inline-start: 15%; animation-delay: 0s; }
.mysql-cyl--2 { top: 20%; inset-inline-end: 12%; animation-delay: 1s; }
.mysql-cyl--3 { top: 60%; inset-inline-start: 10%; animation-delay: 2s; }

/* Data flow lines */
.mysql-flow {
	position: absolute;
	width: 2px;
	height: 40px;
	background: linear-gradient(180deg, rgba(0,153,255,0.6), transparent);
	opacity: 0;
	animation: mysqlFlowDown 2.5s ease-in-out infinite;
}
.mysql-flow--1 { top: 35%; inset-inline-start: 30%; animation-delay: 0.3s; }
.mysql-flow--2 { top: 30%; inset-inline-end: 28%; animation-delay: 1.2s; }
.mysql-flow--3 { top: 40%; inset-inline-start: 55%; animation-delay: 0.8s; }

/* Core */
.mysql-core-pulse {
	position: absolute;
	top: 50%; left: 50%;
	width: 60px; height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,153,255,0.3) 0%, transparent 70%);
	animation: mysqlPulse 2s ease-in-out infinite;
}
.mysql-core {
	position: absolute;
	top: 50%; left: 50%;
	width: 28px; height: 28px;
	margin: -14px 0 0 -14px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0099ff, #00ff88);
	box-shadow: 0 0 20px rgba(0,153,255,0.5);
}

/* Status bar */
.mysql-status {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(0,0,0,0.4);
	border: var(--border-glass);
	border-radius: 20px;
}
.mysql-led {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 6px var(--quantum-primary);
	animation: mysqlLedPulse 1.5s ease-in-out infinite;
}
.mysql-bar {
	width: 40px; height: 3px;
	border-radius: 2px;
	background: rgba(255,255,255,0.1);
	overflow: hidden;
}
.mysql-bar::after {
	content: '';
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #00ff88, #0099ff);
	border-radius: 2px;
	animation: mysqlBarFill 2.5s ease-in-out infinite;
}
.mysql-tag {
	font-family: "Courier New", monospace;
	font-size: 0.55rem;
	color: var(--text-muted);
	letter-spacing: 1px;
}
.mysql-tag::after {
	content: 'MySQL';
}

/* Animations */
@keyframes mysqlGlow {
	0%, 100% { transform: scale(1); opacity: 0.6; }
	50% { transform: scale(1.08); opacity: 1; }
}
@keyframes mysqlCylIn {
	0% { opacity: 0; transform: scale(0.8); }
	20% { opacity: 0.8; transform: scale(1); }
	80% { opacity: 0.8; transform: scale(1); }
	100% { opacity: 0; transform: scale(0.8); }
}
@keyframes mysqlFlowDown {
	0% { opacity: 0; transform: translateY(-10px); }
	30% { opacity: 0.7; }
	70% { opacity: 0.7; }
	100% { opacity: 0; transform: translateY(20px); }
}
@keyframes mysqlPulse {
	0%, 100% { transform: scale(1); opacity: 0.6; }
	50% { transform: scale(1.4); opacity: 0; }
}
@keyframes mysqlLedPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}
@keyframes mysqlBarFill {
	0% { width: 0; }
	50% { width: 100%; }
	100% { width: 0; }
}

/* ── MySQL Management Hero Responsive ── */
@media (max-width: 768px) {
	.mysql-db { width: 220px; height: 220px; }
	.mysql-db-glow { width: 190px; height: 190px; margin: -95px 0 0 -95px; }
	.mysql-cyl { width: 40px; height: 24px; }
	.mysql-flow { height: 30px; }
}
@media (max-width: 480px) {
	.mysql-db { width: 180px; height: 180px; }
	.mysql-db-glow { display: none; }
	.mysql-cyl { width: 34px; height: 20px; }
	.mysql-flow { display: none; }
	.mysql-status { padding: 3px 10px; gap: 6px; }
}

/* ── MySQL Management Hero RTL ── */
[dir="rtl"] .mysql-status { direction: ltr; }

/* ══ Page: Outgoing Mail Guard ══ */

.mailguard-hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}
.mailguard-envelope {
	position: relative;
	width: 280px;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mailguard-envelope-glow {
	position: absolute;
	inset: -30px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
	animation: mailguardGlow 3s ease-in-out infinite;
}
@keyframes mailguardGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}
.mailguard-envelope-body {
	position: relative;
	width: 120px;
	height: 90px;
	z-index: 2;
}
.mailguard-envelope-front {
	position: absolute;
	inset: 0;
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-sm);
	backdrop-filter: blur(8px);
}
.mailguard-envelope-flap {
	position: absolute;
	top: -1px;
	inset-inline-start: 0;
	inset-inline-end: 0;
	height: 45px;
	background: rgba(0, 255, 136, 0.08);
	border: var(--border-glass);
	border-radius: var(--radius-sm) var(--radius-sm) 0 0;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	z-index: 1;
}
.mailguard-signal {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(0, 255, 136, 0.2);
	animation: mailguardSignal 3s ease-out infinite;
}
.mailguard-signal--1 {
	width: 160px;
	height: 160px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 0s;
}
.mailguard-signal--2 {
	width: 210px;
	height: 210px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 1s;
}
.mailguard-signal--3 {
	width: 260px;
	height: 260px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 2s;
}
@keyframes mailguardSignal {
	0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.8); }
	100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}
.mailguard-shield {
	position: absolute;
	bottom: 20px;
	inset-inline-end: 20px;
	width: 44px;
	height: 44px;
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	animation: mailguardShieldPulse 2.5s ease-in-out infinite;
}
.mailguard-shield svg {
	width: 22px;
	height: 22px;
	color: var(--quantum-primary);
}
@keyframes mailguardShieldPulse {
	0%, 100% { box-shadow: 0 0 8px rgba(0, 255, 136, 0.2); }
	50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
}
.mailguard-status {
	position: absolute;
	bottom: -16px;
	inset-inline-start: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background: var(--bg-card);
	border: var(--border-glass);
	border-radius: 12px;
	z-index: 3;
	white-space: nowrap;
}
[dir="rtl"] .mailguard-status {
	transform: translateX(50%);
}
.mailguard-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
	animation: mailguardLedPulse 2s ease-in-out infinite;
}
@keyframes mailguardLedPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.mailguard-status-bar {
	width: 40px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}
.mailguard-status-bar::after {
	content: '';
	display: block;
	width: 60%;
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 2px;
	animation: mailguardBarFill 2.5s ease-in-out infinite;
}
@keyframes mailguardBarFill { 0% { width: 20%; } 50% { width: 80%; } 100% { width: 20%; } }
.mailguard-status-tag {
	width: 20px;
	height: 3px;
	border-radius: 2px;
	background: rgba(0, 153, 255, 0.3);
}

/* ── Outgoing Mail Guard Hero Responsive ── */
@media (max-width: 768px) {
	.mailguard-envelope { width: 240px; height: 240px; }
	.mailguard-envelope-body { width: 100px; height: 75px; }
	.mailguard-envelope-flap { height: 38px; }
	.mailguard-signal--1 { width: 140px; height: 140px; }
	.mailguard-signal--2 { width: 180px; height: 180px; }
	.mailguard-signal--3 { width: 220px; height: 220px; }
	.mailguard-shield { width: 38px; height: 38px; bottom: 16px; }
	.mailguard-shield svg { width: 18px; height: 18px; }
}
@media (max-width: 480px) {
	.mailguard-envelope { width: 200px; height: 200px; }
	.mailguard-envelope-glow { display: none; }
	.mailguard-envelope-body { width: 86px; height: 64px; }
	.mailguard-envelope-flap { height: 32px; }
	.mailguard-signal--1 { width: 120px; height: 120px; }
	.mailguard-signal--2 { width: 150px; height: 150px; }
	.mailguard-signal--3 { display: none; }
	.mailguard-shield { width: 32px; height: 32px; bottom: 12px; }
	.mailguard-shield svg { width: 16px; height: 16px; }
}

/* ── Outgoing Mail Guard Hero RTL ── */
[dir="rtl"] .mailguard-status { direction: ltr; }

/* ══════════════════════════════════════════════════
   Spam Protection Hero Visual
   ══════════════════════════════════════════════════ */
.spam-hero-visual { display: flex; align-items: center; justify-content: center; }

.spam-inbox {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.spam-inbox-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 35%, rgba(0, 255, 136, 0.12) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 65%, rgba(0, 153, 255, 0.08) 0%, transparent 30%),
		radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.06) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: spamGlow 6s ease-in-out infinite;
}
@keyframes spamGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

/* ── Envelopes ── */
.spam-envelope {
	position: absolute;
	width: 70px;
	height: 50px;
	z-index: 3;
}
.spam-envelope--1 { top: 40px; left: 50%; transform: translateX(-50%); animation: spamFloat1 4s ease-in-out infinite; }
.spam-envelope--2 { top: 100px; left: 30px; animation: spamFloat2 5s ease-in-out infinite; }
.spam-envelope--3 { top: 100px; right: 30px; animation: spamFloat3 4.5s ease-in-out infinite; }

.spam-envelope-body {
	width: 100%;
	height: 100%;
	background: rgba(26, 26, 46, 0.9);
	border: 2px solid rgba(0, 255, 136, 0.3);
	border-radius: 6px;
	box-shadow: 0 4px 20px rgba(0, 255, 136, 0.08);
}

.spam-envelope--bad .spam-envelope-body {
	border-color: rgba(255, 51, 102, 0.4);
	box-shadow: 0 4px 20px rgba(255, 51, 102, 0.1);
}

.spam-envelope-flap {
	position: absolute;
	top: 0;
	left: 5px;
	right: 5px;
	height: 22px;
	border-left: 2px solid rgba(0, 255, 136, 0.2);
	border-right: 2px solid rgba(0, 255, 136, 0.2);
	border-top: 2px solid rgba(0, 255, 136, 0.2);
	clip-path: polygon(0 100%, 50% 0, 100% 100%);
	background: rgba(0, 255, 136, 0.04);
}

.spam-envelope--bad .spam-envelope-flap {
	border-color: rgba(255, 51, 102, 0.3);
	background: rgba(255, 51, 102, 0.04);
}

.spam-envelope-x {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--quantum-accent);
	animation: spamXPulse 2s ease-in-out infinite;
}
@keyframes spamXPulse {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}

@keyframes spamFloat1 {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes spamFloat2 {
	0%, 100% { transform: translateY(0) rotate(-3deg); }
	50% { transform: translateY(-8px) rotate(0deg); }
}
@keyframes spamFloat3 {
	0%, 100% { transform: translateY(0) rotate(3deg); }
	50% { transform: translateY(-12px) rotate(0deg); }
}

/* ── Shield filter ── */
.spam-shield {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--quantum-primary);
	z-index: 5;
	filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.4));
	animation: spamShieldPulse 3s ease-in-out infinite;
}
@keyframes spamShieldPulse {
	0%, 100% { filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.4)); transform: translate(-50%, -50%) scale(1); }
	50% { filter: drop-shadow(0 0 24px rgba(0, 255, 136, 0.6)); transform: translate(-50%, -50%) scale(1.05); }
}

/* ── Status indicator ── */
.spam-status {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 4;
}
.spam-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
	animation: spamLedBlink 2s ease-in-out infinite;
}
@keyframes spamLedBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}
.spam-status-bar {
	width: 50px;
	height: 3px;
	border-radius: 2px;
	background: rgba(0, 255, 136, 0.15);
	overflow: hidden;
}
.spam-status-bar::after {
	content: '';
	display: block;
	width: 60%;
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 2px;
	animation: spamBarFill 2.5s ease-in-out infinite;
}
@keyframes spamBarFill { 0% { width: 20%; } 50% { width: 80%; } 100% { width: 20%; } }

/* ── Spam Hero Responsive ── */
@media (max-width: 768px) {
	.spam-inbox { width: 240px; height: 240px; }
	.spam-envelope { width: 56px; height: 40px; }
	.spam-envelope--1 { top: 30px; }
	.spam-envelope--2 { top: 80px; left: 20px; }
	.spam-envelope--3 { top: 80px; right: 20px; }
	.spam-shield svg { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
	.spam-inbox { width: 200px; height: 200px; }
	.spam-inbox-glow { display: none; }
	.spam-envelope { width: 48px; height: 34px; }
	.spam-envelope--1 { top: 24px; }
	.spam-envelope--2 { top: 66px; left: 14px; }
	.spam-envelope--3 { top: 66px; right: 14px; }
	.spam-shield svg { width: 34px; height: 34px; }
	.spam-envelope-x svg { width: 12px; height: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   Server Analytics Hero (.analytics-hero-visual)
   ═══════════════════════════════════════════════════════════════ */
.analytics-hero-visual { display: flex; align-items: center; justify-content: center; }

.analytics-dashboard {
	position: relative;
	width: 300px;
	height: 300px;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: var(--border-glass);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 20px;
	gap: 12px;
}
.analytics-dashboard-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200%;
	height: 200%;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

/* Graph area */
.analytics-graph {
	position: relative;
	flex: 1;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	overflow: hidden;
	z-index: 1;
}
.analytics-graph-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 25% 25%;
}
.analytics-graph-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 200%;
	height: 100%;
	z-index: 2;
}
.analytics-graph-line--1 {
	background: linear-gradient(90deg,
		transparent 0%, rgba(0, 255, 136, 0.4) 10%, rgba(0, 255, 136, 0.1) 20%,
		rgba(0, 255, 136, 0.5) 30%, rgba(0, 255, 136, 0.2) 45%,
		rgba(0, 255, 136, 0.6) 55%, rgba(0, 255, 136, 0.15) 70%,
		rgba(0, 255, 136, 0.45) 85%, transparent 100%);
	clip-path: polygon(0% 70%, 5% 55%, 12% 62%, 20% 40%, 28% 50%, 35% 30%, 42% 45%, 50% 25%, 58% 35%, 65% 20%, 72% 38%, 80% 28%, 88% 42%, 95% 32%, 100% 45%, 100% 100%, 0% 100%);
	animation: analyticsGraphScroll 8s linear infinite;
}
.analytics-graph-line--2 {
	background: linear-gradient(90deg,
		transparent 0%, rgba(0, 153, 255, 0.3) 15%,
		rgba(0, 153, 255, 0.15) 35%, rgba(0, 153, 255, 0.4) 55%,
		rgba(0, 153, 255, 0.1) 75%, transparent 100%);
	clip-path: polygon(0% 80%, 8% 65%, 16% 72%, 24% 55%, 32% 62%, 40% 48%, 48% 58%, 56% 42%, 64% 52%, 72% 38%, 80% 50%, 88% 40%, 96% 55%, 100% 50%, 100% 100%, 0% 100%);
	animation: analyticsGraphScroll 12s linear infinite;
	opacity: 0.6;
}
.analytics-graph-line--3 {
	background: linear-gradient(90deg,
		transparent 0%, rgba(255, 0, 102, 0.2) 20%,
		rgba(255, 0, 102, 0.1) 50%, rgba(255, 0, 102, 0.25) 80%,
		transparent 100%);
	clip-path: polygon(0% 85%, 10% 78%, 20% 82%, 30% 72%, 40% 76%, 50% 68%, 60% 74%, 70% 65%, 80% 70%, 90% 62%, 100% 68%, 100% 100%, 0% 100%);
	animation: analyticsGraphScroll 15s linear infinite;
	opacity: 0.4;
}
@keyframes analyticsGraphScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Metric meters */
.analytics-meters {
	display: flex;
	gap: 8px;
	z-index: 1;
}
.analytics-meter {
	flex: 1;
	height: 22px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.05);
	overflow: hidden;
	position: relative;
}
.analytics-meter-fill {
	height: 100%;
	border-radius: 4px;
	transition: width 0.3s ease;
}
.analytics-meter--cpu .analytics-meter-fill {
	width: 65%;
	background: linear-gradient(90deg, rgba(0, 255, 136, 0.6), rgba(0, 255, 136, 0.3));
	animation: analyticsMeterPulse1 4s ease-in-out infinite;
}
.analytics-meter--ram .analytics-meter-fill {
	width: 48%;
	background: linear-gradient(90deg, rgba(0, 153, 255, 0.6), rgba(0, 153, 255, 0.3));
	animation: analyticsMeterPulse2 5s ease-in-out infinite;
}
.analytics-meter--disk .analytics-meter-fill {
	width: 72%;
	background: linear-gradient(90deg, rgba(255, 0, 102, 0.5), rgba(255, 0, 102, 0.25));
	animation: analyticsMeterPulse3 6s ease-in-out infinite;
}
.analytics-meter-label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--font-primary);
	font-size: 0.55rem;
	color: var(--text-secondary);
	letter-spacing: 0.05em;
	pointer-events: none;
}
@keyframes analyticsMeterPulse1 {
	0%, 100% { width: 65%; }
	50% { width: 78%; }
}
@keyframes analyticsMeterPulse2 {
	0%, 100% { width: 48%; }
	50% { width: 60%; }
}
@keyframes analyticsMeterPulse3 {
	0%, 100% { width: 72%; }
	50% { width: 58%; }
}

/* Status bar */
.analytics-status {
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 1;
}
.analytics-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
	animation: analyticsLedBlink 2s ease-in-out infinite;
}
@keyframes analyticsLedBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}
.analytics-status-bar {
	width: 50px;
	height: 3px;
	border-radius: 2px;
	background: rgba(0, 255, 136, 0.15);
	overflow: hidden;
}
.analytics-status-bar::after {
	content: '';
	display: block;
	width: 60%;
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 2px;
	animation: analyticsBarFill 2.5s ease-in-out infinite;
}
@keyframes analyticsBarFill { 0% { width: 20%; } 50% { width: 80%; } 100% { width: 20%; } }
.analytics-status-tag {
	font-family: var(--font-primary);
	font-size: 0.5rem;
	color: var(--text-muted);
	letter-spacing: 0.1em;
}
.analytics-status-tag::after { content: 'MONITORING'; }

/* RTL stat numbers */
[dir="rtl"] .analytics-meter-label { direction: ltr; }

/* ── Analytics Hero Responsive ── */
@media (max-width: 768px) {
	.analytics-dashboard { width: 240px; height: 240px; padding: 14px; gap: 8px; }
	.analytics-meter { height: 18px; }
	.analytics-meter-label { font-size: 0.5rem; }
}
@media (max-width: 480px) {
	.analytics-dashboard { width: 200px; height: 200px; padding: 12px; gap: 6px; }
	.analytics-dashboard-glow { display: none; }
	.analytics-meter { height: 16px; }
	.analytics-meter-label { font-size: 0.45rem; }
}

/* ── DNSSEC Hero Visual ── */
.dnssec-hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}
.dnssec-chain {
	position: relative;
	width: 280px;
	height: 280px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
}
.dnssec-chain-glow {
	position: absolute;
	inset: -30px;
	background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, transparent 70%);
	border-radius: 50%;
	animation: dnssecGlow 4s ease-in-out infinite;
	z-index: 0;
}
@keyframes dnssecGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}
.dnssec-link {
	position: relative;
	width: 80px;
	height: 60px;
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-sm);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	z-index: 2;
	transition: var(--transition-normal);
}
.dnssec-link:hover {
	border-color: rgba(0, 255, 136, 0.4);
	box-shadow: 0 0 16px rgba(0, 255, 136, 0.15);
}
.dnssec-link-icon {
	color: var(--quantum-primary);
	line-height: 0;
}
.dnssec-link--2 .dnssec-link-icon {
	color: var(--quantum-secondary);
}
.dnssec-link--3 .dnssec-link-icon {
	color: var(--quantum-primary);
}
.dnssec-link-label {
	font-family: var(--font-primary);
	font-size: 0.6rem;
	letter-spacing: 0.1em;
	color: var(--text-secondary);
}
.dnssec-connector {
	width: 2px;
	height: 18px;
	background: linear-gradient(to bottom, rgba(0, 255, 136, 0.5), rgba(0, 153, 255, 0.5));
	z-index: 1;
	position: relative;
}
.dnssec-connector::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
	animation: dnssecPulseConnector 2s ease-in-out infinite;
}
.dnssec-connector--2::after {
	animation-delay: 0.5s;
}
@keyframes dnssecPulseConnector {
	0%, 100% { top: 0; opacity: 1; }
	50% { top: 12px; opacity: 0.5; }
}
/* Particles */
.dnssec-particle {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 6px rgba(0, 255, 136, 0.5);
	z-index: 1;
	animation: dnssecFloat 3s ease-in-out infinite;
}
.dnssec-particle--1 { top: 15%; left: 10%; animation-delay: 0s; }
.dnssec-particle--2 { top: 40%; right: 8%; animation-delay: 0.8s; }
.dnssec-particle--3 { bottom: 30%; left: 12%; animation-delay: 1.5s; }
.dnssec-particle--4 { bottom: 15%; right: 15%; animation-delay: 2.2s; }
@keyframes dnssecFloat {
	0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
	50% { transform: translateY(-10px) scale(1.3); opacity: 1; }
}
/* Status bar */
.dnssec-status {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 4;
}
.dnssec-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
	animation: dnssecLedBlink 2s ease-in-out infinite;
}
@keyframes dnssecLedBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}
.dnssec-status-bar {
	width: 50px;
	height: 3px;
	border-radius: 2px;
	background: rgba(0, 255, 136, 0.15);
	overflow: hidden;
}
.dnssec-status-bar::after {
	content: '';
	display: block;
	width: 60%;
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 2px;
	animation: dnssecBarFill 2.5s ease-in-out infinite;
}
@keyframes dnssecBarFill { 0% { width: 20%; } 50% { width: 80%; } 100% { width: 20%; } }
.dnssec-status-tag {
	font-family: var(--font-primary);
	font-size: 0.55rem;
	letter-spacing: 0.1em;
	color: var(--quantum-primary);
	opacity: 0.8;
}

/* ── DNSSEC Hero Responsive ── */
@media (max-width: 768px) {
	.dnssec-chain { width: 240px; height: 240px; }
	.dnssec-link { width: 70px; height: 52px; }
	.dnssec-link-icon svg { width: 16px; height: 16px; }
	.dnssec-connector { height: 14px; }
}
@media (max-width: 480px) {
	.dnssec-chain { width: 200px; height: 200px; }
	.dnssec-chain-glow { display: none; }
	.dnssec-link { width: 60px; height: 44px; }
	.dnssec-link-icon svg { width: 14px; height: 14px; }
	.dnssec-link-label { font-size: 0.5rem; }
	.dnssec-connector { height: 10px; }
	.dnssec-particle { display: none; }
}

/* ══════════════════════════════════════════════════
   Automated Backups Hero (.autobak-hero-visual)
   ══════════════════════════════════════════════════ */
.autobak-hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}
.autobak-vault {
	position: relative;
	width: 300px;
	height: 300px;
}
.autobak-vault-glow {
	position: absolute;
	inset: -30px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
	animation: autobakGlow 4s ease-in-out infinite;
}
@keyframes autobakGlow { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }

/* ── Storage disks ── */
.autobak-disk {
	position: absolute;
	left: 50%;
	width: 160px;
	height: 36px;
	margin-inline-start: -80px;
	border-radius: 50%;
	border: 2px solid rgba(0, 255, 136, 0.3);
	background: rgba(0, 255, 136, 0.04);
}
.autobak-disk--1 { top: 80px; animation: autobakDiskPulse 3s ease-in-out infinite; }
.autobak-disk--2 { top: 120px; border-color: rgba(0, 153, 255, 0.3); background: rgba(0, 153, 255, 0.04); animation: autobakDiskPulse 3s ease-in-out 0.4s infinite; }
.autobak-disk--3 { top: 160px; animation: autobakDiskPulse 3s ease-in-out 0.8s infinite; }
@keyframes autobakDiskPulse {
	0%, 100% { opacity: 0.6; transform: scaleX(1); }
	50% { opacity: 1; transform: scaleX(1.05); }
}

/* ── Data stream particles ── */
.autobak-stream {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--quantum-primary);
	opacity: 0;
	animation: autobakStream 2.5s linear infinite;
}
.autobak-stream--1 { left: 60px; top: 60px; animation-delay: 0s; }
.autobak-stream--2 { right: 60px; top: 60px; animation-delay: 0.6s; }
.autobak-stream--3 { left: 80px; top: 40px; animation-delay: 1.2s; }
.autobak-stream--4 { right: 80px; top: 40px; animation-delay: 1.8s; }
@keyframes autobakStream {
	0% { opacity: 0; transform: translateY(0); }
	20% { opacity: 1; }
	80% { opacity: 1; }
	100% { opacity: 0; transform: translateY(120px); }
}

/* ── Shield overlay ── */
.autobak-shield {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 70px;
	margin: -35px 0 0 -30px;
	border: 2px solid rgba(0, 255, 136, 0.5);
	border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
	background: rgba(0, 255, 136, 0.06);
	z-index: 5;
	animation: autobakShieldPulse 3s ease-in-out infinite;
}
@keyframes autobakShieldPulse {
	0%, 100% { filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3)); transform: scale(1); }
	50% { filter: drop-shadow(0 0 18px rgba(0, 255, 136, 0.5)); transform: scale(1.05); }
}

/* ── Pulse rings ── */
.autobak-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	border: 1px solid rgba(0, 153, 255, 0.3);
	opacity: 0;
	animation: autobakPulseRing 3s ease-out infinite;
}
.autobak-pulse--2 { animation-delay: 1.5s; }
@keyframes autobakPulseRing { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(4); opacity: 0; } }

/* ── Status bar ── */
.autobak-status {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: rgba(10, 10, 15, 0.9);
	border: 1px solid rgba(0, 255, 136, 0.2);
	border-radius: 20px;
	z-index: 6;
}
.autobak-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
	animation: autobakLed 2s ease-in-out infinite;
}
@keyframes autobakLed { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.autobak-status-bar {
	width: 50px;
	height: 3px;
	border-radius: 2px;
	background: rgba(0, 255, 136, 0.15);
	overflow: hidden;
}
.autobak-status-bar::after {
	content: '';
	display: block;
	width: 60%;
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 2px;
	animation: autobakBarFill 2.5s ease-in-out infinite;
}
@keyframes autobakBarFill { 0% { width: 20%; } 50% { width: 80%; } 100% { width: 20%; } }
.autobak-status-tag {
	font-family: var(--font-primary);
	font-size: 0.55rem;
	color: var(--quantum-primary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.autobak-status-tag::after { content: 'STORED'; }

/* ── Automated Backups Hero Responsive ── */
@media (max-width: 768px) {
	.autobak-vault { width: 240px; height: 240px; }
	.autobak-disk { width: 130px; margin-inline-start: -65px; height: 30px; }
	.autobak-disk--1 { top: 60px; }
	.autobak-disk--2 { top: 92px; }
	.autobak-disk--3 { top: 124px; }
	.autobak-shield { width: 48px; height: 56px; margin: -28px 0 0 -24px; }
	.autobak-stream--1 { left: 46px; }
	.autobak-stream--2 { right: 46px; }
	.autobak-stream--3 { left: 60px; }
	.autobak-stream--4 { right: 60px; }
}
@media (max-width: 480px) {
	.autobak-vault { width: 200px; height: 200px; }
	.autobak-vault-glow { display: none; }
	.autobak-disk { width: 110px; margin-inline-start: -55px; height: 26px; }
	.autobak-disk--1 { top: 48px; }
	.autobak-disk--2 { top: 76px; }
	.autobak-disk--3 { top: 104px; }
	.autobak-shield { width: 40px; height: 48px; margin: -24px 0 0 -20px; }
	.autobak-stream--1 { left: 38px; }
	.autobak-stream--2 { right: 38px; }
	.autobak-stream--3 { left: 50px; }
	.autobak-stream--4 { right: 50px; }
}

/* ══════════════════════════════════════════════════════════════════
   Website Accessibility Hero Visual
   ══════════════════════════════════════════════════════════════════ */
.a11y-hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}
.a11y-widget-frame {
	position: relative;
	width: 220px;
	padding: 20px;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: var(--border-glass);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.a11y-widget-glow {
	position: absolute;
	inset: -40px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,255,136,0.12) 0%, transparent 70%);
	pointer-events: none;
	animation: a11yGlow 4s ease-in-out infinite;
}
@keyframes a11yGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}
.a11y-widget-bar {
	display: flex;
	align-items: center;
	gap: 10px;
}
.a11y-widget-icon {
	width: 32px;
	height: 32px;
	border-radius: var(--radius-sm);
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
}
.a11y-widget-icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--bg-primary);
}
.a11y-widget-label {
	flex: 1;
	height: 10px;
	border-radius: 5px;
	background: rgba(255,255,255,0.08);
}
.a11y-widget-row {
	display: flex;
	align-items: center;
	gap: 8px;
	animation: a11yRowFade 3s ease-in-out infinite;
}
.a11y-widget-row--2 { animation-delay: 0.5s; }
.a11y-widget-row--3 { animation-delay: 1s; }
.a11y-widget-row--4 { animation-delay: 1.5s; }
@keyframes a11yRowFade {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}
.a11y-row-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--quantum-secondary);
	flex-shrink: 0;
}
.a11y-row-line {
	flex: 1;
	height: 6px;
	border-radius: 3px;
	background: rgba(255,255,255,0.06);
}
.a11y-row-toggle {
	width: 28px;
	height: 14px;
	border-radius: 7px;
	background: rgba(255,255,255,0.1);
	position: relative;
	flex-shrink: 0;
	transition: background 0.3s;
}
.a11y-row-toggle::after {
	content: '';
	position: absolute;
	top: 2px;
	inset-inline-start: 2px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--text-muted);
	transition: transform 0.3s, background 0.3s;
}
.a11y-row-toggle--on {
	background: rgba(0,255,136,0.25);
}
.a11y-row-toggle--on::after {
	transform: translateX(14px);
	background: var(--quantum-primary);
}
[dir="rtl"] .a11y-row-toggle--on::after {
	transform: translateX(-14px);
}
.a11y-widget-pulse {
	position: absolute;
	top: 50%;
	inset-inline-start: 50%;
	width: 100%;
	height: 100%;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(0,255,136,0.2);
	transform: translate(-50%, -50%);
	pointer-events: none;
	animation: a11yPulse 3s ease-out infinite;
}
[dir="rtl"] .a11y-widget-pulse {
	transform: translate(50%, -50%);
}
@keyframes a11yPulse {
	0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
	100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); }
}
[dir="rtl"] @keyframes a11yPulse {
	0% { opacity: 0.6; transform: translate(50%, -50%) scale(1); }
	100% { opacity: 0; transform: translate(50%, -50%) scale(1.3); }
}

/* ── Accessibility Hero Responsive ── */
@media (max-width: 768px) {
	.a11y-widget-frame { width: 190px; padding: 16px; gap: 10px; }
	.a11y-widget-icon { width: 28px; height: 28px; }
	.a11y-widget-icon svg { width: 16px; height: 16px; }
	.a11y-row-toggle { width: 24px; height: 12px; border-radius: 6px; }
	.a11y-row-toggle::after { width: 8px; height: 8px; }
	.a11y-row-toggle--on::after { transform: translateX(12px); }
	[dir="rtl"] .a11y-row-toggle--on::after { transform: translateX(-12px); }
}
@media (max-width: 480px) {
	.a11y-widget-frame { width: 170px; padding: 14px; gap: 8px; }
	.a11y-widget-glow { display: none; }
	.a11y-widget-icon { width: 24px; height: 24px; }
	.a11y-widget-icon svg { width: 14px; height: 14px; }
	.a11y-widget-label { height: 8px; }
	.a11y-row-dot { width: 6px; height: 6px; }
	.a11y-row-line { height: 5px; }
	.a11y-row-toggle { width: 22px; height: 11px; }
	.a11y-row-toggle::after { width: 7px; height: 7px; }
	.a11y-row-toggle--on::after { transform: translateX(11px); }
	[dir="rtl"] .a11y-row-toggle--on::after { transform: translateX(-11px); }
}

/* ══════════════════════════════════════════════════
   LLMs.txt Hero (.llms-hero-visual)
   ══════════════════════════════════════════════════ */
.llms-hero-visual { display: flex; align-items: center; justify-content: center; }
.llms-editor {
	position: relative;
	width: 320px;
	background: rgba(10, 10, 15, 0.95);
	border: 1px solid rgba(0, 255, 136, 0.25);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: 0 0 40px rgba(0, 255, 136, 0.1), 0 0 80px rgba(0, 153, 255, 0.05);
}
.llms-editor-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 50% 80%, rgba(0, 153, 255, 0.06) 0%, transparent 60%);
	pointer-events: none;
}
.llms-editor-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.llms-editor-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.llms-editor-dot--red { background: #ff5f56; }
.llms-editor-dot--yellow { background: #ffbd2e; }
.llms-editor-dot--green { background: #27c93f; }
.llms-editor-filename {
	margin-inline-start: auto;
	font-family: 'Courier New', monospace;
	font-size: 0.75rem;
	color: var(--text-muted);
}
.llms-editor-body {
	padding: 16px 18px 20px;
	font-family: 'Courier New', monospace;
	font-size: 0.82rem;
	line-height: 1.8;
	color: var(--text-secondary);
}
.llms-line {
	opacity: 0;
	animation: llmsLineIn 0.4s ease forwards;
}
.llms-line--1 { animation-delay: 0.4s; }
.llms-line--2 { animation-delay: 0.9s; }
.llms-line--3 { animation-delay: 1.3s; }
.llms-line--4 { animation-delay: 1.8s; }
.llms-line--5 { animation-delay: 2.2s; }
.llms-line--6 { animation-delay: 2.7s; }
@keyframes llmsLineIn {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}
.llms-comment { color: var(--text-muted); }
.llms-key { color: var(--quantum-primary); }
.llms-val { color: var(--quantum-secondary); }
.llms-cursor {
	display: inline-block;
	width: 8px;
	height: 1.1em;
	background: var(--quantum-primary);
	vertical-align: text-bottom;
	animation: llmsBlink 1s step-end infinite;
}
@keyframes llmsBlink {
	0%, 100% { opacity: 1; }
	50%      { opacity: 0; }
}
.llms-editor-status {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.03);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.72rem;
	color: var(--text-muted);
}
.llms-editor-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 6px var(--quantum-primary);
	animation: llmsLedPulse 2s ease-in-out infinite;
}
@keyframes llmsLedPulse {
	0%, 100% { opacity: 1; }
	50%      { opacity: 0.4; }
}
.llms-editor-status-text {
	font-family: 'Courier New', monospace;
	letter-spacing: 0.05em;
}

@media (max-width: 768px) {
	.llms-editor { width: 280px; }
	.llms-editor-body { font-size: 0.78rem; padding: 12px 14px 16px; }
}
@media (max-width: 480px) {
	.llms-editor { width: 240px; }
	.llms-editor-body { font-size: 0.72rem; padding: 10px 12px 14px; }
}

/* ══════════════════════════════════════════════════
   Activity Logs Hero (.actlog-hero-visual)
   ══════════════════════════════════════════════════ */
.actlog-hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}
.actlog-terminal {
	position: relative;
	width: 280px;
	height: 220px;
	border: 1px solid rgba(0, 255, 136, 0.25);
	border-radius: var(--radius-md);
	background: rgba(10, 10, 15, 0.85);
	padding: 40px 20px 20px;
	overflow: hidden;
}
.actlog-terminal-glow {
	position: absolute;
	inset: -30px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, transparent 70%);
	animation: actlogGlow 4s ease-in-out infinite;
	z-index: 0;
}
@keyframes actlogGlow {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

/* ── Terminal bar ── */
.actlog-terminal-bar {
	position: absolute;
	top: 10px;
	inset-inline-start: 12px;
	display: flex;
	gap: 6px;
}
.actlog-terminal-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
.actlog-terminal-dot--1 { background: #ff5f57; }
.actlog-terminal-dot--2 { background: #febc2e; }
.actlog-terminal-dot--3 { background: #28c840; }

/* ── Log lines ── */
.actlog-line {
	position: relative;
	z-index: 1;
	height: 6px;
	border-radius: 3px;
	margin-bottom: 10px;
	opacity: 0;
	animation: actlogLineSlide 3s ease-in-out infinite;
}
.actlog-line--1 { width: 85%; background: rgba(0, 255, 136, 0.35); animation-delay: 0s; }
.actlog-line--2 { width: 60%; background: rgba(0, 153, 255, 0.35); animation-delay: 0.5s; }
.actlog-line--3 { width: 75%; background: rgba(0, 255, 136, 0.25); animation-delay: 1s; }
.actlog-line--4 { width: 50%; background: rgba(0, 153, 255, 0.25); animation-delay: 1.5s; }
.actlog-line--5 { width: 70%; background: rgba(0, 255, 136, 0.3); animation-delay: 2s; }
@keyframes actlogLineSlide {
	0% { opacity: 0; transform: translateY(8px); }
	15% { opacity: 1; transform: translateY(0); }
	85% { opacity: 1; transform: translateY(0); }
	100% { opacity: 0; transform: translateY(-4px); }
}

/* ── Cursor blink ── */
.actlog-cursor {
	position: relative;
	z-index: 1;
	width: 10px;
	height: 14px;
	background: var(--quantum-primary);
	opacity: 0;
	animation: actlogBlink 1s steps(2, start) infinite;
}
@keyframes actlogBlink {
	0%, 100% { opacity: 0; }
	50% { opacity: 1; }
}

/* ── Responsive 768px ── */
@media (max-width: 768px) {
	.actlog-terminal {
		width: 220px;
		height: 180px;
		padding: 36px 16px 16px;
	}
	.actlog-line { height: 5px; margin-bottom: 8px; }
	.actlog-cursor { width: 8px; height: 12px; }
}

/* ── Responsive 480px ── */
@media (max-width: 480px) {
	.actlog-terminal-glow { display: none; }
	.actlog-terminal {
		width: 180px;
		height: 150px;
		padding: 32px 12px 12px;
	}
	.actlog-line { height: 4px; margin-bottom: 6px; }
	.actlog-cursor { width: 7px; height: 10px; }
}

/* ══ Page: GDPR Compliance ══ */

.gdpr-hero-visual { display: flex; align-items: center; justify-content: center; }

.gdpr-shield {
	position: relative;
	width: 300px;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gdpr-shield-glow {
	position: absolute;
	width: 180px;
	height: 180px;
	top: 50%;
	left: 50%;
	margin: -90px 0 0 -90px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,255,136,0.18) 0%, transparent 70%);
	animation: gdprGlow 3s ease-in-out infinite;
}
@keyframes gdprGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.15); }
}
.gdpr-shield-body {
	position: relative;
	z-index: 2;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-glass);
	border: var(--border-quantum);
	border-radius: 50%;
	color: var(--quantum-primary);
	box-shadow: var(--shadow-quantum);
}

/* Orbiting consent icons */
.gdpr-orbit {
	position: absolute;
	width: 220px;
	height: 220px;
	top: 50%;
	left: 50%;
	margin: -110px 0 0 -110px;
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 50%;
	animation: gdprOrbitSpin 12s linear infinite;
}
.gdpr-orbit--2 { width: 260px; height: 260px; margin: -130px 0 0 -130px; animation-duration: 18s; animation-direction: reverse; }
.gdpr-orbit--3 { width: 180px; height: 180px; margin: -90px 0 0 -90px; animation-duration: 10s; }
@keyframes gdprOrbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.gdpr-orbit-dot {
	position: absolute;
	top: -10px;
	left: 50%;
	margin-inline-start: -10px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--quantum-secondary);
	animation: gdprOrbitSpin 12s linear infinite reverse;
}
.gdpr-orbit--2 .gdpr-orbit-dot { animation-duration: 18s; animation-direction: normal; color: var(--quantum-primary); }
.gdpr-orbit--3 .gdpr-orbit-dot { animation-duration: 10s; animation-direction: reverse; color: var(--quantum-accent); }

/* Data streams */
.gdpr-stream {
	position: absolute;
	width: 2px;
	height: 40px;
	background: linear-gradient(to bottom, transparent, var(--quantum-primary), transparent);
	opacity: 0.4;
	animation: gdprStreamFloat 4s ease-in-out infinite;
}
.gdpr-stream--1 { top: 10px; left: 60px; animation-delay: 0s; }
.gdpr-stream--2 { top: 20px; right: 60px; animation-delay: 1s; }
.gdpr-stream--3 { bottom: 30px; left: 80px; animation-delay: 2s; }
.gdpr-stream--4 { bottom: 10px; right: 80px; animation-delay: 3s; }
@keyframes gdprStreamFloat {
	0%, 100% { opacity: 0.2; transform: translateY(0); }
	50% { opacity: 0.6; transform: translateY(-12px); }
}

/* Status bar */
.gdpr-status {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background: var(--bg-glass);
	border: var(--border-glass);
	border-radius: var(--radius-sm);
}
.gdpr-status-led {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--quantum-primary);
	box-shadow: 0 0 6px var(--quantum-primary);
	animation: gdprLedPulse 2s ease-in-out infinite;
}
@keyframes gdprLedPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.gdpr-status-bar {
	width: 40px;
	height: 4px;
	border-radius: 2px;
	background: rgba(255,255,255,0.1);
	overflow: hidden;
}
.gdpr-status-bar::after {
	content: '';
	display: block;
	width: 60%;
	height: 100%;
	background: var(--quantum-primary);
	border-radius: 2px;
	animation: gdprBarFill 3s ease-in-out infinite;
}
@keyframes gdprBarFill { 0% { width: 20%; } 50% { width: 80%; } 100% { width: 20%; } }
.gdpr-status-tag {
	font-family: var(--font-primary);
	font-size: 0.55rem;
	color: var(--quantum-primary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.gdpr-status-tag::after { content: 'COMPLIANT'; }

/* ── GDPR Hero Responsive ── */
@media (max-width: 768px) {
	.gdpr-shield { width: 240px; height: 240px; }
	.gdpr-shield-glow { width: 140px; height: 140px; margin: -70px 0 0 -70px; }
	.gdpr-shield-body { width: 80px; height: 80px; }
	.gdpr-shield-body svg { width: 48px; height: 48px; }
	.gdpr-orbit { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
	.gdpr-orbit--2 { width: 210px; height: 210px; margin: -105px 0 0 -105px; }
	.gdpr-orbit--3 { width: 150px; height: 150px; margin: -75px 0 0 -75px; }
	.gdpr-stream--1 { left: 46px; }
	.gdpr-stream--2 { right: 46px; }
	.gdpr-stream--3 { left: 60px; }
	.gdpr-stream--4 { right: 60px; }
}
@media (max-width: 480px) {
	.gdpr-shield { width: 200px; height: 200px; }
	.gdpr-shield-glow { display: none; }
	.gdpr-shield-body { width: 70px; height: 70px; }
	.gdpr-shield-body svg { width: 40px; height: 40px; }
	.gdpr-orbit { width: 150px; height: 150px; margin: -75px 0 0 -75px; }
	.gdpr-orbit--2 { width: 175px; height: 175px; margin: -87px 0 0 -87px; }
	.gdpr-orbit--3 { width: 125px; height: 125px; margin: -62px 0 0 -62px; }
	.gdpr-stream--1 { left: 38px; }
	.gdpr-stream--2 { right: 38px; }
	.gdpr-stream--3 { left: 50px; }
	.gdpr-stream--4 { right: 50px; }
}

/* ══════════════════════════════════════════════════════════════════
   Shabbat Mode Hero
   ══════════════════════════════════════════════════════════════════ */
.shabbat-hero-visual { display: flex; align-items: center; justify-content: center; }

.shabbat-candles {
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 2;
}

.shabbat-candles-glow {
	position: absolute;
	inset: -200px;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 40% 30%, rgba(255, 180, 50, 0.15) 0%, transparent 35%),
		radial-gradient(ellipse at 60% 30%, rgba(255, 180, 50, 0.15) 0%, transparent 35%),
		radial-gradient(ellipse at 50% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 45%);
	z-index: -1;
	filter: blur(30px);
	animation: shabbatGlow 4s ease-in-out infinite;
}
@keyframes shabbatGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

/* Candle positioning */
.shabbat-candle {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.shabbat-candle--1 { top: 40px; left: 90px; }
.shabbat-candle--2 { top: 40px; right: 90px; }

/* Flame */
.shabbat-flame {
	width: 14px;
	height: 24px;
	background: radial-gradient(ellipse at 50% 80%, #fff4cc 0%, #ffaa00 40%, #ff6600 70%, transparent 100%);
	border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
	position: relative;
	z-index: 3;
	animation: shabbatFlicker 2s ease-in-out infinite;
	box-shadow: 0 0 16px 6px rgba(255, 170, 0, 0.5), 0 0 40px 12px rgba(255, 140, 0, 0.2);
}
.shabbat-flame--2 { animation-delay: 0.5s; }

@keyframes shabbatFlicker {
	0%, 100% { transform: scaleX(1) scaleY(1); opacity: 1; }
	25% { transform: scaleX(0.9) scaleY(1.05) rotate(-2deg); opacity: 0.95; }
	50% { transform: scaleX(1.05) scaleY(0.95); opacity: 1; }
	75% { transform: scaleX(0.95) scaleY(1.03) rotate(2deg); opacity: 0.97; }
}

/* Wick */
.shabbat-wick {
	width: 2px;
	height: 8px;
	background: #555;
	position: relative;
	z-index: 2;
}

/* Wax body */
.shabbat-wax {
	width: 20px;
	height: 100px;
	background: linear-gradient(180deg, #fff8e8 0%, #f5e6c8 50%, #e8d4a8 100%);
	border-radius: 3px 3px 2px 2px;
	position: relative;
	z-index: 2;
	box-shadow: inset -3px 0 6px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Holder */
.shabbat-holder {
	width: 36px;
	height: 18px;
	background: linear-gradient(180deg, #c0c0c0 0%, #8a8a8a 50%, #a0a0a0 100%);
	border-radius: 0 0 6px 6px;
	position: relative;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Clock element */
.shabbat-clock {
	position: absolute;
	bottom: 40px;
	left: 50%;
	margin-inline-start: -45px;
	width: 90px;
	height: 90px;
	z-index: 2;
}

.shabbat-clock-face {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid rgba(255, 180, 50, 0.4);
	background: rgba(10, 10, 15, 0.6);
	box-shadow: 0 0 20px rgba(255, 180, 50, 0.15), inset 0 0 15px rgba(255, 180, 50, 0.05);
}

.shabbat-clock-hand {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform-origin: bottom center;
	background: rgba(255, 180, 50, 0.8);
	border-radius: 2px;
}
.shabbat-clock-hand--hour {
	width: 2px;
	height: 22px;
	margin-inline-start: -1px;
	animation: shabbatHourHand 12s linear infinite;
}
.shabbat-clock-hand--minute {
	width: 1.5px;
	height: 30px;
	margin-inline-start: -0.75px;
	animation: shabbatMinuteHand 3s linear infinite;
}

.shabbat-clock-dot {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	margin: -3px 0 0 -3px;
	border-radius: 50%;
	background: rgba(255, 180, 50, 0.9);
	z-index: 3;
}

@keyframes shabbatHourHand { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes shabbatMinuteHand { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Warm light particles */
.shabbat-particle {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255, 180, 50, 0.6);
	animation: shabbatFloat 5s ease-in-out infinite;
}
.shabbat-particle--1 { top: 30px; left: 110px; animation-delay: 0s; }
.shabbat-particle--2 { top: 25px; right: 108px; animation-delay: 1s; }
.shabbat-particle--3 { top: 50px; left: 70px; animation-delay: 2s; }
.shabbat-particle--4 { top: 45px; right: 68px; animation-delay: 3s; }
.shabbat-particle--5 { top: 60px; left: 145px; animation-delay: 1.5s; }

@keyframes shabbatFloat {
	0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
	50% { transform: translateY(-12px) scale(1.3); opacity: 1; }
}

/* ── Shabbat Mode Hero Responsive ── */
@media (max-width: 768px) {
	.shabbat-candles { width: 240px; height: 240px; }
	.shabbat-candle--1 { top: 30px; left: 60px; }
	.shabbat-candle--2 { top: 30px; right: 60px; }
	.shabbat-wax { height: 80px; width: 18px; }
	.shabbat-holder { width: 30px; height: 15px; }
	.shabbat-flame { width: 12px; height: 20px; }
	.shabbat-clock { width: 70px; height: 70px; margin-inline-start: -35px; bottom: 30px; }
	.shabbat-clock-hand--hour { height: 18px; }
	.shabbat-clock-hand--minute { height: 24px; }
}
@media (max-width: 480px) {
	.shabbat-candles { width: 200px; height: 200px; }
	.shabbat-candles-glow { display: none; }
	.shabbat-candle--1 { top: 20px; left: 45px; }
	.shabbat-candle--2 { top: 20px; right: 45px; }
	.shabbat-wax { height: 65px; width: 16px; }
	.shabbat-holder { width: 26px; height: 13px; }
	.shabbat-flame { width: 10px; height: 18px; }
	.shabbat-clock { width: 60px; height: 60px; margin-inline-start: -30px; bottom: 20px; }
	.shabbat-clock-hand--hour { height: 15px; }
	.shabbat-clock-hand--minute { height: 20px; }
	.shabbat-particle { display: none; }
}

/* ── Explore Features Section ── */
.explore-features {
	padding: var(--spacing-2xl) 0;
	background: var(--bg-secondary);
	border-top: var(--border-glass);
	border-bottom: var(--border-glass);
}
.explore-features .section-title {
	margin-bottom: var(--spacing-lg);
}
.explore-features .feat-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

@media (max-width: 768px) {
	.explore-features { padding: var(--spacing-xl) 0; }
	.explore-features .feat-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.explore-features { padding: var(--spacing-lg) 0; }
}
