/* ===== DESIGN TOKENS ===== */
:root {
	--text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
	--text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
	--text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
	--text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
	--text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
	--text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
	--text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;
	--space-24: 6rem;
	--space-32: 8rem;

	--radius-sm: 0.375rem;
	--radius-md: 0.625rem;
	--radius-lg: 1rem;
	--radius-xl: 1.5rem;
	--radius-2xl: 2rem;
	--radius-full: 9999px;

	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
	--transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

	--content-wide: 1200px;
	--font-display: 'Exo2';
	--font-body: 'Exo2';
}

/* ===== LIGHT THEME ===== */
:root,
[data-theme="light"] {
	--color-bg: #f0f4fa;
	--color-surface: #ffffff;
	--color-surface-2: #f7f9fd;
	--color-surface-alt: #e8effa;
	--color-divider: #dae3f0;
	--color-border: #c5d3e8;
	--color-border-subtle: rgba(26, 95, 168, 0.12);

	--color-text: #0b1830;
	--color-text-muted: #4f6480;
	--color-text-faint: #94a8bf;
	--color-text-inverse: #ffffff;

	--color-primary: #1a5fa8;
	--color-primary-hover: #144a88;
	--color-primary-active: #0e3570;
	--color-primary-light: #dbeafe;
	--color-primary-subtle: rgba(26, 95, 168, 0.06);

	--color-accent: #00b8d9;
	--color-accent-hover: #0099b8;
	--color-accent-light: #cff5fe;
	--color-accent-subtle: rgba(0, 184, 217, 0.08);

	--color-section-alt: #edf3fc;

	--shadow-xs: 0 1px 2px rgba(14, 35, 80, 0.06);
	--shadow-sm: 0 2px 8px rgba(14, 35, 80, 0.08);
	--shadow-md: 0 8px 24px rgba(14, 35, 80, 0.10);
	--shadow-lg: 0 20px 60px rgba(14, 35, 80, 0.14);
	--shadow-glow: 0 0 40px rgba(26, 95, 168, 0.18);

	--glass-bg: rgba(255, 255, 255, 0.72);
	--glass-border: rgba(255, 255, 255, 0.8);
}

/* ===== DARK THEME ===== */
[data-theme="dark"] {
	--color-bg: #080e1c;
	--color-surface: #0d1628;
	--color-surface-2: #111e35;
	--color-surface-alt: #0f1a30;
	--color-divider: #1b2a44;
	--color-border: #233655;
	--color-border-subtle: rgba(91, 159, 214, 0.15);

	--color-text: #d8e8f7;
	--color-text-muted: #6a90b4;
	--color-text-faint: #3d5c7a;
	--color-text-inverse: #0b1830;

	--color-primary: #5b9fd6;
	--color-primary-hover: #7ab8e8;
	--color-primary-active: #9acef5;
	--color-primary-light: #162a44;
	--color-primary-subtle: rgba(91, 159, 214, 0.08);

	--color-accent: #22d3ee;
	--color-accent-hover: #67e8f9;
	--color-accent-light: #0a2a36;
	--color-accent-subtle: rgba(34, 211, 238, 0.08);

	--color-section-alt: #0a1424;

	--shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
	--shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
	--shadow-glow: 0 0 60px rgba(91, 159, 214, 0.2);

	--glass-bg: rgba(13, 22, 40, 0.75);
	--glass-border: rgba(91, 159, 214, 0.15);
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme]) {
		--color-bg: #080e1c;
		--color-surface: #0d1628;
		--color-surface-2: #111e35;
		--color-surface-alt: #0f1a30;
		--color-divider: #1b2a44;
		--color-border: #233655;
		--color-border-subtle: rgba(91, 159, 214, 0.15);
		--color-text: #d8e8f7;
		--color-text-muted: #6a90b4;
		--color-text-faint: #3d5c7a;
		--color-text-inverse: #0b1830;
		--color-primary: #5b9fd6;
		--color-primary-hover: #7ab8e8;
		--color-primary-active: #9acef5;
		--color-primary-light: #162a44;
		--color-primary-subtle: rgba(91, 159, 214, 0.08);
		--color-accent: #22d3ee;
		--color-accent-hover: #67e8f9;
		--color-accent-light: #0a2a36;
		--color-accent-subtle: rgba(34, 211, 238, 0.08);
		--color-section-alt: #0a1424;
		--shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
		--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
		--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
		--shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
		--shadow-glow: 0 0 60px rgba(91, 159, 214, 0.2);
		--glass-bg: rgba(13, 22, 40, 0.75);
		--glass-border: rgba(91, 159, 214, 0.15);
	}
}

/* ===== BASE RESET ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	min-height: 100dvh;
	line-height: 1.65;
	font-family: var(--font-body);
	font-size: var(--text-base);
	color: var(--color-text);
	background: var(--color-bg);
	overflow-x: hidden;
	transition: background 0.4s, color 0.4s;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

ul[role="list"],
ol[role="list"] {
	list-style: none;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-wrap: balance;
	line-height: 1.15;
}

p,
li {
	text-wrap: pretty;
}

button {
	cursor: pointer;
	background: none;
	border: none;
}

::selection {
	background: color-mix(in srgb, var(--color-primary) 18%, transparent);
}

:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 3px;
	border-radius: var(--radius-sm);
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-primary-hover);
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ===== LAYOUT ===== */
.container {
	width: 100%;
	max-width: var(--content-wide);
	margin-inline: auto;
	padding-inline: clamp(var(--space-4), 4vw, var(--space-12));
}

.section {
	padding-block: clamp(40px, 8vw, 40px);
}

.section--alt {
	background: var(--color-section-alt);
}

/* ===== MESH GRADIENT BACKGROUND ===== */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(ellipse 80% 60% at 10% 20%, color-mix(in srgb, var(--color-primary) 6%, transparent) 0%, transparent 60%),
		radial-gradient(ellipse 60% 80% at 90% 80%, color-mix(in srgb, var(--color-accent) 5%, transparent) 0%, transparent 60%),
		radial-gradient(ellipse 50% 50% at 50% 50%, color-mix(in srgb, var(--color-primary) 3%, transparent) 0%, transparent 70%);
	pointer-events: none;
}

/* ===== SECTION HEADER ===== */
.section-header {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
	margin-bottom: clamp(var(--space-8), 5vw, var(--space-16));
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-accent);
	background: var(--color-accent-subtle);
	padding: var(--space-2) var(--space-4);
	border-radius: var(--radius-full);
	margin-bottom: var(--space-4);
	border: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent);
}

.section-title {
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	color: var(--color-text);
	margin-bottom: var(--space-4);
}

.section-desc {
	font-size: var(--text-base);
	color: var(--color-text-muted);
	line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	font-size: var(--text-sm);
	font-weight: 300;
	padding: var(--space-3) var(--space-6);
	border-radius: var(--radius-md);
	text-decoration: none;
	transition: all var(--transition);
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.btn--primary {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
	color: white;
	border-color: var(--color-primary);
}

.btn--primary::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
	opacity: 0;
	transition: opacity var(--transition);
}

.btn--primary:hover {
	background: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	color: white;
	box-shadow: var(--shadow-md), 0 0 20px color-mix(in srgb, var(--color-primary) 30%, transparent);
}

.btn--primary:hover::before {
	opacity: 1;
}

.btn--primary:active {
	transform: translateY(0);
	box-shadow: var(--shadow-sm);
}

.btn--outline {
	background: transparent;
	color: var(--color-primary);
	border-color: var(--color-primary);
	backdrop-filter: blur(4px);
}

.btn--outline:hover {
	background: var(--color-primary);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn--ghost {
	background: var(--color-primary-subtle);
	color: var(--color-primary);
	border-color: var(--color-border-subtle);
}

.btn--ghost:hover {
	background: var(--color-primary-light);
	transform: translateY(-1px);
}

.btn--lg {
	font-size: var(--text-base);
	padding: var(--space-4) var(--space-8);
	border-radius: var(--radius-lg);
}

.btn--full {
	width: 100%;
	justify-content: center;
}

/* ===== HEADER ===== */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--glass-bg);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--glass-border);
	transition: box-shadow var(--transition), background 0.4s;
}

.header--scrolled {
	box-shadow: var(--shadow-md);
}

.header__inner {
	display: flex;
	align-items: center;
	gap: var(--space-6);
	height: 72px;
}

/* Logo */
.logo {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	text-decoration: none;
	flex-shrink: 0;
}

.logo--sm .logo__name {
	font-size: var(--text-base);
}

.logo__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.logo__name {
	font-family: var(--font-body);
	font-size: clamp(1.2rem, 1rem + 0.5vw, 1.5rem);
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1;
	letter-spacing: -0.02em;
}

.logo__tagline {
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	line-height: 1.2;
	max-width: 180px;
}

/* Nav */
.nav {
	flex: 1;
}

.nav__list {
	display: flex;
	align-items: center;
	gap: var(--space-1);
	list-style: none;
}

.nav__link {
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text-muted);
	margin: 0px 14px;
	border-radius: var(--radius-sm);
	transition: color var(--transition), background var(--transition);
	text-decoration: none;
	position: relative;
}

.nav__link::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: var(--space-3);
	right: var(--space-3);
	height: 2px;
	background: var(--color-primary);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--transition);
}

.nav__link:hover {
	color: var(--color-primary);
}

.nav__link:hover::after {
	transform: scaleX(1);
}

/* Header actions */
.header__actions {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	margin-left: auto;
}

.header__phone {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-text);
	text-decoration: none;
	transition: color var(--transition);
}

.header__phone:hover {
	color: var(--color-primary);
}

.theme-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--radius-md);
	color: var(--color-text-muted);
	transition: background var(--transition), color var(--transition), transform var(--transition);
	flex-shrink: 0;
}

.theme-toggle:hover {
	background: var(--color-surface-2);
	color: var(--color-text);
	transform: rotate(15deg);
}

.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
	padding: var(--space-2);
	transition: background var(--transition);
}

.burger:hover {
	background: var(--color-surface-2);
}

.burger span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--color-text);
	border-radius: 2px;
	transition: all 0.3s var(--ease-out);
}

.burger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.burger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
	max-height: 0;
	overflow: hidden;
	border-top: 1px solid transparent;
	background: var(--glass-bg);
	transition: max-height 0.4s var(--ease-out), border-color 0.3s;
}

.mobile-nav.open {
	max-height: 400px;
	border-top-color: var(--color-divider);
}

.mobile-nav ul {
	list-style: none;
	padding: var(--space-3) var(--space-4);
}

.mobile-nav li {
	border-bottom: 1px solid var(--color-divider);
}

.mobile-nav li:last-child {
	border-bottom: none;
}

.mobile-nav a {
	display: block;
	padding: var(--space-3) var(--space-2);
	font-size: var(--text-base);
	font-weight: 500;
	color: var(--color-text);
	text-decoration: none;
	transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav a:hover {
	color: var(--color-primary);
	padding-left: var(--space-4);
}

/* ===== HERO ===== */
.hero {
	position: relative;
	overflow: hidden;
	padding: 40px 0px;
	min-height: 85vh;
	display: flex;
	align-items: center;
}

/* Hero mesh background */
.hero__mesh {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.hero__mesh-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: mesh-drift 12s ease-in-out infinite alternate;
}

.hero__mesh-blob--1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, color-mix(in srgb, var(--color-primary) 18%, transparent) 0%, transparent 70%);
	top: -200px;
	right: -100px;
	animation-duration: 14s;
}

.hero__mesh-blob--2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, color-mix(in srgb, var(--color-accent) 14%, transparent) 0%, transparent 70%);
	bottom: -100px;
	left: 10%;
	animation-duration: 10s;
	animation-direction: alternate-reverse;
}

.hero__mesh-blob--3 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, color-mix(in srgb, var(--color-primary) 10%, transparent) 0%, transparent 70%);
	top: 30%;
	left: 40%;
	animation-duration: 16s;
}

@keyframes mesh-drift {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(40px, 30px) scale(1.1);
	}
}

/* Hero grid pattern */
.hero__grid-pattern {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.035;
}

[data-theme="dark"] .hero__grid-pattern {
	opacity: 0.06;
}

.hero__content {
	position: relative;
	z-index: 2;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: var(--space-6);
}

.hero__eyebrow-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-accent);
	animation: dot-blink 2s ease-in-out infinite;
	box-shadow: 0 0 8px var(--color-accent);
}

@keyframes dot-blink {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.4;
		transform: scale(0.8);
	}
}

.hero__title {
	font-family: var(--font-display);
	font-size: var(--text-3xl);
	color: var(--color-text);
	line-height: 1;
	margin-bottom: var(--space-6);
	letter-spacing: -0.02em;
}

.hero__title em {
	font-style: normal;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero__desc {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	line-height: 1.2;
	max-width: 560px;
	margin-bottom: var(--space-8);
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-bottom: var(--space-12);
}

/* Stats strip */
.hero__stats {
	display: inline-flex;
	align-items: stretch;
	gap: 0;
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-xl);
	padding: var(--space-5) var(--space-6);
	box-shadow: var(--shadow-sm);
	max-width: 100%;
	width: auto;
}

.stat {
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
	padding-inline: var(--space-6);
}

.stat:first-child {
	padding-left: 0;
}

.stat:last-child {
	padding-right: 0;
}

.stat__num {
	font-family: var(--font-display);
	font-size: var(--text-xl);
	color: var(--color-primary);
	line-height: 1;
}

.stat__label {
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	white-space: nowrap;
}

.stat__divider {
	width: 1px;
	background: var(--color-divider);
	align-self: stretch;
	flex-shrink: 0;
}

/* Hero visual */
.hero__visual {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: clamp(300px, 40vw, 560px);
	height: clamp(300px, 40vw, 560px);
	pointer-events: none;
	z-index: 1;
}

.hero__visual-inner {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Orbiting rings */
.orbit-ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
}

.orbit-ring--1 {
	inset: 0;
	animation: orbit-rotate 20s linear infinite;
}

.orbit-ring--2 {
	inset: 12%;
	animation: orbit-rotate 15s linear infinite reverse;
	border-style: dashed;
}

.orbit-ring--3 {
	inset: 28%;
	animation: orbit-rotate 25s linear infinite;
	border-color: color-mix(in srgb, var(--color-accent) 20%, transparent);
}

@keyframes orbit-rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Orbit dots */
.orbit-dot {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-primary);
	box-shadow: 0 0 12px var(--color-primary);
}

.orbit-ring--1 .orbit-dot {
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
}

.orbit-ring--2 .orbit-dot {
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-accent);
	box-shadow: 0 0 12px var(--color-accent);
	width: 8px;
	height: 8px;
}

.hero__center-emblem {
	position: relative;
	width: 40%;
	height: 40%;
	animation: emblem-float 5s ease-in-out infinite;
}

@keyframes emblem-float {

	0%,
	100% {
		transform: translateY(0) scale(1);
	}

	50% {
		transform: translateY(-10px) scale(1.02);
	}
}

.cross-glow {
	filter: drop-shadow(0 8px 32px color-mix(in srgb, var(--color-primary) 40%, transparent));
}

/* ===== MARQUEE ===== */
.marquee-strip {
	overflow: hidden;
	border-block: 1px solid var(--color-divider);
	background: var(--color-surface);
	padding-block: var(--space-3);
}

.marquee-track {
	display: flex;
	gap: var(--space-12);
	width: max-content;
	animation: marquee-scroll 30s linear infinite;
}

.marquee-strip:hover .marquee-track {
	animation-play-state: paused;
}

@keyframes marquee-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.marquee-item {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-text-muted);
	white-space: nowrap;
	flex-shrink: 0;
}

.marquee-item svg {
	color: var(--color-accent);
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* ===== CATALOG ===== */
.catalog {
	padding-block: clamp(40px, 8vw, 40px);
}

.catalog__grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: var(--space-5);
}

/* Bento grid layout */
.cat-card {
	grid-column: span 4;
}

.cat-card:nth-child(1) {
	grid-column: span 6;
}

.cat-card:nth-child(2) {
	grid-column: span 6;
}

/* Card base */
.cat-card {
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-2xl);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
	position: relative;
	cursor: default;
}

/* Gradient shimmer on hover */
.cat-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--color-primary) 8%, transparent) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.4s;
	pointer-events: none;
	z-index: 0;
	border-radius: inherit;
}

.cat-card:hover::before {
	opacity: 1;
}

.cat-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg), var(--shadow-glow);
	border-color: color-mix(in srgb, var(--color-primary) 35%, transparent);
}

/* Top illustration area */
.cat-card__top {
	position: relative;
	padding: var(--space-8);
	background: linear-gradient(145deg, var(--color-surface-2) 0%, var(--color-bg) 100%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	z-index: 1;
}

.cat-card__top::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--color-divider);
}

/* Large cards get taller illustration */
.cat-card:nth-child(1) .cat-card__top,
.cat-card:nth-child(2) .cat-card__top {
	padding: var(--space-10);
}

/* Icon container */
.cat-card__icon-wrap {
	width: 72px;
	height: 72px;
	border-radius: var(--radius-xl);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: var(--shadow-sm);
}

.cat-card__icon-wrap--blue {
	background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.cat-card__icon-wrap--teal {
	background: linear-gradient(135deg, #cffafe, #a5f3fc);
}

.cat-card__icon-wrap--green {
	background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.cat-card__icon-wrap--purple {
	background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.cat-card__icon-wrap--sky {
	background: linear-gradient(135deg, #e0f2fe, #bae6fd);
}

[data-theme="dark"] .cat-card__icon-wrap--blue {
	background: linear-gradient(135deg, #1e3a5f, #1a3050);
}

[data-theme="dark"] .cat-card__icon-wrap--teal {
	background: linear-gradient(135deg, #0a2e35, #082028);
}

[data-theme="dark"] .cat-card__icon-wrap--green {
	background: linear-gradient(135deg, #0a2e1a, #082014);
}

[data-theme="dark"] .cat-card__icon-wrap--purple {
	background: linear-gradient(135deg, #1e1040, #160b30);
}

[data-theme="dark"] .cat-card__icon-wrap--sky {
	background: linear-gradient(135deg, #0a1e30, #081520);
}

.cat-card__icon {
	width: 36px;
	height: 36px;
}

/* Card number badge */
.cat-card__num {
	font-family: var(--font-display);
	font-size: clamp(3rem, 8vw, 6rem);
	color: var(--color-text);
	opacity: 0.04;
	line-height: 1;
	font-weight: 900;
	user-select: none;
	position: absolute;
	right: var(--space-4);
	bottom: var(--space-2);
}

/* Card body */
.cat-card__body {
	padding: var(--space-6);
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: var(--space-3);
	position: relative;
	z-index: 1;
}

.cat-card__title {
	font-size: var(--text-lg);
	font-weight: 700;
	color: var(--color-text);
	line-height: 1.25;
}

.cat-card__desc {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: 1.75;
	flex: 1;
}

.cat-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin-top: auto;
}

.cat-card__tag {
	font-size: var(--text-xs);
	font-weight: 500;
	padding: var(--space-1) var(--space-3);
	background: var(--color-primary-subtle);
	color: var(--color-primary);
	border-radius: var(--radius-full);
	border: 1px solid var(--color-border-subtle);
	transition: background var(--transition), color var(--transition);
}

.cat-card:hover .cat-card__tag {
	background: var(--color-primary-light);
}

.cat-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-4) var(--space-6);
	border-top: 1px solid var(--color-divider);
	margin-top: auto;
	position: relative;
	z-index: 1;
}

.cat-card__link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-primary);
	text-decoration: none;
	transition: gap var(--transition), color var(--transition);
}

.cat-card__link:hover {
	gap: var(--space-3);
	color: var(--color-primary-hover);
}

.cat-card__link svg {
	transition: transform var(--transition);
}

.cat-card__link:hover svg {
	transform: translateX(3px);
}

.cat-card__arrow {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-primary-subtle);
	color: var(--color-primary);
	transition: all var(--transition);
}

.cat-card:hover .cat-card__arrow {
	background: var(--color-primary);
	color: white;
	transform: rotate(-45deg);
}

/* ===== WHY US ===== */
.why__grid {
	display: grid;
	grid-template-columns: 1fr 440px;
	gap: var(--space-16);
	align-items: self-end;
}

.why__lead {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	line-height: 1.75;
	margin-bottom: var(--space-8);
}

.features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-5);
}

.feature {
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-xl);
	padding: var(--space-5);
	display: flex;
	gap: var(--space-4);
	align-items: flex-start;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.feature::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 5%, transparent), transparent);
	opacity: 0;
	transition: opacity var(--transition);
}

.feature:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: var(--color-border-subtle);
}

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

.feature__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: var(--color-primary-light);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	transition: all var(--transition);
}

.feature__icon svg {
	width: 20px;
	height: 20px;
}

.feature:hover .feature__icon {
	background: var(--color-primary);
	color: white;
	transform: scale(1.05);
}

.feature__title {
	font-size: var(--text-base);
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: var(--space-1);
}

.feature__desc {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: 1.2;
	margin-top: 20px;
}

/* Why visual — modern glass stat cards */
.why__visual {
	position: relative;
}

.why__card-stack {
	position: relative;
	height: 400px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.why__stat-card {
	position: relative;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-2xl);
	padding: var(--space-8);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	box-shadow: var(--shadow-lg);
	transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.why__stat-card:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.why__stat-card:nth-child(1) {
	width: 100%;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.why__stat-card--offset {
	width: 100%;
	margin-top: 1.25em;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.why__stat-card--small {
	width: 100%;
	margin-top: 1.25em;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.why__stat-num {
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	color: var(--color-primary);
	line-height: 1;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.why__stat-label {
	font-size: 20px;
	color: var(--color-primary);
	line-height: 1;
	background: linear-gradient(162deg, var(--color-primary), #08849b);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.why__stat-label2 {
	/* font-family: var(--font-display); */
	font-size: 22px;
	color: #ffffff;
	line-height: 1;
	/* background: linear-gradient(162deg, var(--color-primary), #08849b); */
	/* -webkit-background-clip: text; */
	/* background-clip: text; */
	/* -webkit-text-fill-color: transparent; */
	position: relative;
	padding-left: 20px;
}

.why__stat-card i {
	width: 20px;
	height: 10px;
	display: inline-flex;
	/* background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); */
	background: #ffffff;
	border-radius: var(--radius-md);
	position: absolute;
	left: 1.2rem;
	transform: translateY(-50%);
	top: 50%;
}

.why__badge-cert {
	position: absolute;
	top: 210px;
	left: 180px;
	background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 80%, var(--color-accent)));
	color: white;
	border-radius: var(--radius-lg);
	padding: var(--space-3) var(--space-4);
	font-size: var(--text-xs);
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: var(--space-2);
	box-shadow: var(--shadow-md), 0 4px 16px color-mix(in srgb, var(--color-primary) 35%, transparent);
	letter-spacing: 0.04em;
	animation: cert-pulse 3s ease-in-out infinite;
}

@keyframes cert-pulse {

	0%,
	100% {
		box-shadow: var(--shadow-md), 0 4px 16px color-mix(in srgb, var(--color-primary) 35%, transparent);
	}

	50% {
		box-shadow: var(--shadow-md), 0 4px 28px color-mix(in srgb, var(--color-primary) 55%, transparent);
	}
}

.why__badge-cert svg {
	width: 16px;
	height: 16px;
}

/* ===== PARTNERS ===== */
.partners__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: var(--space-4);
}

.partner-logo {
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-xl);
	padding: var(--space-6) var(--space-2);
	text-align: center;
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text-muted);
	transition: all 0.3s var(--ease-out);
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.partner-logo::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ease-out);
}

.partner-logo:hover {
	border-color: color-mix(in srgb, var(--color-primary) 40%, transparent);
	color: var(--color-primary);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.partner-logo:hover::before {
	transform: scaleX(1);
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-6);
}

.testi-card {
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-2xl);
	padding: var(--space-8);
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
	transition: all 0.3s var(--ease-out);
	position: relative;
	overflow: hidden;
}

.testi-card::before {
	content: '\201C';
	position: absolute;
	top: var(--space-4);
	right: var(--space-6);
	font-family: var(--font-display);
	font-size: 6rem;
	line-height: 1;
	color: var(--color-primary);
	opacity: 0.07;
	pointer-events: none;
	transition: opacity 0.3s;
}

.testi-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--color-border-subtle);
}

.testi-card:hover::before {
	opacity: 0.12;
}

.testi-card__text {
	font-size: var(--text-base);
	color: var(--color-text);
	line-height: 1.8;
	font-style: italic;
	flex: 1;
}

.testi-card__footer {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}

.testi-card__avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 70%, var(--color-accent)));
	color: white;
	font-size: var(--text-sm);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary) 30%, transparent);
}

.testi-card__avatar--teal {
	background: linear-gradient(135deg, var(--color-accent), color-mix(in srgb, var(--color-accent) 70%, var(--color-primary)));
}

.testi-card__avatar--navy {
	background: linear-gradient(135deg, #0e3570, #1a5fa8);
}

.testi-card__name {
	display: block;
	font-size: var(--text-base);
	font-weight: 700;
	color: var(--color-text);
	font-style: normal;
	margin-bottom: 2px;
}

.testi-card__role {
	display: block;
	font-size: var(--text-xs);
	color: var(--color-text-muted);
}

/* ===== CONTACTS ===== */
.contacts__layout {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: var(--space-16);
	align-items: start;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: var(--space-4);
	padding-bottom: var(--space-5);
	border-bottom: 1px solid var(--color-divider);
	margin-bottom: var(--space-5);
}

.contact-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.contact-item__icon {
	width: 46px;
	height: 46px;
	background: var(--color-primary-subtle);
	border: 1px solid var(--color-border-subtle);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	flex-shrink: 0;
	transition: all var(--transition);
}

.contact-item__icon svg {
	width: 20px;
	height: 20px;
}

.contact-item:hover .contact-item__icon {
	background: var(--color-primary);
	color: white;
	transform: scale(1.05);
}

.contact-item__label {
	display: block;
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	margin-bottom: var(--space-1);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.contact-item__value {
	font-size: var(--text-base);
	font-weight: 500;
	color: var(--color-text);
	text-decoration: none;
	transition: color var(--transition);
}

a.contact-item__value:hover {
	color: var(--color-primary);
}

/* Contact form */
.contact-form {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-2xl);
	padding: clamp(var(--space-6), 4vw, var(--space-10));
	box-shadow: var(--shadow-lg);
}

.contact-form .b24-form-padding-side {
	padding: 0 !important;
}

.contact-form .b24-form-wrapper {
	background: transparent !important;
}

.contact-form .b24-form-header-padding {
	display: none;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	margin-bottom: var(--space-5);
}

.form-label {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-text);
}

.form-input {
	background: var(--color-surface);
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-3) var(--space-4);
	font-size: var(--text-base);
	color: var(--color-text);
	transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
	width: 100%;
}

.form-input:focus {
	outline: none;
	border-color: var(--color-primary);
	background: var(--color-surface);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 12%, transparent);
}

.form-input::placeholder {
	color: var(--color-text-faint);
}

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

.form-privacy {
	text-align: center;
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	margin-top: var(--space-3);
}

.form-privacy a {
	color: var(--color-primary);
}

/* Form success */
.form-success {
	text-align: center;
	padding: var(--space-12) var(--space-8);
	display: none;
}

.form-success.show {
	display: block;
}

.form-success__icon {
	width: 64px;
	height: 64px;
	background: #d1fae5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--space-4);
	color: #059669;
}

.form-success__title {
	font-size: var(--text-lg);
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: var(--space-2);
}

.form-success__text {
	font-size: var(--text-base);
	color: var(--color-text-muted);
}

/* ===== FOOTER ===== */
.footer {
	background: var(--color-surface);
	border-top: 1px solid var(--color-divider);
	margin-top: auto;
}

.footer__inner {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--space-16);
	padding-block: var(--space-12);
	align-items: start;
}

.footer__desc {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	margin-top: var(--space-3);
	max-width: 240px;
}

.footer__nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-8);
}

.footer__nav-title {
	font-size: var(--text-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-text-faint);
	margin-bottom: var(--space-4);
}

.footer__nav ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.footer__nav a {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	text-decoration: none;
	transition: color var(--transition), padding-left var(--transition);
	display: block;
}

.footer__nav a:hover {
	color: var(--color-primary);
	padding-left: var(--space-2);
}

.footer__bottom {
	border-top: 1px solid var(--color-divider);
}

.footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: var(--space-4);
	flex-wrap: wrap;
	gap: var(--space-3);
}

.footer__copy {
	font-size: var(--text-xs);
	color: var(--color-text-faint);
}

.footer__pplx {
	font-size: var(--text-xs);
	color: var(--color-text-faint);
	text-decoration: none;
	transition: color var(--transition);
}

.footer__pplx:hover {
	color: var(--color-primary);
}

/* ===== SCROLL REVEAL (CSS scroll-driven) ===== */
.reveal {
	opacity: 1;
	/* fallback */
}

@supports (animation-timeline: scroll()) {
	.reveal {
		opacity: 0;
		animation: reveal-fade linear both;
		animation-timeline: view();
		animation-range: entry 0% entry 60%;
	}

	.reveal--delay-1 {
		animation-delay: 0.08s;
	}

	.reveal--delay-2 {
		animation-delay: 0.16s;
	}

	.reveal--delay-3 {
		animation-delay: 0.24s;
	}

	.reveal--delay-4 {
		animation-delay: 0.32s;
	}
}

@keyframes reveal-fade {
	to {
		opacity: 1;
	}
}

/* ===== HERO ENTRY ANIMATIONS ===== */
.hero__eyebrow {
	animation: slide-up 0.7s var(--ease-out) both;
	animation-delay: 0.1s;
}

.hero__title {
	animation: slide-up 0.7s var(--ease-out) both;
	animation-delay: 0.2s;
}

.hero__desc {
	animation: slide-up 0.7s var(--ease-out) both;
	animation-delay: 0.3s;
}

.hero__cta {
	animation: slide-up 0.7s var(--ease-out) both;
	animation-delay: 0.4s;
}

.hero__stats {
	animation: slide-up 0.7s var(--ease-out) both;
	animation-delay: 0.5s;
}

.hero__visual {
	animation: fade-in-right 1s var(--ease-out) both;
	animation-delay: 0.3s;
}

.article {
	background: #ffffff;
	padding-bottom: 40px;
}

/* BREADCRUMB */
.breadcrumb {
	padding: 40px 0px 0px 0px;
	font-size: var(--text-xs);
	color: var(--color-text-muted);
}

.breadcrumb a {
	color: var(--color-text);
	text-decoration: none;
}

.breadcrumb a:hover {
	color: var(--color-primary);
}

.breadcrumb-sep {
	opacity: 0.4;
	margin: 0px 10px;
}

.product-main {
	margin: 40px 0px;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 40px;
}

.gallery-main-img {
	border-radius: var(--radius-2xl);
	height: 440px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-divider);
	background: #ffffff;
	margin-bottom: 12px;
	position: relative;
}

.gallery-main-img a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.gallery-main-img a img {
	display: flex;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.gallery-thumbs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.gallery-thumb {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	border: 1px solid var(--color-divider);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	opacity: 0.4;
	transition: all 0.2s;
	overflow: hidden;
}

.gallery-thumb:hover {
	opacity: 0.8;
	border-color: var(--color-primary);
}

.gallery-thumb.active {
	border-color: var(--color-primary);
	opacity: 1;
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-breadtag {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 18px;
}

.product-h1 {
	font-size: 26px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.2;
	margin-bottom: 16px;
}

.descSingle p {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: 1.75;
}

.descSingle ul {
	padding-left: 20px;
	list-style-type: disc;
}

.descSingle li {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: 1.7;
	list-style: disc;
}

.price-block {
	background: linear-gradient(145deg, var(--color-surface-2) 0%, var(--color-bg) 100%);
	border-radius: var(--radius-md);
	padding: 24px;
	margin: 20px 0px;
}

.price-block-label {
	font-size: 12px;
	color: var(--color-text);
}

.price-main {
	font-size: 26px;
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1;
}

.price-sub {
	font-size: 13px;
	color: var(--color-text-muted);
	margin-top: 8px;
	line-height: 1.5;
}

.btn-primary {
	background: var(--color-primary);
	color: white;
	border: none;
	border-radius: var(--radius-md);
	padding: 14px 28px;
	font-size: var(--text-sm);
	font-weight: 400;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	text-align: center;
	width: 100%;
}

.btn-primary:hover {
	background: var(--color-accent);
	color: white;
}

.product-detail p {
	font-size: var(--text-sm);
	line-height: 1.75;
	margin-bottom: 14px;
}

.product-detail ul {
	padding-left: 20px;
	margin-bottom: 14px;
	list-style-type: disc;
}

.product-detail li {
	font-size: var(--text-sm);
	line-height: 1.7;
	margin-bottom: 6px;
	list-style: disc;
}

.product-detail table {
	width: 100%;
	border-collapse: collapse;
}

.product-detail td {
	padding: 13px 16px;
	font-size: var(--text-sm);
	border: 1px solid var(--color-divider);
}

.product-detail td:first-child {
	width: 40%;
	font-weight: 400;
}

.product-detail td:last-child {
	font-weight: 400;
}

.product-detail h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 25px;
	margin-top: 28px;
}

.product-detail h4 {
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 25px;
	margin-top: 28px;
}

.product-detail td h5 {
	font-size: var(--text-sm);
	font-weight: 600;
	text-align: center;
}

@keyframes slide-up {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fade-in-right {
	from {
		opacity: 0;
		transform: translateX(40px) translateY(-50%);
	}

	to {
		opacity: 1;
		transform: translateX(0) translateY(-50%);
	}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
	.catalog__grid {
		grid-template-columns: repeat(6, 1fr);
	}

	.cat-card {
		grid-column: span 3;
	}

	.cat-card:nth-child(1),
	.cat-card:nth-child(2) {
		grid-column: span 3;
	}

	.why__grid {
		grid-template-columns: 1fr;
		gap: var(--space-12);
	}

	.why__visual {
		/* display: none; */
	}

	.contacts__layout {
		grid-template-columns: 1fr;
		gap: var(--space-10);
	}
}

@media (max-width: 768px) {

	.nav,
	.header__phone,
	.header__actions .btn {
		display: none;
	}

	.burger {
		display: flex;
	}

	.hero__visual {
		display: none;
	}

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

	.cat-card,
	.cat-card:nth-child(1),
	.cat-card:nth-child(2) {
		grid-column: span 1;
	}

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

	.footer__inner {
		grid-template-columns: 1fr;
		gap: var(--space-8);
	}

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

	.hero__stats {
		align-items: flex-start;
		gap: 0;
		padding: var(--space-4) var(--space-5);
		width: 100%;
	}

	.stat {
		/* padding-inline: 0; */
		/* padding-block: var(--space-3); */
		/* border-bottom: 1px solid var(--color-divider); */
	}

	.stat:last-child {
		border-bottom: none;
	}

	.stat__divider {
		display: none;
	}

	.hero {
		min-height: auto;
	}

	.hero__title {
		font-size: 38px;
	}
}

@media (max-width: 480px) {
	.hero__cta {
		flex-direction: column;
	}

	.hero__cta .btn {
		width: 100%;
		justify-content: center;
	}

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

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

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

	.logo__tagline {
		display: none;
	}
}

/* Mouse spotlight on cards */
@media (hover: hover) {
	.cat-card {
		--mx: 50%;
		--my: 50%;
	}
}