/*--------------------------------------------------------------
# Main Combined Stylesheet - V34 (CRYO HYBRID THEME)
# Merged Cryospa aesthetic with the Lumolex layout.
# Dark theme is the default.
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Variables & General Styling (Dark Navy Theme)
--------------------------------------------------------------*/
:root {
	--default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
	--heading-font: "Nunito", sans-serif;
	--nav-font: "Inter", sans-serif;

	/* NEW: Cryospa-inspired Colors */
	--accent-color: #00c6ff; /* Bright blue for accents */
	--accent-color-rgb: 0, 198, 255;
	--secondary-color: #0072ff; /* A deeper blue for gradients */
	--background-color: #0a142f; /* Dark Navy Blue Background */
	--default-color: #cdd5e0; /* Light grey for body text */
	--heading-color: #fff; /* White for all headings */
	--surface-color: rgba(
		23,
		37,
		84,
		0.5
	); /* Dark transparent blue for cards */
	--contrast-color: #0a142f; /* Dark navy for text on light buttons */
	--nav-color: #fff; /* White for nav text */
	--nav-hover-color: var(--accent-color); /* Bright blue for nav hover */
}
html {
	font-size: 16px;
	scroll-behavior: smooth;
}
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
	font-size: 1rem;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}
*:focus-visible {
	outline: 3px solid rgba(var(--accent-color-rgb), 0.7);
	outline-offset: 3px;
	border-radius: 0.3125rem;
}

/*--------------------------------------------------------------
# Buttons (MODIFIED - Pill Shape)
--------------------------------------------------------------*/
.btn-primary {
	border-radius: 3.125rem; /* MODIFIED: Pill shape */
	padding: 0.75rem 1.75rem;
	font-weight: 600;
	border: none;
	margin: 0 0.3125rem;
	/* MODIFIED: White button style */
	color: var(--contrast-color) !important;
	background: var(--contrast-color-light, #ffffff);
	transition: all 0.4s ease-out;
	display: inline-block;
	text-align: center;
}
.btn-primary:hover {
	transform: scale(1.05);
	background: var(--contrast-color-light-hover, #f0f0f0);
	color: var(--contrast-color) !important;
}
.btn-light {
	border-radius: 3.125rem; /* MODIFIED: Pill shape */
	padding: 0.75rem 1.75rem;
	font-weight: 600;
	margin: 0 0.3125rem;
	display: inline-block;
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff !important;
	transition: all 0.3s ease;
}
.btn-light:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff !important;
}

/*--------------------------------------------------------------
# Background & Header (MODIFIED)
--------------------------------------------------------------*/
#constellation-bg {
	display: none; /* Disabled for this design */
}

.header {
	padding: 1.25rem 0 !important;
	position: fixed;
	/* MODIFIED: Transparent header */
	background: transparent;
	transition: all 0.5s;
	z-index: 997;
	top: 0;
	width: 100%;
}
.header.scrolled {
	background: rgba(10, 20, 47, 0.85); /* Dark navy with transparency */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 0.75rem 0 !important;
}
.header .header-container {
	justify-content: space-between !important;
	max-width: 100%;
	background: none;
	backdrop-filter: none;
	border: none;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
}
.header .logo {
	padding-left: 2rem;
}
.header .logo h1 {
	font-size: 1.5rem;
	margin: 0;
	font-weight: 700;
	color: var(--nav-color);
}
.navmenu {
	padding-right: 2rem;
	flex-grow: 1;
}
.navmenu ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
	justify-content: center;
}
.navmenu a,
.navmenu a:focus {
	padding: 0.625rem 0.9375rem;
	font-size: 0.9rem;
	font-family: var(--nav-font);
	font-weight: 500;
	color: var(--nav-color);
	white-space: nowrap;
	transition: color 0.3s;
	position: relative;
}
.navmenu a:hover,
.navmenu a.active {
	color: var(--nav-hover-color);
}
.navmenu a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0.9375rem;
	right: 0.9375rem;
	height: 2px;
	background-color: var(--nav-hover-color);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}
.navmenu a.active::after {
	transform: scaleX(1);
}

/*--------------------------------------------------------------
# Sections, Titles, Cards
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 5rem 0;
	scroll-margin-top: 5.625rem;
	overflow: clip;
	position: relative;
}
.section-title {
	text-align: center;
	padding-bottom: 3.75rem;
	isolation: isolate;
}
.section-title h2 {
	color: var(--heading-color);
}
.section-title p {
	margin-bottom: 0;
	color: var(--default-color);
}
.glass-card {
	background: var(--surface-color);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 1rem;
	border: 1px solid rgba(0, 198, 255, 0.15);
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
	height: 100%;
	padding: 1.875rem;
	transition: all 0.2s ease-out;
	transform-style: preserve-3d;
	isolation: isolate;
}
.glass-card:hover {
	background: rgba(23, 37, 84, 0.7);
	box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25),
		0 0 25px rgba(var(--accent-color-rgb), 0.25);
	border-color: rgba(0, 198, 255, 0.3);
}

/*--------------------------------------------------------------
# Hero Section (MODIFIED - Two Column Layout)
--------------------------------------------------------------*/
.hero {
	padding: 10rem 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-image: radial-gradient(
		circle at 80% 50%,
		rgba(0, 114, 255, 0.2) 0%,
		rgba(10, 20, 47, 0) 40%
	);
}
.hero .hero-content {
	text-align: left;
}
.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
}
.hero p {
	max-width: 100%;
}
.hero .company-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background-color: rgba(0, 198, 255, 0.1);
	border-radius: 3.125rem;
	color: var(--accent-color);
	font-weight: 600;
	font-size: 0.875rem;
	border: 1px solid rgba(0, 198, 255, 0.2);
}
.hero-image-column {
	position: relative;
}
.hero-image-container {
	position: relative;
	z-index: 1;
}
.hero-image {
	width: 100%;
	border-radius: 1.5rem;
	object-fit: cover;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/*--------------------------------------------------------------
# About & Feature Demos Sections (Tabbed Content)
--------------------------------------------------------------*/
.about-nav,
.feature-demos-nav {
	margin-right: 1.875rem;
}
.about-nav {
	min-width: 12.5rem;
}
.feature-demos-nav {
	min-width: 15.625rem;
}
.about-nav-item,
.feature-demos-nav-item {
	display: block;
	padding: 0.9375rem 1.25rem;
	margin-bottom: 0.625rem;
	border-radius: 0.625rem;
	font-weight: 600;
	color: var(--heading-color);
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	text-align: left;
}
.about-nav-item:hover,
.feature-demos-nav-item:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--default-color);
}
.about-nav-item.active,
.feature-demos-nav-item.active {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	border-color: var(--accent-color);
}
.about-content,
.feature-demos-content {
	position: relative;
	flex-grow: 1;
}
.feature-demos-content {
	min-height: 28.125rem;
}
.about-pane,
.feature-demos-pane {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translateY(1.25rem);
	transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
	visibility: hidden;
}
.about-pane.active,
.feature-demos-pane.active {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0s;
}
.about-pane .custom-icon-box i,
.about-pane .custom-icon-box h3 {
	color: var(--heading-color);
}
.about-pane .custom-icon-box p {
	color: var(--default-color);
	min-height: 6em;
	position: relative;
}

/*--------------------------------------------------------------
# Features Section (MODIFIED Gradient Cards)
--------------------------------------------------------------*/
#features .row {
	transform: translateX(12.5rem);
	opacity: 0;
	transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1),
		opacity 1s cubic-bezier(0.23, 1, 0.32, 1);
}
#features .row.is-inview {
	transform: translateX(0);
	opacity: 1;
}
.custom-features-item {
	text-align: left;
	padding: 1.5625rem;
}
.custom-features-item i {
	font-size: 2.25rem !important;
	margin-bottom: 0.9375rem;
	display: inline-block;
}
.custom-features-item h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.625rem;
}
.custom-features-item p {
	font-size: 0.9rem;
	opacity: 0.9;
}
.custom-features-item,
.custom-features-item i,
.custom-features-item h3,
.custom-features-item p {
	color: white !important;
	mix-blend-mode: normal !important;
}
/* NEW: Dark-themed gradients */
.feature-card-1 {
	background-image: linear-gradient(
		45deg,
		#0f2027 0%,
		#203a43 50%,
		#2c5364 100%
	) !important;
}
.feature-card-2 {
	background-image: linear-gradient(
		45deg,
		#141e30 0%,
		#243b55 100%
	) !important;
}
.feature-card-3 {
	background-image: linear-gradient(
		45deg,
		#2c3e50 0%,
		#4ca1af 100%
	) !important;
}
.feature-card-4 {
	background-image: linear-gradient(
		45deg,
		#000428 0%,
		#004e92 100%
	) !important;
}
.feature-card-5 {
	background-image: linear-gradient(
		45deg,
		#1d2b64 0%,
		#2c3e50 100%
	) !important;
}
.feature-card-6 {
	background-image: linear-gradient(
		45deg,
		#232526 0%,
		#414345 100%
	) !important;
}
.feature-card-7 {
	background-image: linear-gradient(
		45deg,
		#373b44 0%,
		#4286f4 100%
	) !important;
}
.feature-card-8 {
	background-image: linear-gradient(
		45deg,
		#28313b 0%,
		#485461 100%
	) !important;
}

/*--------------------------------------------------------------
# Workflow Animation Section
--------------------------------------------------------------*/
.workflow-animation-section .section-title p {
	max-width: 37.5rem;
	margin-left: auto;
	margin-right: auto;
}
.workflow-diagram-container {
	position: relative;
	width: 100%;
	max-width: 40.625rem;
	aspect-ratio: 1 / 1;
	margin: 2.5rem auto;
}
.workflow-lines-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: visible;
}
.workflow-node {
	position: absolute;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.7);
	transition: opacity 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.1s,
		transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.1s;
}
.workflow-node .node-content {
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 0.9375rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 7.5rem;
	height: 7.5rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.workflow-node.central-node .node-content {
	width: 9.375rem;
	height: 9.375rem;
	background: rgba(var(--accent-color-rgb), 0.15);
	border: 1px solid rgba(var(--accent-color-rgb), 0.5);
}
.workflow-node .node-content i {
	font-size: 2.5rem;
	margin-bottom: 0.625rem;
	color: var(--accent-color);
	transition: transform 0.3s ease;
}
.workflow-node.central-node .node-content i {
	font-size: 3.2rem;
	color: var(--accent-color);
}
.workflow-node .node-content span {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--default-color);
	line-height: 1.2;
}
.workflow-node.central-node .node-content span {
	color: var(--accent-color);
}
.workflow-node.visible {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
.workflow-connecting-line {
	stroke-linecap: round;
	stroke: var(--accent-color);
}
.workflow-packet {
	width: 0.5rem;
	height: 0.5rem;
	background-color: var(--accent-color);
	border-radius: 50%;
	position: absolute;
	box-shadow: 0 0 8px var(--accent-color),
		0 0 12px rgba(var(--accent-color-rgb), 0.7);
	opacity: 0;
	pointer-events: none;
}

/*--------------------------------------------------------------
# Use Cases, FAQ, Pricing, CTA
--------------------------------------------------------------*/
.use-case-item {
	text-align: left;
}
.use-case-icon {
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 50%;
	background-color: rgba(var(--accent-color-rgb), 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 1.25rem 0;
}
.use-case-icon i {
	font-size: 1.75rem;
	color: var(--accent-color);
}
.use-case-item h3,
.faq-container .faq-item h3,
.pricing-item h3 {
	font-weight: 700;
	color: var(--heading-color);
}
.use-case-item h3 {
	font-size: 1.2rem;
	margin-bottom: 0.3125rem;
}
.use-case-item h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-top: 1.25rem;
	margin-bottom: 0.5rem;
}

.use-case-item p {
	font-style: normal;
	margin: 0;
	color: var(--default-color);
}
.faq-item {
	text-align: left;
}
.faq-container .faq-item h3 {
	font-size: 1rem;
	margin: 0 1.875rem 0 0;
	cursor: pointer;
}
.faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
}
.faq-container .faq-item .faq-content p {
	margin-bottom: 0;
	overflow: hidden;
	padding-top: 0.625rem;
	color: var(--default-color);
}
.faq-container .faq-item .faq-toggle {
	position: absolute;
	top: 1.875rem;
	right: 1.5625rem;
	font-size: 1rem;
	transition: 0.3s;
	cursor: pointer;
	color: var(--default-color);
}
.faq-container .faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
}
.faq-container .faq-active .faq-toggle {
	transform: rotate(90deg);
}
.faq-subsection-title {
	margin-top: 2.5rem; /* Adjust this value to increase/decrease space */
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 1.5rem;
}
.faq-container > .faq-subsection-title:first-of-type {
	margin-top: 0;
}
.pricing-item {
	padding: 2.5rem;
	text-align: center;
}
.pricing-item.featured {
	border: 2px solid var(--accent-color);
	position: relative;
}
.featured-badge {
	position: absolute;
	top: -0.9375rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent-color);
	color: var(--contrast-color);
	padding: 0.3125rem 0.9375rem;
	border-radius: 3.125rem;
	font-size: 0.875rem;
	font-weight: 600;
}
.pricing-item h3 {
	font-size: 1.5rem;
	margin-bottom: 0.9375rem;
}
.pricing-item h4 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 1.5625rem;
}
.pricing-item h4 sup {
	font-size: 1.75rem;
	font-weight: 300;
}
.pricing-item h4 span {
	color: var(--default-color);
	font-size: 1rem;
	font-weight: 400;
}
.pricing-item ul {
	list-style: none;
	padding: 0;
	text-align: left;
	margin-bottom: 1.875rem;
}
.pricing-item ul li {
	padding-bottom: 0.9375rem;
	color: var(--default-color);
}
.pricing-item ul i {
	color: #11998e;
	font-size: 1.25rem;
	padding-right: 0.5rem;
}
.pricing-item ul .na i {
	color: #6c757d;
}
.pricing-item ul .na span {
	text-decoration: line-through;
	color: #6c757d;
}
.cta-section {
	padding: 6.25rem 0;
	position: relative;
	background-color: transparent;
}
.cta-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at center,
		rgba(var(--accent-color-rgb), 0.1),
		transparent 60%
	);
	z-index: -1;
}
.cta-section h2 {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1.25rem;
	color: var(--heading-color);
}
.cta-section p {
	max-width: 37.5rem;
	margin: 0 auto 1.875rem auto;
	color: var(--default-color);
}
.cta-section .btn-primary {
	font-size: 1.125rem;
	padding: 0.9375rem 2.5rem;
}

/*--------------------------------------------------------------
# Footer & Utility Buttons
--------------------------------------------------------------*/
.footer {
	background-color: transparent;
	font-size: 0.875rem;
	padding: 1.875rem 0;
	isolation: isolate;
}
.footer .copyright {
	padding-top: 1.875rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .copyright p,
.footer .copyright .sitename {
	color: var(--heading-color);
}

/* Cookie Consent Banner Styles */
#cookie-consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--surface-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1rem 1.5rem;
	z-index: 1060;
	display: none; /* Hidden by default, JS will show it */
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

#cookie-consent-banner p {
	margin: 0;
	color: var(--default-color);
	font-size: 0.9rem;
}

#cookie-consent-banner p a {
	color: var(--accent-color);
	text-decoration: underline;
}

#cookie-consent-banner div {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
}

#cookie-consent-banner .btn {
	padding: 0.5rem 1.25rem;
	border-radius: 2rem;
	margin: 0;
}

#chat-popup-wrapper {
	position: fixed;
	top: 0;
	right: 1.875rem;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 1040;
	pointer-events: none;
}
#openChatPopupBtn {
	pointer-events: auto;
	background-color: rgba(255, 255, 255, 0.9);
	border: 1px solid #fff;
	box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.2);
	border-radius: 1rem;
	width: 3.75rem;
	height: 3.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
#openChatPopupBtn i {
	font-size: 1.75rem;
	color: var(--contrast-color);
	transition: transform 0.3s ease;
}
#openChatPopupBtn:hover {
	transform: scale(1.1);
}

.scroll-top-btn {
	position: fixed;
	bottom: 1.875rem;
	right: 1.875rem;
	z-index: 1000;
	width: 2.75rem;
	height: 2.75rem;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--contrast-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(1.25rem);
	transition: all 0.3s ease;
}
.scroll-top-btn.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.scroll-top-btn:hover {
	background-color: rgba(255, 255, 255, 0.2);
	color: var(--contrast-color);
}
#theme-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	margin-left: 0.625rem;
	margin-right: 1rem;
	font-size: 1.25rem;
	line-height: 1;
	order: 3;
	color: var(--nav-color);
}
#theme-toggle:hover {
	color: var(--nav-hover-color);
}

/*--------------------------------------------------------------
# Mobile Overrides
--------------------------------------------------------------*/
@media (max-width: 991px) {
	.header {
		padding: 0.75rem 0 !important;
		background: rgba(10, 20, 47, 0.85);
	}
	.header .logo {
		padding-left: 1rem;
	}
	.navmenu {
		padding-right: 1rem;
	}
	.mobile-nav-toggle {
		display: block;
		color: var(--nav-color);
		font-size: 1.75rem;
		line-height: 0;
		cursor: pointer;
	}
	.mobile-nav-active .navmenu ul {
		background-color: #0a142f;
	}
	.hero {
		padding: 8rem 0;
		text-align: center;
	}
	.hero .row {
		flex-direction: column-reverse;
	}
	.hero-image-column {
		margin-bottom: 3rem;
	}
	.hero-content {
		text-align: center;
	}
	.hero h1 {
		font-size: 2.5rem;
	}
	.about-flex-container,
	.feature-demos-flex-container {
		flex-direction: column;
	}
	.about-nav,
	.feature-demos-nav {
		margin-right: 0;
		margin-bottom: 1.25rem;
		min-width: auto;
	}
	#cookie-consent-banner {
		flex-direction: column;
		text-align: center;
	}
}

/* Light theme is not the primary design for this version, so overrides are minimal */
body.light-theme {
	--background-color: #f4f7f9;
	--default-color: #343a40;
	--heading-color: #212529;
	--surface-color: #ffffff;
	--nav-color: #212529;
	--contrast-color: #ffffff;
	--contrast-color-light: var(--accent-color);
	--contrast-color-light-hover: var(--secondary-color);
}
body.light-theme .header.scrolled {
	background: rgba(255, 255, 255, 0.85);
}
body.light-theme .glass-card {
	background: rgba(255, 255, 255, 0.75);
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.06);
}
body.light-theme .btn-primary {
	color: #fff !important;
}
body.light-theme .hero {
	background-image: radial-gradient(
		circle at 80% 50%,
		rgba(0, 114, 255, 0.1) 0%,
		rgba(244, 247, 249, 0) 40%
	);
}

/*--------------------------------------------------------------
# Custom Application Modal
--------------------------------------------------------------*/
.custom-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	z-index: 2000;
	display: none; /* Hidden by default */
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.custom-modal-overlay.active {
	display: flex;
	opacity: 1;
}

.custom-modal-container {
	width: 90%;
	max-width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 2rem;
	position: relative;
	/* Inherits glass-card styles but we ensure specific overrides */
	background: rgba(23, 37, 84, 0.95);
	border: 1px solid rgba(0, 198, 255, 0.3);
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.custom-modal-overlay.active .custom-modal-container {
	transform: scale(1);
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 1rem;
}

.btn-close-custom {
	background: none;
	border: none;
	color: var(--default-color);
	font-size: 1.5rem;
	cursor: pointer;
	transition: color 0.3s;
}

.btn-close-custom:hover {
	color: var(--accent-color);
}

/* Form Styles */
.custom-input {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	border-radius: 0.5rem;
}

select.custom-input {
	cursor: pointer;
}

.custom-input:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--accent-color);
	color: #fff;
	box-shadow: 0 0 0 0.25rem rgba(var(--accent-color-rgb), 0.25);
}

.custom-input option {
	background-color: var(--background-color);
	color: #fff;
}

label {
	font-size: 0.9rem;
	margin-bottom: 0.4rem;
	color: var(--heading-color);
}

/* Pricing Card Height Fix */
.pricing-item {
	display: flex;
	flex-direction: column;
}
