:root {
	--color-bg: #f6f8fb;
	--color-dark: #070304;
	--color-dark-muted: #1f1b20;
	--color-accent: #268bd6;
	--color-accent-soft: rgba(38, 139, 214, 0.12);
	--color-border: rgba(255, 255, 255, 0.08);
	--font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
}

body {
	font-family: var(--font-family);
	background: var(--color-bg);
	color: var(--color-dark);
	margin: 0;
}

.site-header {
	position: relative;
	background: radial-gradient(circle at 15% 20%, rgba(111, 182, 255, 0.3), transparent 55%),
		radial-gradient(circle at 80% -10%, rgba(255, 165, 246, 0.25), transparent 60%),
		linear-gradient(140deg, #04060f 0%, #050d1f 55%, #08163a 100%);
	color: #fff;
	padding-bottom: 4rem;
	overflow: hidden;
}

.site-header::before,
.site-header::after {
	content: '';
	position: absolute;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	filter: blur(55px);
	opacity: 0.4;
	background: radial-gradient(circle, rgba(120, 188, 255, 0.55), transparent 70%);
	z-index: 0;
}

.site-header::before {
	left: -18%;
	top: -25%;
}

.site-header::after {
	right: -12%;
	top: 5%;
}

.site-header > * {
	position: relative;
	z-index: 1;
}

.navbar {
	padding: 1.5rem 0;
	background: transparent;
}

.navbar-brand {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 0;
	margin-right: 1.5rem;
}

.navbar-nav {
	gap: 0.35rem;
	align-items: center;
}

.navbar-dark .navbar-nav .nav-link {
	color: rgba(255, 255, 255, 0.75);
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	transition: color 180ms ease, background 180ms ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus-visible,
.navbar-dark .navbar-nav .nav-link.active {
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
}

.navbar-toggler {
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 12px;
	padding: 0.4rem 0.65rem;
	background: rgba(255, 255, 255, 0.08);
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.15rem rgba(38, 139, 214, 0.35);
}

.navbar-collapse {
	gap: 1.5rem;
}

.language-switch {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-switch__btn {
	appearance: none;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
	font-size: 0.85rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	cursor: pointer;
	transition: background 150ms ease, color 150ms ease;
}

.language-switch__btn:hover,
.language-switch__btn:focus-visible {
	color: #fff;
}

.language-switch__btn.is-active {
	background: #fff;
	color: #050d1f;
}

@media (max-width: 991px) {
	.navbar-collapse {
		background: rgba(4, 8, 26, 0.96);
		border-radius: 20px;
		padding: 1.5rem;
		margin-top: 1.5rem;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
		border: 1px solid rgba(255, 255, 255, 0.08);
		opacity: 0;
		transform: translate3d(0, -6px, 0);
		transition: opacity 180ms ease, transform 220ms ease;
		will-change: height, opacity, transform;
	}

	.navbar-collapse.show,
	.navbar-collapse.collapsing {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}

	@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
		.navbar-collapse.show {
			background: rgba(4, 8, 26, 0.78);
			-webkit-backdrop-filter: blur(14px);
			backdrop-filter: blur(14px);
		}
	}

	.navbar-nav {
		align-items: flex-start;
		width: 100%;
		gap: 0.5rem;
		margin-bottom: 1rem;
	}

	.language-switch {
		width: 100%;
		justify-content: center;
		margin-bottom: 0.75rem;
	}

	.language-switch__btn {
		flex: 1;
		text-align: center;
	}

	.navbar-nav .nav-link {
		padding: 0.75rem 1rem;
		width: 100%;
		border-radius: 12px;
	}

	.navbar .btn-accent {
		width: 100%;
		text-align: center;
		padding: 0.85rem 1.5rem;
		font-size: 1rem;
	}

	.brand-mark {
		gap: 1rem;
		padding: 0.65rem 1rem;
	}

	.brand-mark__icon {
		width: 72px;
		height: 46px;
	}
}

@media (max-width: 767px) {
	.navbar {
		padding: 1rem 0;
	}

	.navbar-collapse {
		padding: 1.25rem;
		margin-top: 1.25rem;
	}
}

.brand-mark {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 0.5rem 1.2rem 0.5rem 0.75rem;
	text-decoration: none;
	color: #fff;
	transition: transform 180ms ease, opacity 180ms ease;
}

.brand-mark:hover,
.brand-mark:focus-visible {
	transform: translateY(-1px);
	opacity: 0.95;
	color: #fff;
}

.brand-mark__icon {
	position: relative;
	width: 88px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transition: all 200ms ease;
}

.brand-mark:hover .brand-mark__icon,
.brand-mark:focus-visible .brand-mark__icon {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.brand-mark__svg {
	display: block;
	width: 100%;
	height: auto;
}

.brand-mark__text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.brand-mark__name {
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.2;
}

.brand-mark__tagline {
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
}

.brand-mark--footer {
	color: #fff;
}

.brand-mark--footer .brand-mark__icon {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.brand-mark--footer:hover .brand-mark__icon,
.brand-mark--footer:focus-visible .brand-mark__icon {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.brand-mark--footer .brand-mark__name {
	color: rgba(255, 255, 255, 0.95);
}

.brand-mark--footer .brand-mark__tagline {
	color: rgba(255, 255, 255, 0.6);
}

.brand-mark--shrink {
	transform: scale(0.96);
}

.btn-accent {
	background: var(--color-accent);
	color: #fff;
	border: none;
	transition: transform 180ms ease;
}

.btn-accent:hover {
	color: #fff;
	transform: translateY(-2px);
}

.navbar .btn-accent {
	background: rgba(38, 139, 214, 0.15);
	border: 1px solid rgba(38, 139, 214, 0.4);
	padding: 0.65rem 1.5rem;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.navbar .btn-accent:hover,
.navbar .btn-accent:focus-visible {
	background: rgba(38, 139, 214, 0.35);
	border-color: rgba(38, 139, 214, 0.65);
	transform: translateY(-2px) scale(1.02);
}

.btn-timekettle {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(120deg, #050a15 0%, #0b2442 48%, #0f5c95 100%);
	border: 1px solid rgba(99, 168, 255, 0.45);
	box-shadow: 0 10px 22px rgba(6, 18, 38, 0.65);
	color: #fff;
	transition: box-shadow 280ms ease;
}

.btn-timekettle:hover,
.btn-timekettle:focus-visible {
	box-shadow: 0 18px 36px rgba(12, 46, 86, 0.7);
}

.btn-timekettle::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	background: radial-gradient(circle at 25% 50%, rgba(120, 186, 255, 0.25), transparent 55%),
		linear-gradient(160deg, rgba(6, 35, 63, 0.65), rgba(4, 18, 34, 0.2));
	opacity: 0.4;
	transition: opacity 280ms ease;
	z-index: -2;
}

.btn-timekettle:hover::before,
.btn-timekettle:focus-visible::before {
	opacity: 0.65;
}

.btn-timekettle::after {
	content: '';
	position: absolute;
	top: -45%;
	bottom: -45%;
	width: 45%;
	left: -80%;
	border-radius: 50% / 45%;
	background: linear-gradient(110deg, rgba(132, 198, 255, 0.5), rgba(44, 124, 206, 0.35));
	box-shadow: 0 0 38px rgba(126, 190, 255, 0.4);
	filter: blur(0.9px);
	opacity: 0;
	transform: translateX(-20%) skewX(-12deg);
	transition: transform 560ms ease, opacity 320ms ease;
	mix-blend-mode: screen;
	pointer-events: none;
	z-index: -1;
}

.btn-timekettle:hover::after,
.btn-timekettle:focus-visible::after {
	opacity: 1;
	transform: translateX(220%) skewX(-12deg);
}

.btn-cta-glow {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
	overflow: hidden;
	transition: border-color 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.btn-cta-glow::after {
	content: '';
	position: absolute;
	left: -60%;
	top: 50%;
	width: 70%;
	height: 130%;
	transform: translate(-50%, -50%) rotate(-8deg);
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent);
	opacity: 0;
	transition: transform 420ms ease, opacity 260ms ease;
	pointer-events: none;
}

.btn-cta-glow:hover,
.btn-cta-glow:focus-visible {
	border-color: rgba(255, 255, 255, 0.65);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn-cta-glow:hover::after,
.btn-cta-glow:focus-visible::after {
	opacity: 1;
	transform: translate(120%, -50%) rotate(-8deg);
}

.hero {
	padding: 4.5rem 0 3rem;
	color: rgba(255, 255, 255, 0.9);
}

.hero-grid {
	align-items: stretch;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	padding: 0.35rem 1rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero h1 {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	line-height: 1.1;
	color: #fff;
}

.hero p {
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.05rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.75rem;
}

.hero-meta {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
}

.hero-meta > div {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 1rem 1.25rem;
	min-width: 150px;
}

.hero-meta strong {
	font-size: 2rem;
	display: block;
}

.hero-meta span {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.75);
}

.hero-card {
	background: rgba(255, 255, 255, 0.04);
	border-radius: 24px;
	padding: 2rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	min-height: 360px;
}

.hero-card__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
	margin-bottom: 1.25rem;
	color: rgba(255, 255, 255, 0.7);
}

.hero-card__header .status {
	padding: 0.25rem 0.9rem;
	border-radius: 999px;
	background: rgba(38, 139, 214, 0.18);
	border: 1px solid rgba(126, 173, 255, 0.3);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}
.hero-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.85);
}

.hero-list li {
	position: relative;
	padding-left: 1.5rem;
}

.hero-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.35rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: linear-gradient(120deg, #5ed1ff, #268bd6);
	box-shadow: 0 0 12px rgba(94, 209, 255, 0.7);
}

.hero-card__content {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.hero-card__content .label {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hero-card__content .value {
	font-size: 1.5rem;
	font-weight: 600;
}

.hero-card__chart {
	position: relative;
	height: 120px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 18px;
	overflow: hidden;
}

.spark {
	position: absolute;
	bottom: 0;
	width: 4px;
	background: var(--color-accent);
	border-radius: 999px;
}

.spark-1 {
	left: 18%;
	height: 40%;
}

.spark-2 {
	left: 45%;
	height: 80%;
}

.spark-3 {
	left: 72%;
	height: 60%;
}

.section {
	padding: 5rem 0;
}

.section-header {
	max-width: 720px;
	margin-bottom: 3rem;
}

.section-header p {
	margin: 0;
	color: rgba(7, 3, 4, 0.7);
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
	color: var(--color-accent);
	margin-bottom: 0.5rem;
}

.features {
	background: #fff;
}

.feature-card {
	background: #fff;
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(7, 3, 4, 0.08);
	height: 100%;
}

.icon-circle {
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: var(--color-accent-soft);
	display: grid;
	place-items: center;
	margin-bottom: 1rem;
}

.icon-circle .material-symbols {
	font-family: 'Material Symbols Outlined', sans-serif;
	font-size: 26px;
	color: var(--color-accent);
}

.products {
	position: relative;
	background: radial-gradient(circle at 12% 15%, rgba(95, 224, 255, 0.25), transparent 45%),
		radial-gradient(circle at 85% 10%, rgba(132, 102, 255, 0.25), transparent 55%),
		linear-gradient(135deg, #04060f 0%, #07122a 55%, #0c1c3f 100%);
	color: #e8f3ff;
	overflow: hidden;
}

.products::before,
.products::after {
	content: '';
	position: absolute;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(126, 173, 255, 0.2), transparent 70%);
	filter: blur(8px);
	opacity: 0.8;
	z-index: 0;
}

.products::before {
	left: -10%;
	bottom: -25%;
}

.products::after {
	right: -12%;
	top: -30%;
}

.products .container {
	position: relative;
	z-index: 1;
}

.products .section-header h2,
.products .section-header p {
	color: rgba(238, 244, 255, 0.92);
}

.products .section-header p {
	color: rgba(232, 240, 255, 0.7);
}

.products .eyebrow {
	color: #7fd2ff;
}

.products .row > [class*='col-'] {
	display: flex;
}

.products .row > [class*='col-'] > * {
	width: 100%;
}

.product-card {
	background: #0b0810;
	color: #fff;
	border-radius: 24px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	height: 100%;
}

.product-card__footer {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.product-card ul {
	padding-left: 1.25rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.product-media {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 18px;
	padding: 1rem;
}

.product-media img {
	width: 100%;
	height: auto;
	border-radius: 14px;
	object-fit: cover;
}

.product-media--gallery {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.product-media--balanced {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	aspect-ratio: 1 / 1;
	min-height: 0;
}

.product-media--balanced img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-media__thumbs {
	display: flex;
	gap: 0.65rem;
}

.product-media__thumbs img {
	height: 84px;
	object-fit: cover;
	flex: 1;
}

.product-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.price {
	font-size: 1.25rem;
	font-weight: 600;
}

.tag {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	font-size: 0.8rem;
	background: rgba(255, 255, 255, 0.12);
}

.tag-new {
	background: rgba(38, 139, 214, 0.25);
	color: #fff;
	align-self: flex-start;
}

.tag-dark {
	background: rgba(255, 255, 255, 0.18);
}

.tag-muted {
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.6);
}

.process {
	background: linear-gradient(135deg, #0d0a10, #16121c 60%, #1f1b20 100%);
	color: #fff;
}

.timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.timeline-step {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 1.75rem;
}

.step-number {
	font-size: 0.85rem;
	letter-spacing: 0.4em;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 1rem;
}

.testimonials {
	background: #fff;
}

.testimonial-card {
	background: #fdfdff;
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(7, 3, 4, 0.08);
	height: 100%;
}

.testimonial-card .author {
	margin-top: 1.5rem;
	font-weight: 600;
	color: var(--color-dark);
}

.pricing {
	background: #f3f5f9;
}

.pricing-card {
	background: #0b0810;
	color: #fff;
	border-radius: 24px;
	padding: 2.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.7);
}

.pricing-card.featured {
	background: linear-gradient(135deg, #0a0b0f, #268bd6);
	border: 1px solid rgba(38, 139, 214, 0.5);
}

.usecases {
	position: relative;
	background: linear-gradient(180deg, #f4f8ff 0%, #eef5ff 45%, #fdfdff 100%);
	overflow: hidden;
}

.usecases::before,
.usecases::after {
	content: '';
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	filter: blur(35px);
	opacity: 0.4;
	background: radial-gradient(circle, rgba(118, 189, 255, 0.45), transparent 70%);
}

.usecases::before {
	left: -12%;
	top: -25%;
}

.usecases::after {
	right: -18%;
	bottom: -20%;
}

.usecases .container,
.usecases .section-header,
.usecases .row {
	position: relative;
	z-index: 1;
}

.usecases .section-header p {
	color: rgba(6, 12, 34, 0.65);
}

.usecase-card {
	position: relative;
	background: linear-gradient(130deg, rgba(255, 255, 255, 0.9), rgba(235, 243, 255, 0.8));
	border-radius: 26px;
	border: 1px solid rgba(92, 133, 214, 0.2);
	padding: 2.25rem;
	height: 100%;
	box-shadow: 0 20px 55px rgba(16, 45, 97, 0.12);
	backdrop-filter: blur(6px);
	overflow: hidden;
}

.usecase-card::before {
	content: '';
	position: absolute;
	inset: 1.2rem;
	border-radius: 22px;
	border: 1px solid rgba(126, 173, 255, 0.25);
	opacity: 0.7;
	pointer-events: none;
}

.usecase-card h3 {
	margin-bottom: 0.85rem;
	font-size: 1.25rem;
	color: #0d1c33;
}

.usecase-card p,
.usecase-card ul {
	color: rgba(7, 15, 34, 0.78);
}

.usecase-card ul {
	padding-left: 1.1rem;
}

.usecase-card ul li::marker {
	color: rgba(38, 139, 214, 0.7);
}

.comparison {
	background: radial-gradient(circle at top left, rgba(38, 139, 214, 0.35), transparent 55%),
		linear-gradient(135deg, #05060e 0%, #070d1a 45%, #0b1730 100%);
	color: #e8f2ff;
	position: relative;
	overflow: hidden;
}

.comparison::before {
	content: '';
	position: absolute;
	right: -15%;
	top: -35%;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(111, 182, 255, 0.35), transparent 70%);
	filter: blur(8px);
	opacity: 0.7;
	z-index: 0;
}

.comparison .container {
	position: relative;
	z-index: 1;
}

.comparison .section-header h2,
.comparison .section-header p {
	color: #f2f6ff;
}

.comparison .table-responsive {
	margin-top: 2.5rem;
	background: rgba(4, 7, 20, 0.65);
	border-radius: 28px;
	padding: 1.5rem;
	border: 1px solid rgba(126, 171, 255, 0.2);
	box-shadow: 0 40px 80px rgba(2, 6, 23, 0.45);
	backdrop-filter: blur(24px);
}

.comparison-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 18px;
	font-size: 0.95rem;
	color: #e8f3ff;
}

.comparison-table thead {
	display: table;
	width: 100%;
	table-layout: fixed;
	margin-bottom: 0.5rem;
}

.comparison-table thead tr {
	display: grid;
	grid-template-columns: 1.3fr repeat(4, 1fr) 150px;
	align-items: center;
}

.comparison-table thead th {
	border: none;
	font-size: 0.74rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(232, 243, 255, 0.6);
	padding-bottom: 0.75rem;
	text-align: center;
}

.comparison-table tbody tr {
	background: linear-gradient(130deg, rgba(7, 11, 26, 0.92), rgba(13, 20, 40, 0.9));
	border: 1px solid rgba(132, 173, 255, 0.2);
	border-radius: 20px;
	box-shadow: 0 25px 60px rgba(1, 5, 18, 0.55);
	transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
	display: grid;
	grid-template-columns: 1.3fr repeat(4, 1fr) 150px;
	align-items: center;
}

.comparison-table tbody tr.is-featured {
	border-color: rgba(110, 225, 255, 0.7);
	box-shadow: 0 30px 70px rgba(8, 70, 120, 0.45);
}

.comparison-table tbody tr:hover {
	transform: translateY(-4px);
	border-color: rgba(111, 182, 255, 0.65);
	box-shadow: 0 35px 80px rgba(10, 32, 70, 0.65);
}

.comparison-table td,
.comparison-table thead th {
	border: none;
	padding: 1.25rem 1.5rem;
	color: rgba(232, 240, 255, 0.9);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.35rem;
	text-align: center;
}

.comparison-model .model-title {
	font-size: 1.05rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.35rem;
	text-align: center;
}

.comparison-model .model-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.2rem 0.75rem;
	border-radius: 999px;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: rgba(126, 173, 255, 0.12);
	border: 1px solid rgba(126, 173, 255, 0.35);
	color: rgba(232, 243, 255, 0.85);
}

.comparison-table td[data-label='Link'] {
	width: 150px;
}

.comparison-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 1.25rem;
	border-radius: 999px;
	background: linear-gradient(120deg, #0f5c95, #27c1ff);
	border: 1px solid rgba(143, 217, 255, 0.65);
	color: #fff;
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	box-shadow: 0 12px 25px rgba(8, 40, 80, 0.45);
}

.comparison-link .link-arrow {
	font-size: 1rem;
}

.comparison-link:hover,
.comparison-link:focus-visible {
	color: #fff;
	box-shadow: 0 16px 32px rgba(12, 60, 110, 0.6);
}

/* Mobile/Tablet Comparison */
.comparison-mobile {
	display: none;
}

.comparison-desktop {
	display: block;
}

.comparison-mobile__selects {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 2rem;
}

.comparison-select-wrapper {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.comparison-select-wrapper label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(232, 243, 255, 0.7);
}

.comparison-select {
	padding: 0.85rem 2.5rem 0.85rem 1rem;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(7, 11, 26, 0.95), rgba(13, 20, 40, 0.9));
	border: 1px solid rgba(132, 173, 255, 0.3);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 200ms ease, background 200ms ease;
	appearance: none;
	background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="12" height="8" viewBox="0 0 12 8" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 1l5 5 5-5" stroke="%236ee1ff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 14px;
}

.comparison-select:hover {
	border-color: rgba(110, 225, 255, 0.5);
	background-color: rgba(13, 20, 40, 0.95);
}

.comparison-select:focus {
	outline: none;
	border-color: rgba(110, 225, 255, 0.7);
	box-shadow: 0 0 0 3px rgba(110, 225, 255, 0.15);
}

.comparison-select option {
	background: #0d1428;
	color: #fff;
	padding: 0.75rem;
}

.comparison-mobile__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.comparison-card {
	background: linear-gradient(135deg, rgba(7, 11, 26, 0.92), rgba(13, 20, 40, 0.88));
	border: 1px solid rgba(132, 173, 255, 0.25);
	border-radius: 16px;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.comparison-card__header {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(110, 225, 255, 0.2);
}

.comparison-card__header h3 {
	font-size: 1.15rem;
	margin: 0;
	color: #fff;
}

.comparison-card__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
}

.comparison-card__list > div {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.comparison-card__list dt {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(232, 243, 255, 0.5);
}

.comparison-card__list dd {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.4;
	color: rgba(232, 243, 255, 0.95);
}

.faq {
	position: relative;
	background: linear-gradient(180deg, #fbfdff 0%, #f2f6ff 55%, #ecf3ff 100%);
	overflow: hidden;
}

.faq::before,
.faq::after {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(132, 186, 255, 0.35), transparent 70%);
	filter: blur(38px);
	opacity: 0.45;
}

.faq::before {
	left: -22%;
	top: -28%;
}

.faq::after {
	right: -18%;
	bottom: -25%;
}

.faq .container,
.faq .section-header,
.faq-layout {
	position: relative;
	z-index: 1;
}

.faq-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	align-items: stretch;
}

.faq-aside {
	flex: 1 1 320px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 243, 255, 0.9));
	border-radius: 32px;
	padding: 2.5rem;
	border: 1px solid rgba(111, 182, 255, 0.35);
	box-shadow: 0 35px 90px rgba(18, 43, 90, 0.18);
	color: #0c1d36;
	position: relative;
	overflow: hidden;
}

.faq-aside::after {
	content: '';
	position: absolute;
	inset: 1.2rem;
	border-radius: 26px;
	border: 1px solid rgba(111, 182, 255, 0.3);
	opacity: 0.6;
	pointer-events: none;
}

.faq-aside__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 1rem;
	border-radius: 999px;
	background: rgba(38, 139, 214, 0.12);
	border: 1px solid rgba(38, 139, 214, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.7rem;
	color: #1d3a63;
}

.faq-aside h3 {
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	font-size: 1.75rem;
}

.faq-aside p {
	color: rgba(6, 14, 28, 0.72);
	margin-bottom: 1.5rem;
}

.faq-aside__list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-aside__list li {
	position: relative;
	padding-left: 1.6rem;
	color: rgba(6, 14, 28, 0.78);
}

.faq-aside__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.35rem;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #348dff, #42d0ff);
	box-shadow: 0 0 12px rgba(52, 141, 255, 0.5);
}

.faq-aside__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.75rem;
	border-radius: 999px;
	background: linear-gradient(120deg, #1d6ddf, #36d2ff);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 18px 45px rgba(19, 51, 109, 0.35);
}

.faq-grid {
	flex: 2 1 520px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.faq details {
	position: relative;
	border-radius: 26px;
	padding: 1.5rem 1.75rem 1.75rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 245, 255, 0.92));
	border: 1px solid rgba(126, 173, 255, 0.25);
	box-shadow: 0 25px 65px rgba(19, 36, 70, 0.12);
	transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
	overflow: hidden;
}

.faq details::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	border-radius: 26px 0 0 26px;
	background: linear-gradient(180deg, #2f62ff, #45d6ff);
	opacity: 0.4;
	transition: opacity 200ms ease;
	transform-origin: top;
	transform: scaleY(1);
}

.faq details[open] {
	border-color: rgba(38, 139, 214, 0.45);
	box-shadow: 0 30px 75px rgba(21, 42, 88, 0.18);
	transform: translateY(-3px);
}

.faq details[open]::after {
	opacity: 1;
	animation: faqBarGlow 640ms cubic-bezier(0.35, 0.01, 0.25, 1);
}

.faq summary {
	list-style: none;
	cursor: pointer;
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	margin-top: 0;
	will-change: grid-template-rows;
	transition: grid-template-rows 360ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq details[open] .faq-answer {
	margin-top: 1rem;
	grid-template-rows: 1fr;
}

.faq-answer > * {
	min-height: 0;
	margin: 0;
	opacity: 0;
	transform: translateY(-8px);
	filter: blur(2px);
	transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.faq details[open] .faq-answer > * {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
	transition-delay: 90ms;
}

.faq-summary {
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	padding-right: 2.25rem;
}

.faq-summary__index {
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: #1e3b6b;
	padding: 0.35rem 0.75rem;
	border-radius: 12px;
	background: rgba(38, 139, 214, 0.12);
	border: 1px solid rgba(38, 139, 214, 0.3);
}

.faq-summary__text {
	font-weight: 600;
	font-size: 1.05rem;
	color: #0c1d36;
}

.faq-summary::after {
	content: '';
	position: absolute;
	right: 0;
	width: 18px;
	height: 18px;
	border-radius: 4px;
	background: linear-gradient(135deg, #4f8efc, #30c0ff);
	mask: url('data:image/svg+xml,%3Csvg width="12" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M2 4.5l4 4 4-4" stroke="white" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" fill="none"/%3E%3C/svg%3E')
		center/12px 12px no-repeat;
	background-repeat: no-repeat;
	transition: transform 200ms ease;
}

.faq details[open] .faq-summary::after {
	transform: rotate(180deg);
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq details p {
	margin: 0;
	color: rgba(6, 14, 28, 0.78);
}

.contact {
	position: relative;
	background: radial-gradient(circle at top, rgba(38, 139, 214, 0.35), transparent 55%), rgba(3, 6, 16, 1);
	overflow: hidden;
}

.contact::before,
.contact::after {
	content: '';
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(75, 151, 255, 0.25), transparent 70%);
	filter: blur(8px);
	z-index: 0;
}

.contact::before {
	left: -8%;
	top: -20%;
}

.contact::after {
	right: -10%;
	bottom: -25%;
}

.contact .container {
	position: relative;
	z-index: 1;
}

.contact-card {
	position: relative;
	background: linear-gradient(145deg, rgba(5, 11, 30, 0.92), rgba(10, 20, 48, 0.95));
	border-radius: 32px;
	padding: 3.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	border: 1px solid rgba(100, 167, 255, 0.2);
	box-shadow: 0 40px 100px rgba(2, 6, 18, 0.65);
	backdrop-filter: blur(24px);
	overflow: hidden;
}

.contact-card::before,
.contact-card::after {
	content: '';
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	border: 1px solid rgba(143, 217, 255, 0.2);
	opacity: 0.5;
	z-index: 0;
}

.contact-card::after {
	border: none;
	background: radial-gradient(circle at 20% 20%, rgba(120, 204, 255, 0.18), transparent 50%),
		linear-gradient(120deg, rgba(9, 17, 36, 0.4), transparent 65%);
}

.contact-info,
.contact-form {
	position: relative;
	z-index: 1;
}

.contact-info p {
	color: rgba(235, 241, 255, 0.7);
}

.contact-info h2 {
	color: #fff;
}

.contact-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-list__item {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1rem 1.25rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(126, 173, 255, 0.2);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 18px 40px rgba(3, 8, 24, 0.55);
}

.contact-list__icon {
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: radial-gradient(circle at 30% 30%, rgba(104, 195, 255, 0.5), rgba(41, 86, 175, 0.7));
	box-shadow: 0 12px 30px rgba(4, 12, 32, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	color: #c2ecff;
}

.contact-list__icon svg {
	width: 28px;
	height: 28px;
}

.contact-list__body {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.contact-list__label {
	font-size: 0.8rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(232, 240, 255, 0.7);
}

.contact-list__value,
.contact-list__value:link,
.contact-list__value:visited {
	color: #fff;
	font-weight: 700;
	font-size: 1.15rem;
	text-decoration: none;
	letter-spacing: 0.02em;
}

.contact-list__value:hover,
.contact-list__value:focus-visible {
	color: #9ee5ff;
}

.contact-status {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background: rgba(126, 173, 255, 0.08);
	border: 1px solid rgba(126, 173, 255, 0.3);
	margin-bottom: 1.5rem;
}

.contact-status__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #5fe0ff;
	box-shadow: 0 0 14px rgba(95, 224, 255, 0.8);
}

.contact-status__label {
	margin: 0;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(237, 243, 255, 0.7);
}

.contact-status__pill {
	margin-left: auto;
	padding: 0.25rem 0.9rem;
	border-radius: 999px;
	background: rgba(95, 224, 255, 0.1);
	border: 1px solid rgba(95, 224, 255, 0.35);
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	color: #9ef1ff;
}

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.contact-action {
	flex: 1 1 180px;
	text-align: center;
	padding: 0.9rem 1.5rem;
	border-radius: 999px;
	border: 1px solid rgba(95, 224, 255, 0.5);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.04em;
	background: linear-gradient(120deg, rgba(9, 23, 56, 0.9), rgba(47, 151, 255, 0.65));
	box-shadow: 0 18px 40px rgba(4, 12, 32, 0.6);
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-action:hover,
.contact-action:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 25px 55px rgba(6, 18, 42, 0.7);
}

.contact-action--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.8);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.contact-highlights {
	margin-top: 2.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
}

.contact-highlights article {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 1rem 1.25rem;
	backdrop-filter: blur(6px);
}

.contact-highlights p {
	margin: 0;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(232, 240, 255, 0.55);
}

.contact-highlights strong {
	display: block;
	margin-top: 0.35rem;
	font-size: 1.1rem;
	color: #fff;
}

.contact-highlights small {
	display: block;
	margin-top: 0.1rem;
	color: rgba(232, 240, 255, 0.65);
}

.contact-form {
	background: rgba(3, 6, 20, 0.65);
	color: #fff;
	border-radius: 24px;
	padding: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(16px);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-form::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(circle at 75% 15%, rgba(95, 224, 255, 0.18), transparent 45%);
	opacity: 0.6;
	pointer-events: none;
}

.contact-form .form-label {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.contact-form .form-control {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	border-radius: 14px;
	padding: 0.85rem 1rem;
	transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-control:focus {
	border-color: rgba(111, 182, 255, 0.9);
	box-shadow: 0 0 20px rgba(111, 182, 255, 0.35);
	background: rgba(255, 255, 255, 0.12);
}

.contact-form__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem 1.5rem;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.form-field--full {
	width: 100%;
}

.contact-form__foot {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.contact-form .btn-accent {
	align-self: flex-start;
	padding: 0.9rem 2.5rem;
	background: linear-gradient(120deg, #0f5c95, #27c1ff);
	border: 1px solid rgba(143, 217, 255, 0.6);
	box-shadow: 0 20px 40px rgba(4, 12, 28, 0.7);
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-form .btn-accent:hover,
.contact-form .btn-accent:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 28px 60px rgba(5, 16, 36, 0.8);
}

.contact-hint {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

.contact-hint a {
	color: #9edbff;
	text-decoration: underline;
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.final-cta {
	background: radial-gradient(circle at top, rgba(38, 139, 214, 0.2), transparent 65%);
}

.cta-card {
	background: #070304;
	color: #fff;
	border-radius: 28px;
	padding: 3rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer {
	background: radial-gradient(circle at top, rgba(95, 224, 255, 0.22), transparent 60%), #04060f;
	color: rgba(255, 255, 255, 0.75);
	padding: 4rem 0 2.5rem;
	margin-top: auto;
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::after {
	content: '';
	position: absolute;
	top: -120px;
	left: 50%;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(52, 141, 255, 0.25), transparent 70%);
	filter: blur(12px);
	transform: translateX(-50%);
	opacity: 0.45;
	z-index: 0;
}

.site-footer .container {
	position: relative;
	z-index: 1;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: #9ee5ff;
}

.footer-shell {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.footer-top {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.footer-brand {
	max-width: 420px;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.footer-tagline {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.65;
}

.footer-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.footer-badges span {
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	border: 1px solid rgba(95, 224, 255, 0.45);
	background: rgba(95, 224, 255, 0.08);
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-social {
	display: flex;
	gap: 0.75rem;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #d4e7ff;
}

.footer-social svg {
	width: 22px;
	height: 22px;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 2rem;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.footer-heading {
	margin: 0;
	font-size: 0.85rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.footer-list li {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: space-between;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 1.5rem;
}

.footer-bottom__links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

@media (min-width: 992px) {
	.footer-top {
		flex-direction: row;
		align-items: flex-start;
		gap: 3rem;
	}

	.footer-brand {
		flex: 0 0 360px;
	}

	.footer-columns {
		flex: 1;
		grid-template-columns: repeat(3, minmax(180px, 1fr));
	}
}

@keyframes faqBarGlow {
	0% {
		opacity: 0.3;
		transform: scaleY(0.4);
	}
	60% {
		opacity: 1;
		transform: scaleY(1.05);
	}
	100% {
		opacity: 1;
		transform: scaleY(1);
	}
}

@keyframes brandGlow {
	0% {
		transform: scale(0.85) rotate(0deg);
		opacity: 0.25;
	}
	45% {
		transform: scale(1.05) rotate(160deg);
		opacity: 0.5;
	}
	100% {
		transform: scale(0.85) rotate(360deg);
		opacity: 0.25;
	}
}

@keyframes brandFlux {
	0% {
		transform: rotate(0deg) scale(0.9);
		opacity: 0.35;
	}
	50% {
		opacity: 0.65;
	}
	100% {
		transform: rotate(360deg) scale(1.05);
		opacity: 0.4;
	}
}

@keyframes brandPulse {
	0% {
		opacity: 0.2;
		transform: scaleX(0.9);
	}
	50% {
		opacity: 0.9;
		transform: scaleX(1);
	}
	100% {
		opacity: 0.2;
		transform: scaleX(0.95);
	}
}

@keyframes brandScan {
	0% {
		opacity: 0;
		transform: translateY(70%);
	}
	40% {
		opacity: 0.9;
	}
	60% {
		transform: translateY(-30%);
	}
	100% {
		opacity: 0;
		transform: translateY(-70%);
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	/* Tablet breakpoint */
	.comparison-mobile {
		display: block;
	}

	.comparison-desktop {
		display: none;
	}

	.comparison-mobile__cards {
		grid-template-columns: 1fr 1fr;
		gap: 1.25rem;
	}

	.comparison-card {
		padding: 1.5rem;
	}

	.hero {
		padding: 3.5rem 0 2.5rem;
	}

	.hero h1 {
		font-size: 2.75rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.hero-meta {
		gap: 1.5rem;
	}

	.hero-meta > div {
		padding: 0.85rem 1rem;
		min-width: 120px;
	}

	.hero-meta strong {
		font-size: 1.75rem;
	}

	.hero-card {
		padding: 1.75rem;
		min-height: 320px;
	}

	.hero-card__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.section {
		padding: 4rem 0;
	}

	.product-card {
		padding: 1.75rem;
	}

	.feature-card {
		padding: 1.75rem;
	}

	.usecase-card {
		padding: 2rem;
	}

	.faq-aside {
		padding: 2.25rem;
		margin-bottom: 2rem;
	}

	.faq-layout {
		flex-direction: column;
	}

	.faq-grid {
		grid-template-columns: 1fr;
	}

	.comparison-table {
		font-size: 0.9rem;
	}

	.footer-columns {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}
}

@media (max-width: 767px) {
	.comparison-mobile {
		display: block;
	}

	.comparison-desktop {
		display: none;
	}

	.comparison-mobile__selects {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 1.5rem;
	}

	.comparison-select {
		padding: 0.75rem 2.5rem 0.75rem 0.9rem;
		font-size: 0.9rem;
	}

	.comparison-mobile__cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.comparison-card {
		padding: 1.25rem;
	}

	.comparison-card__header h3 {
		font-size: 1.05rem;
	}

	.comparison-card__list dd {
		font-size: 0.85rem;
	}

	.hero {
		padding: 2.5rem 0 2rem;
	}

	.hero h1 {
		font-size: 2rem;
		margin-top: 1rem;
	}

	.hero p {
		font-size: 0.95rem;
		margin-bottom: 0.75rem;
	}

	.hero-actions {
		flex-direction: column;
		gap: 0.85rem;
		margin-top: 1.25rem;
	}

	.hero-actions .btn {
		width: 100%;
		text-align: center;
		padding: 0.85rem 1.5rem;
	}

	.hero-meta {
		flex-direction: column;
		gap: 0.85rem;
		margin-top: 1.5rem;
	}

	.hero-meta > div {
		padding: 0.85rem 1.1rem;
		min-width: 0;
		width: 100%;
	}

	.hero-meta strong {
		font-size: 1.65rem;
	}

	.hero-meta span {
		font-size: 0.85rem;
	}

	.hero-card {
		padding: 1.5rem;
		min-height: auto;
		margin-top: 1.5rem;
	}

	.hero-card__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.65rem;
		font-size: 0.85rem;
	}

	.hero-card__header .status {
		padding: 0.2rem 0.75rem;
		font-size: 0.7rem;
	}

	.hero-list {
		gap: 0.65rem;
		font-size: 0.9rem;
	}

	.hero-list li {
		padding-left: 1.35rem;
	}

	.hero-list li::before {
		width: 0.4rem;
		height: 0.4rem;
		top: 0.4rem;
	}

	.pill {
		padding: 0.3rem 0.85rem;
		font-size: 0.85rem;
	}

	.section {
		padding: 3.5rem 0;
	}

	.section-header {
		margin-bottom: 2rem;
	}

	.section-header h2 {
		font-size: 1.85rem;
	}

	.hero-card__content {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.brand-mark {
		gap: 0.85rem;
		padding: 0.85rem 1rem;
	}

	.brand-mark__icon {
		width: 64px;
		height: 40px;
	}

	.brand-mark__name {
		font-size: 1rem;
	}

	.brand-mark__tagline {
		font-size: 0.65rem;
	}

	.product-card {
		padding: 1.5rem;
	}

	.product-card h3 {
		font-size: 1.35rem;
	}

	.product-card p {
		font-size: 0.9rem;
	}

	.product-card ul {
		font-size: 0.85rem;
	}

	.product-media {
		padding: 0.85rem;
	}

	.feature-card {
		padding: 1.5rem;
	}

	.feature-card h3 {
		font-size: 1.25rem;
	}

	.usecase-card {
		padding: 1.75rem;
	}

	.usecase-card h3 {
		font-size: 1.15rem;
	}

	.price {
		font-size: 1.15rem;
	}

	.tag {
		font-size: 0.75rem;
		padding: 0.2rem 0.65rem;
	}

	.faq-aside {
		padding: 2.25rem 2rem 2.5rem;
		margin-bottom: 2rem;
		overflow: visible;
	}

	.faq-aside h3 {
		font-size: 1.5rem;
		margin-top: 1rem;
	}

	.faq-aside__cta {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.faq-aside__list {
		display: flex;
		flex-direction: column;
		gap: 0.85rem;
		margin: 1.5rem 0 2rem;
		list-style: none;
		padding: 0;
	}

	.faq-aside__list li {
		padding-left: 1.6rem;
		line-height: 1.5;
		position: relative;
		color: rgba(6, 14, 28, 0.78);
	}

	.faq-aside__list li::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0.5rem;
		width: 0.6rem;
		height: 0.6rem;
		border-radius: 50%;
		background: linear-gradient(135deg, #348dff, #42d0ff);
		box-shadow: 0 0 12px rgba(52, 141, 255, 0.5);
		flex-shrink: 0;
	}

	.faq-layout {
		flex-direction: column;
	}

	.faq-grid {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.faq-grid details {
		background: rgba(255, 255, 255, 0.92);
		border: 1px solid rgba(12, 60, 110, 0.12);
		border-radius: 20px;
		padding: 0;
		overflow: hidden;
		box-shadow: 0 20px 35px rgba(8, 27, 69, 0.12);
	}

	.faq-grid details::after {
		display: none;
	}

	.faq-grid details[open] {
		border-color: rgba(38, 139, 214, 0.28);
		box-shadow: 0 25px 45px rgba(14, 54, 120, 0.18);
	}

	.faq-summary {
		padding: 1.35rem 3rem 1.1rem 1.25rem;
		font-size: 0.95rem;
		display: flex;
		flex-direction: column;
		gap: 0.65rem;
		position: relative;
		text-align: center;
	}

	.faq-summary__index {
		font-size: 0.75rem;
		min-width: 40px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0.25rem 0.75rem;
		border-radius: 12px;
		align-self: center;
	}

	.faq-summary__text {
		flex: none;
		font-size: 1.05rem;
		font-weight: 600;
		line-height: 1.45;
		color: #08152c;
		text-align: center;
	}

	.faq-summary::after {
		right: 1.25rem;
		top: 1.5rem;
		transform: none;
	}

	.faq details[open] .faq-summary::after {
		transform: rotate(180deg);
	}

	.faq-answer {
		padding: 0 1.25rem 1.35rem;
		font-size: 0.92rem;
		line-height: 1.6;
		color: rgba(4, 8, 26, 0.78);
	}

	.footer-columns {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-column h4 {
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	.footer-column ul {
		font-size: 0.9rem;
	}

	.footer-column ul li {
		margin-bottom: 0.65rem;
	}

	.footer-column a {
		padding: 0.4rem 0;
		display: inline-block;
	}

	.footer-tagline {
		font-size: 0.9rem;
		margin-top: 1rem;
	}

	.footer-social {
		gap: 0.75rem;
		margin-top: 1.25rem;
	}

	.footer-legal {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
		font-size: 0.85rem;
	}

	.btn {
		min-height: 44px;
	}

	.btn-lg {
		padding: 0.9rem 1.75rem;
	}

	.hero-meta {
		flex-direction: column;
		gap: 1rem;
	}

	.cta-card {
		padding: 2rem;
	}

	.product-meta {
		flex-direction: column;
		align-items: flex-start;
	}

	.product-card__footer {
		gap: 0.75rem;
	}

	.cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.contact-card {
		display: flex;
		flex-direction: column;
		gap: 2.5rem;
		padding: 2rem 1.5rem;
	}

	.contact-info h2 {
		font-size: 1.75rem;
		margin-bottom: 1rem;
	}

	.contact-status {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		padding: 1.25rem;
		border-radius: 12px;
	}

	.contact-status__pill {
		margin-left: 0;
		margin-top: 0.25rem;
	}

	.contact-list {
		display: flex;
		flex-direction: column;
		gap: 1.25rem;
		margin: 1.5rem 0;
	}

	.contact-list__item {
		display: flex;
		gap: 1rem;
		align-items: flex-start;
	}

	.contact-actions {
		flex-direction: row;
		gap: 0.75rem;
		margin: 1.5rem 0;
		flex-wrap: wrap;
	}

	.contact-action {
		flex: 1 1 calc(50% - 0.5rem);
		text-align: center;
		padding: 0.75rem 1rem;
		font-size: 0.9rem;
		min-width: 140px;
	}

	.contact-highlights {
		display: none;
	}

	.contact-form__grid {
		display: flex;
		flex-direction: column;
		gap: 1.25rem;
	}

	.contact-form__foot {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		margin-top: 1.5rem;
	}

	.contact-form .btn-accent {
		width: 100%;
		text-align: center;
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}

	.contact-hint {
		font-size: 0.8rem;
		line-height: 1.5;
		text-align: center;
	}
}

@keyframes brandOrbit {
	0% {
		transform: scale(0.85) rotate(0deg);
		opacity: 0.35;
	}
	50% {
		transform: scale(1.05) rotate(160deg);
		opacity: 0.6;
	}
	100% {
		transform: scale(0.85) rotate(360deg);
		opacity: 0.35;
	}
}
