@import url("../assets/bootstrap/bootstrap.min.css");
@import url("../assets/jquery/jquery-ui/jquery-ui.css");
@import url("../assets/owlcarousel/owl.carousel.min.css");
/*
* ----------------------------------------------------------------------------------------
* Fonts
* ----------------------------------------------------------------------------------------
*/
@import url("../assets/fonts/fontawesome-free-6.7.2-web/css/all.min.css");
@import url("../assets/fonts/bootstrap-icons-1.11.3/font/bootstrap-icons.min.css");
/*
* ----------------------------------------------------------------------------------------
* General & Variables
* ----------------------------------------------------------------------------------------
*/

:root {
 --bg-deep: #020617;
--bg-gradient: 
 radial-gradient(circle at 0% 0%, #1e1b4b 0%, rgba(30, 27, 75, 0.5) 25%, rgba(2, 6, 23, 0) 70% ), radial-gradient(circle at 100% 100%, #2e1065 0%, #020617 50% );
 --p-accent: #a855f7;
 --p-link: #38bdf8;
 --p-link-hover: #ffffff;
 --p-white: #f8fafc;
 --p-text: #94a3b8;
 --p-border: rgba(56, 189, 248, 0.4);
 --pattern-color: rgba(56, 189, 248, 0.03);
 --aside-width: 100px;
}
body {
	margin: 0;
	background: var(--bg-deep);
	background-attachment: fixed;
	font-family: 'Inter', sans-serif;
	color: var(--p-text);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
}
.site-glow {
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: radial-gradient(circle at 100% 0%, rgba(168, 85, 247, 0.48) 0%, transparent 24%), radial-gradient(circle at 100% 0%, rgba(168, 85, 247, 0.24) 0%, transparent 48%);
	pointer-events: none;
	z-index: 0;
	mix-blend-mode: screen;
	filter: blur(20px);
}
.site-glow::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(168, 85, 247, 0.16) 1.5px, transparent 1.5px);
	background-size: 50px 50px;
	-webkit-mask-image: radial-gradient(circle at 100% 0%, black 16%, transparent 64%);
	mask-image: radial-gradient(circle at 100% 0%, black 16%, transparent 64%);
}
a {
	color: var(--p-link);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}
a:hover {
	color: var(--p-link-hover);
	text-shadow: 0 0 10px var(--p-link);
}
ul, ol {
	padding-left: 1.2rem;
	margin-bottom: 1.5rem;
}
li {
	margin-bottom: 0.5rem;
}
ul {
	list-style: none;
}
/*
* ----------------------------------------------------------------------------------------
* Recaptcha
* ----------------------------------------------------------------------------------------
*/
.grecaptcha-badge {
	display: none !important;
}
/*
* ----------------------------------------------------------------------------------------
* Cyber modal
* ----------------------------------------------------------------------------------------
*/


.cyber-modal {
	background: var(--bg-deep);
	background-image: var(--bg-gradient);
	border: 1px solid var(--p-border);
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}
.cyber-input {
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid var(--p-border);
	color: var(--p-white);
}
.cyber-input:focus {
	background: rgba(15, 23, 42, 0.8);
	border-color: var(--p-accent);
	color: var(--p-white);
	box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}
.form-label {
	color: var(--p-link);
	letter-spacing: 1px;
}
.cyber-close-btn {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--p-border);
	color: var(--p-link);
	font-size: 24px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	outline: none;
	position: relative;
	overflow: hidden;
}
.cyber-close-btn span {
	display: inline-block;
	transition: transform 0.4s ease;
}
.cyber-close-btn:hover {
	border-color: var(--p-accent);
	color: var(--p-accent);
	box-shadow: 0 0 10px var(--p-accent);
}
.cyber-close-btn:hover span {
	transform: rotate(90deg);
}
.cyber-close-btn:active {
	transform: scale(0.9);
}
.modal-body .btn-cyber-neon:disabled {
	opacity: 0.5 !important;
	pointer-events: none;
	background: #334155 !important;
	color: #94a3b8 !important;
	border-color: #475569 !important;
	box-shadow: none !important;
}
/*
* ----------------------------------------------------------------------------------------
* Btn
* ----------------------------------------------------------------------------------------
*/

.btn-cyber-neon {
	display: inline-block;
	padding: 1rem 3rem;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 2px;
	color: var(--p-link);
	border: 2px solid var(--p-link);
	border-radius: 0;
	position: relative;
	transition: 0.3s;
	background: transparent;
	text-decoration: none;
	overflow: hidden;
}
.btn-cyber-neon:hover {
	color: var(--bg-deep);
	background: var(--p-link);
	box-shadow: 0 0 10px var(--p-link), 0 0 40px var(--p-link), 0 0 80px var(--p-link);
	border-color: var(--p-link);
}
.btn-cyber-neon:disabled {
	opacity: 0;
	pointer-events: none;
}
/*
* ----------------------------------------------------------------------------------------
* Blink
* ----------------------------------------------------------------------------------------
*/

.status-blink {
	color: var(--p-link);
	font-weight: bold;
	text-transform: uppercase;
	animation: smoothBlink 2.5s ease-in-out infinite;
	text-shadow: 0 0 10px var(--p-link);
}
 @keyframes smoothBlink {
 0%, 100% {
opacity: 1;
}
 50% {
opacity: 0.15;
}
}
/*
* ----------------------------------------------------------------------------------------
* Aside
* ----------------------------------------------------------------------------------------
*/

#site-aside {
	width: var(--aside-width);
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(13, 10, 35, 0.6);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-right: 1px solid rgba(168, 85, 247, 0.3);
	box-shadow: inset -1px 0 10px rgba(168, 85, 247, 0.1);
	z-index: 1000;
	display: flex;
	flex-direction: column;
}
#site-aside .logo-link {
	font-size: 0.8rem;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	color: var(--p-white);
	line-height: 1.2;
	padding: 25px 5px;
	background: linear-gradient(135deg, var(--p-link) 0%, var(--p-accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.4));
	border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}
#site-aside .nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 20px 0;
	color: var(--p-text);
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#site-aside .nav-item i {
	font-size: 1.6rem;
	margin-bottom: 6px;
	transition: transform 0.3s ease;
}

@media (max-width: 991.98px) {
#site-aside {
	width: 100% !important;
	height: 70px !important;
	top: auto !important;
	bottom: 0 !important;
	left: 0 !important;
	flex-direction: row !important;
	justify-content: space-around;
	padding: 0 15px !important;
	border-right: none !important;
	border-top: 1px solid var(--p-border);
	border-radius: 15px 15px 0 0;
}
#site-aside .logo-link {
	display: none !important;
}
#site-aside .nav {
	flex-direction: row !important;
	width: 100%;
	justify-content: space-around;
	margin-top: 0 !important;
}
#site-aside .nav-item {
	padding: 10px 0 !important;
	font-size: 0.6rem !important;
}
#site-aside .nav-item i {
	font-size: 1.3rem !important;
	margin-bottom: 2px !important;
}
#site-header, #main-content, #site-footer {
	padding-left: 0 !important;
	padding-bottom: 80px !important;
}
#site-aside .nav-item:hover {
	background: transparent !important;
	filter: none !important;
	border-left: none !important;
	color: var(--p-text);
}
#site-aside .nav-item.active {
	border-left: none !important;
	background: transparent !important;
}
#site-aside .nav-item i {
	transform: none !important;
	filter: none !important;
}
}

@media (max-width: 768px) {
nav.nav.flex-column a.nav-item:nth-of-type(n+5) {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}
}

@media (min-width: 992px) {
#site-aside .nav-item {
	border-left: 3px solid transparent;
}
#site-aside .nav-item.active, #site-aside .nav-item:hover {
	color: var(--p-white) !important;
	background: rgba(168, 85, 247, 0.1) !important;
	border-left: 3px solid var(--p-accent) !important;
}
#site-aside .nav-item.active i, #site-aside .nav-item:hover i {
	color: var(--p-accent) !important;
	filter: drop-shadow(0 0 8px var(--p-accent));
	transform: scale(1.1);
}
}
/*
* ----------------------------------------------------------------------------------------
* Header
* ----------------------------------------------------------------------------------------
*/

#site-header {
	min-height: 100vh;
	padding-left: var(--aside-width);
	display: flex;
	align-items: center;
}
#site-header .hero-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: var(--p-white);
}
#site-header .hero-accent {
	color: var(--p-link);
	text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}
#site-header .hero-description {
	font-size: 1.1rem;
	color: var(--p-text);
	max-width: 550px;
	margin-bottom: 2rem;
}
#site-header .hero-steps {
	margin-bottom: 3rem;
}
#site-header .step-item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}
#site-header .step-num-wrapper {
	position: relative;
	margin-right: 0.1rem;
	min-width: 50px;
}
#site-header .step-num-wrapper::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: var(--p-accent);
	filter: blur(15px);
	opacity: 0.5;
	border-radius: 50%;
	z-index: 1;
}
#site-header .step-num {
	position: relative;
	z-index: 2;
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--p-white);
	font-family: 'Monospace', monospace;
	text-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}
#site-header .step-text {
	font-size: 1.2rem;
	color: var(--bs-light);
	font-weight: 500;
	line-height: 1.2;
}
#site-header .btn-neon {
	border: 1px solid var(--p-link);
	color: var(--p-link);
	padding: 0.8rem 2.5rem;
	font-weight: bold;
	background: transparent;
	transition: 0.4s;
	text-transform: uppercase;
}
#site-header .btn-neon:hover {
	background: var(--p-link);
	color: var(--bg-deep);
	box-shadow: 0 0 25px var(--p-link);
}
#site-header .pc-platform {
	position: relative;
	display: inline-block;
}
#site-header .pc-platform::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 260px;
	height: 30px;
	background: var(--p-accent);
	filter: blur(45px);
	opacity: 0.5;
	z-index: -1;
}
#pc-svg .case-outline {
	stroke: var(--p-link);
	stroke-width: 3px;
	fill: rgba(15, 23, 42, 0.6);
}
#pc-svg .mb-plate {
	fill: #0f172a;
	stroke: rgba(56, 189, 248, 0.2);
}
#pc-svg .cpu-core {
	fill: #334155;
	stroke: var(--p-accent);
	stroke-width: 1.5px;
}
#pc-svg .chip {
	fill: #1e293b;
	stroke: var(--p-link);
	stroke-width: 0.5px;
}
 @keyframes fan-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes psu-blink {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.2;
}
}
@keyframes chip-glow {
0%, 100% {
filter: brightness(1);
}
50% {
filter: brightness(1.6);
}
}
#pc-svg .fan {
	animation: fan-spin 3s linear infinite;
	transform-origin: center;
	transform-box: fill-box;
}
#pc-svg .psu-led {
	animation: psu-blink 1s infinite;
	fill: #22c55e;
}
#pc-svg .chip-active {
	animation: chip-glow 2s infinite;
}

@media (max-width: 991.98px) {
#site-header .hero-description {
	margin-left: auto;
	margin-right: auto;
	font-size: 1rem;
}
#site-header .hero-title {
	font-size: 2.1rem;
	margin-top: 20px;
	text-align: center;
}
#site-header .hero-action {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 3.5rem !important;
}
#pc-svg {
	transform: scale(0.85);
	max-width: 100%;
	height: auto;
}
#site-header .pc-platform::after {
	width: 200px;
	bottom: 0;
}
#site-header .hero-steps {
	margin-bottom: 1.5rem !important;
	display: block !important;
}
#site-header .step-item {
	margin-bottom: 0.8rem !important;
}
#site-header .step-num-wrapper {
	min-width: 35px !important;
}
#site-header .step-num-wrapper::before {
	width: 25px !important;
	height: 25px !important;
	filter: blur(10px) !important;
}
#site-header .step-num {
	font-size: 1.1rem !important;
}
#site-header .step-text {
	font-size: 0.85rem !important;
	line-height: 1.2 !important;
	text-align: left;
}
}
.gpu-text {
	font-family: 'Arial', sans-serif;
	font-weight: bold;
	font-size: 8px;
	fill: var(--p-link);
	text-transform: uppercase;
	animation: blink-text 2s infinite;
	letter-spacing: 0.5px;
}
 @keyframes blink-text {
 0%, 100% {
opacity: 1;
filter: drop-shadow(0 0 2px var(--p-link));
}
 50% {
opacity: 0.3;
filter: none;
}
}
/*
* ----------------------------------------------------------------------------------------
* main
* ----------------------------------------------------------------------------------------
*/
#main-content {
	padding-left: var(--aside-width);
}
/*
* ----------------------------------------------------------------------------------------
* About
* ----------------------------------------------------------------------------------------
*/

#about {
	padding: 50px 0;
	position: relative;
}
#about .photo-container {
	position: relative;
	display: block;
	width: fit-content;
	margin-right: auto;
	z-index: 5;
}
#about .profile-img {
	width: 320px;
	height: 420px;
	object-fit: cover;
	border-radius: 4px;
	position: relative;
	z-index: 2;
}
#about .photo-aura {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 150%;
	height: 150%;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.48) 0%, rgba(168, 85, 247, 0.24) 40%, transparent 70% );
	z-index: 1;
	pointer-events: none;
	mix-blend-mode: screen;
	filter: blur(40px);
}
#about .experience-badge {
	position: absolute;
	bottom: 40px;
	right: -15px;
	z-index: 4;
	background: rgba(168, 85, 247, 0.2);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 15px 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#about .experience-badge .num {
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--p-link);
	line-height: 1;
	text-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
}
#about .experience-badge .txt {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--p-white);
	margin-top: 5px;
}
#about .heading-label {
	color: var(--p-accent);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 0.85rem;
	margin-bottom: 1rem;
}
#about .heading-name {
	font-size: clamp(2.5rem, 5vw, 3.8rem);
	font-weight: 900;
	color: var(--p-white);
	margin-bottom: 1.5rem;
	line-height: 1;
}
#about .about-description {
	font-size: 1.15rem;
	color: var(--p-text);
	margin-bottom: 2.5rem;
	max-width: 580px;
}
#about .about-stats {
	padding-left: 0;
	list-style: none;
}
#about .about-stats li {
	position: relative;
	padding-left: 2.5rem;
	margin-bottom: 1.8rem;
	color: var(--p-white);
	font-weight: 500;
	display: flex;
	align-items: center;
}
#about .stat-glow {
	position: absolute;
	left: 0;
	width: 25px;
	height: 25px;
	background: var(--p-accent);
	filter: blur(10px);
	opacity: 0.4;
	border-radius: 50%;
}
#about .about-stats li::before {
	content: '';
	position: absolute;
	left: 8px;
	width: 8px;
	height: 8px;
	background: var(--p-link);
	box-shadow: 0 0 10px var(--p-link);
	transform: rotate(45deg);
	z-index: 2;
}

@media (max-width: 991.98px) {
#about {
	padding: 40px 0 !important;
}
#about .photo-container {
	margin: 0 auto 35px auto !important;
	width: 100%;
	max-width: 450px;
	text-align: center;
}
#about .profile-img {
	width: 100% !important;
	height: auto !important;
	max-height: 500px;
	object-fit: cover;
}
#about .experience-badge {
	right: 10px !important;
	bottom: 25px !important;
	padding: 12px 20px !important;
}
#about .heading-label, #about .heading-name {
	text-align: center !important;
	display: block;
	width: 100%;
}
#about .heading-name {
	font-size: 2.6rem !important;
	margin-bottom: 1.5rem !important;
}
#about .about-description {
	text-align: left !important;
	font-size: 1.05rem !important;
	padding: 0 10px;
}
#about .about-stats {
	text-align: left !important;
	padding-left: 10px !important;
}
}
/*
* ----------------------------------------------------------------------------------------
* Process
* ----------------------------------------------------------------------------------------
*/

#process {
	padding: 80px 0;
	position: relative;
}
#process .heading-label {
	color: var(--p-accent);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 0.85rem;
	margin-bottom: 1rem;
	display: block;
}
#process .heading-name {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	color: var(--p-white);
	margin-bottom: 2.5rem;
}
#process .step-card {
	background: rgba(2, 6, 23, 0.4);
	padding: 45px 35px;
	height: 100%;
	position: relative;
	border: 1px solid rgba(56, 189, 248, 0.08);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
	display: flex;
	flex-direction: column;
}
#process .step-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	box-shadow: 0 0 40px rgba(168, 85, 247, 0.1), inset 0 0 20px rgba(168, 85, 247, 0.05);
	opacity: 0.7;
	z-index: -1;
	transition: all 0.5s ease;
}
#process .step-card::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 15%;
	width: 70%;
	height: 12px;
	background: var(--p-accent);
	filter: blur(20px);
	opacity: 0.25;
	transition: all 0.5s ease;
	z-index: -1;
}
#process .step-card:hover {
	background: rgba(15, 23, 42, 0.8);
	transform: translateY(-12px);
	border-color: rgba(56, 189, 248, 0.2);
}
#process .step-card:hover::after {
	box-shadow: 0 0 60px rgba(168, 85, 247, 0.25), inset 0 0 30px rgba(168, 85, 247, 0.15);
	opacity: 1;
}
#process .step-card:hover::before {
	opacity: 0.7;
	filter: blur(15px);
	width: 90%;
	left: 5%;
}
#process .step-idx {
	display: block;
	font-size: 2.8rem;
	font-weight: 900;
	color: var(--p-link);
	opacity: 0.3;
	margin-bottom: 25px;
	transition: all 0.4s ease;
	font-family: 'Monospace', monospace;
	line-height: 1;
}
#process .step-card:hover .step-idx {
	opacity: 1;
	text-shadow: 0 0 20px var(--p-link);
}
#process .step-name {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--p-white);
	margin-bottom: 18px;
}
#process .step-desc {
	font-size: 1rem;
	color: var(--p-text);
	line-height: 1.7;
}
#process .step-desc b {
	color: var(--p-link);
	font-weight: 800;
}
 @keyframes pulseSubtle {
 0%, 100% {
opacity: 0.6;
}
 50% {
opacity: 0.9;
}
}
#process .step-card::after {
	animation: pulseSubtle 4s infinite ease-in-out;
}
#process .step-card::after {
	animation: pulseSubtle 4s infinite ease-in-out;
}

@media (max-width: 991.98px) {
#process {
	padding: 30px 0;
	position: relative;
}
#process .heading-label, #process .heading-name {
	text-align: center !important;
	width: 100%;
}
#process .heading-name {
	margin-bottom: 3rem !important;
	font-size: 2.2rem !important;
}
#process .step-card {
	padding: 25px 20px !important;
	margin-bottom: 10px;
}
#process .step-idx {
	font-size: 2rem !important;
	margin-bottom: 10px !important;
}
#process .step-name {
	font-size: 1.2rem !important;
	margin-bottom: 8px !important;
}
#process .step-desc {
	font-size: 0.9rem !important;
	line-height: 1.4 !important;
}
#process .step-card::after {
	display: none !important;
}
}
/*
* ----------------------------------------------------------------------------------------
* Selection
* ----------------------------------------------------------------------------------------
*/
#selection {
	padding: 50px 0;
}
#selection .heading-label {
	color: var(--p-accent);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 0.85rem;
	margin-bottom: 1rem;
	display: block;
	text-align: left;
}
#selection .heading-name {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	color: var(--p-white);
	margin-bottom: 4rem;
	text-align: left;
	line-height: 1.1;
	letter-spacing: -1px;
	position: relative;
}
#selection .heading-name::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 50px;
	height: 2px;
	background: var(--p-link);
	box-shadow: 0 0 10px var(--p-link);
}

@media (max-width: 991.98px) {
#selection .heading-label, #selection .heading-name {
	text-align: center;
}
#selection .heading-name::after {
	left: 50%;
	transform: translateX(-50%);
}
}
#selection .group-title {
	color: var(--p-white);
	font-weight: 700;
	margin-bottom: 25px;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}
#selection .check-box, #selection .radio-box {
	cursor: pointer;
}
#selection .check-box input, #selection .radio-box input {
	display: none;
}
#selection .box-inner {
	width: 100px;
	height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 42, 0.4);
	border: 1px solid var(--p-border);
	color: var(--p-text);
	transition: all 0.3s ease;
	text-align: center;
}
#selection .box-inner i {
	font-size: 1.8rem;
	margin-bottom: 8px;
	color: var(--p-link);
	transition: 0.3s;
}
#selection .box-inner span {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}
#selection input:checked + .box-inner {
	border-color: var(--p-accent);
	background: rgba(168, 85, 247, 0.1);
	color: var(--p-white);
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}
#selection input:checked + .box-inner i {
	color: var(--p-accent);
	filter: drop-shadow(0 0 5px var(--p-accent));
}
#selection .box-inner * {
	pointer-events: none;
}
.range-wrapper {
	position: relative;
	padding: 25px 0;
}
#selection .cyber-range-ultra {
	-webkit-appearance: none !important;
	appearance: none !important;
	width: 100%;
	height: 12px;
	background: transparent !important;
	outline: none;
	cursor: pointer;
	display: block;
	margin: 0;
}
 #selection .cyber-range-ultra::-webkit-slider-runnable-track {
 height: 12px;
 border-radius: 10px;
 background: rgba(56, 189, 248, 0.1);
 background-image: linear-gradient( to right, var(--p-accent) 0%, var(--p-accent) var(--range-progress, 0%), transparent var(--range-progress, 0%) );
 transition: 0.1s;
}
 #selection .cyber-range-ultra::-webkit-slider-thumb {
 -webkit-appearance: none !important;
 appearance: none !important;
 width: 26px;
 height: 26px;
 background: var(--p-accent) !important;
 border: 2px solid #ffffff !important;
 border-radius: 50%;
 box-shadow: 0 0 15px var(--p-accent);
 margin-top: -7px;
 cursor: pointer;
 transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
 #selection .cyber-range-ultra:active::-webkit-slider-thumb {
 transform: scale(1.2);
}
 #selection .cyber-range-ultra::-moz-range-track {
 height: 12px;
 background: rgba(56, 189, 248, 0.1);
 border-radius: 10px;
}
 #selection .cyber-range-ultra::-moz-range-progress {
 height: 12px;
 background: var(--p-accent);
 border-radius: 10px;
}
 #selection .cyber-range-ultra::-moz-range-thumb {
 width: 24px;
 height: 24px;
 background: var(--p-accent);
 border: 2px solid #ffffff;
 border-radius: 50%;
 box-shadow: 0 0 15px var(--p-accent);
 cursor: pointer;
}
#selection .range-marks {
	display: flex !important;
	justify-content: space-between !important;
	width: 100%;
	margin-top: 20px;
}
#selection .range-marks span {
	font-size: 0.8rem;
	color: var(--p-text);
	font-weight: 600;
	min-width: 40px;
}
#selection .range-marks span:last-child {
	text-align: right;
}
#selection .range-marks span {
	font-size: 0.8rem;
	color: var(--p-text);
	font-weight: 600;
}
#ai-assistant-box {
	background: rgba(168, 85, 247, 0.05);
	border-left: 3px solid var(--p-accent);
	padding: 30px;
	margin-top: 10px;
	position: relative;
}
#ai-assistant-box .ai-header {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--p-accent);
	font-weight: 800;
}
#ai-assistant-box .ai-glow-dot {
	position: absolute;
	left: -35px;
	width: 15px;
	height: 15px;
	background: var(--p-accent);
	filter: blur(8px);
	border-radius: 50%;
}
 @keyframes spin {
 from {
transform: rotate(0deg);
}
 to {
transform: rotate(360deg);
}
}
.spin {
	display: inline-block;
	animation: spin 2s linear infinite;
	color: var(--p-link);
}

@media (max-width: 991.98px) {
#selection .box-inner {
	width: 85px;
	height: 85px;
}
#selection .box-inner i {
	font-size: 1.5rem;
}
#selection .box-inner span {
	font-size: 0.6rem;
}
#selection .group-title {
	text-align: center;
}
#selection .d-flex.flex-wrap {
	justify-content: center;
}
}
/*
* ----------------------------------------------------------------------------------------
* Offers
* ----------------------------------------------------------------------------------------
*/

#offers {
	position: relative;
	overflow: hidden;
}
#offers .container {
	position: relative;
	z-index: 1;
}
#offers .heading-label {
	color: var(--p-accent);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 0.85rem;
	margin-bottom: 1rem;
	display: block;
	text-align: left;
}
#offers .heading-name {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	color: var(--p-white);
	margin-bottom: 4rem;
	text-align: left;
	line-height: 1.1;
	letter-spacing: -1px;
	position: relative;
}
#offers .heading-name::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 50px;
	height: 2px;
	background: var(--p-link);
	box-shadow: 0 0 10px var(--p-link);
}

@media (max-width: 991.98px) {
#offers .heading-label, #offers .heading-name {
	text-align: center;
}
#offers .heading-name::after {
	left: 50%;
	transform: translateX(-50%);
}
}
#offers .offer-card {
	background: rgba(30, 27, 75, 0.2);
	border: 1px solid var(--p-border);
	padding: 30px 20px;
	border-radius: 4px;
	transition: 0.3s;
	height: 100%;
	width: 100%;
	margin-bottom: 5px;
}
#offers .offer-card:hover {
	border-color: var(--p-accent);
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
	background: rgba(30, 27, 75, 0.4);
}
#offers .offer-svg-box {
	width: 100px;
	height: 100px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
#offers .offer-svg-box svg {
	display: block;
	max-width: 100%;
	max-height: 100%;
}
#offers .offer-label {
	color: var(--p-link);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
}
#offers .offer-name {
	color: var(--p-white);
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}
#offers .offer-specs {
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
	color: var(--p-text);
	font-size: 14px;
}
#offers .offer-specs li {
	margin-bottom: 8px;
}
#offers .offer-specs span {
	color: var(--p-link);
}
#offers .offer-price {
	font-size: 24px;
	color: var(--p-white);
	font-weight: bold;
	margin-bottom: 20px;
	text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}
#offers-carousel .owl-stage-outer {
	padding-top: 20px;
	padding-bottom: 40px;
	margin-top: -20px;
	margin-bottom: -40px;
}
#offers-carousel .owl-item {
	display: flex;
	justify-content: center;
}
.owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
}
.glass-nav {
	pointer-events: all;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--p-border);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--p-link);
	font-size: 20px;
	transition: all 0.3s ease;
	cursor: pointer;
}
.owl-prev {
	left: -60px;
	position: absolute;
}
.owl-next {
	right: -60px;
	position: absolute;
}
.glass-nav:hover {
	background: rgba(168, 85, 247, 0.1);
	border-color: var(--p-accent);
	color: var(--p-white);
	box-shadow: 0 0 15px var(--p-accent);
	transform: scale(1.1);
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
	background: none !important;
	border: none !important;
	outline: none !important;
}

@media (max-width: 1300px) {
.owl-prev {
	left: 5px;
}
.owl-next {
	right: 5px;
}
.glass-nav {
	width: 40px;
	height: 40px;
}
}

@media (max-width: 767px) {
.owl-nav {
	position: relative !important;
	top: 0 !important;
	transform: none !important;
	display: flex !important;
	justify-content: center !important;
	gap: 20px;
	margin-top: 30px;
	pointer-events: all !important;
}
.owl-prev, .owl-next {
	position: relative !important;
	left: 0 !important;
	right: 0 !important;
}
.glass-nav {
	width: 45px;
	height: 45px;
}
}
/*
* ----------------------------------------------------------------------------------------
* Footer
* ----------------------------------------------------------------------------------------
*/


#footer {
	padding: 30px 0;
	margin-top: 100px;
	background: var(--bg-deep);
	border-top: 1px solid var(--p-border);
	position: relative;
}
#footer::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--p-link), transparent);
	box-shadow: 0 0 10px var(--p-link);
}
#footer .footer-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#footer .legal-data strong {
	color: var(--p-white);
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	font-size: 14px;
}
#footer .legal-data .inn-label {
	color: var(--p-white);
	font-family: monospace;
	font-size: 13px;
	opacity: 0.9;
}
.footer-socials {
	display: flex;
	gap: 15px;
	justify-content: center;
	align-items: center;
}
.social-link {
	display: flex;
	width: 30px;
	height: 30px;
	transition: transform 0.3s ease, filter 0.3s ease;
}
.social-link svg {
	width: 30px !important;
	height: 30px !important;
	display: block;
}
.social-link:hover {
	transform: translateY(-3px);
	filter: brightness(1.2);
}
#footer .counter-stub {
	border: 1px solid var(--p-border);
	padding: 4px 12px;
	color: var(--p-link);
	font-size: 12px;
	background: rgba(56, 189, 248, 0.05);
}

@media (max-width: 768px) {
#footer .footer-flex {
	flex-direction: column;
	text-align: center;
	gap: 25px;
}
.footer-socials {
	order: 2;
}
}
/*
* ----------------------------------------------------------------------------------------
* Smart Scroll Button
* ----------------------------------------------------------------------------------------
*/
#smart-scroll-top {
 --btn-size: 55px;
 --accent-color: var(--p-accent);
 --glass-color: rgba(15, 23, 42, 0.8);
 --border-color: var(--p-border);
	position: fixed;
	right: 40px;
	bottom: 90px;
	width: var(--btn-size);
	height: var(--btn-size);
	cursor: pointer;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#smart-scroll-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
#smart-scroll-top .progress-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
	background: var(--glass-color);
	backdrop-filter: blur(10px);
	border-radius: 4px;
	border: 1px solid var(--border-color);
}
#smart-scroll-top .progress-path {
	stroke: var(--accent-color);
	stroke-width: 4px;
	stroke-dasharray: 384;
	stroke-dashoffset: 384;
	fill: none;
	filter: drop-shadow(0 0 5px var(--accent-color));
}
#smart-scroll-top .arrow-icon {
	position: relative;
	z-index: 5;
	width: 24px;
	height: 24px;
	color: var(--p-white);
	display: flex;
	align-items: center;
	justify-content: center;
}
#smart-scroll-top:hover .arrow-icon {
	transform: translateY(-3px);
	color: var(--p-accent);
}
