@import "https: //fonts.googleapis.com/css2?family=Inter: wght@400;500;600;700;800;900&display=swap";

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--navy-950: #03070f;
	--navy-900: #060d1a;
	--navy-850: #0a1528;
	--navy-800: #0f1f3d;
	--navy-700: #162852;
	--navy-600: #1e3566;
	--navy-500: #274a8f;
	--gold-300: #BC8F37;
	--gold-400: #BC8F37;
	--gold-500: #BC8F37;
	--gold-600: #BC8F37;
	--gold-gradient: linear-gradient(135deg, #f5c842 0%, #c8901e 50%, #f5c842 100%);
	--gold-glow: 0 0 30px rgba(212, 160, 23, .35);
	--teal-400: #2dd4bf;
	--teal-500: #14b8a6;
	--slate-50: #f8fafc;
	--slate-100: #f1f5f9;
	--slate-200: #e2e8f0;
	--slate-300: #cbd5e1;
	--slate-400: #94a3b8;
	--slate-500: #64748b;
	--slate-600: #475569;
	--slate-700: #334155;
	--slate-800: #1e293b;
	--slate-900: #0f172a;
	--white: #ffffff;
	--glass-bg: rgba(255, 255, 255, .04);
	--glass-border: rgba(255, 255, 255, .08);
	--glass-hover: rgba(255, 255, 255, .08);
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, .4);
	--shadow: 0 4px 20px rgba(0, 0, 0, .5);
	--shadow-md: 0 8px 32px rgba(0, 0, 0, .5);
	--shadow-lg: 0 20px 60px rgba(0, 0, 0, .6);
	--shadow-gold: 0 8px 32px rgba(212, 160, 23, .25);
	--radius: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
	color: #ffffffd9;
	background: var(--navy-900);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

ul {
	list-style: none;
}

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

.section {
	padding: 88px 0;
}

.section-sm {
	padding: 56px 0;
}

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

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.flex {
	display: flex;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.gap-2 {
	gap: 8px;
}

.gap-3 {
	gap: 12px;
}

.gap-4 {
	gap: 16px;
}

h1 {
	font-size: 3rem;
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

h2 {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

h3 {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
}

h4 {
	font-size: 1rem;
	font-weight: 600;
}

p {
	color: #ffffff8c;
	line-height: 1.7;
}

.gold-text {
	background: var(--gold-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-400);
	background: #d4a0171a;
	border: 1px solid rgba(212, 160, 23, .3);
	padding: 5px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.section-label::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold-400);
	flex-shrink: 0;
}

.section-title {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--white);
	margin-bottom: 12px;
	letter-spacing: -0.025em;
}

.section-sub {
	font-size: 1.05rem;
	color: #ffffff80;
	max-width: 560px;
	line-height: 1.75;
}

.text-center .section-sub {
	margin: 0 auto;
}

@keyframes shimmer-move {
	0% {
		background-position: -200% center;
	}

	to {
		background-position: 200% center;
	}
}

@keyframes float-up {
	0%,
	to {
		transform: translatey(0);
	}

	50% {
		transform: translatey(-8px);
	}
}

@keyframes pulse-ring {
	0% {
		transform: scale(.9);
		opacity: .8;
	}

	to {
		transform: scale(1.4);
		opacity: 0;
	}
}

@keyframes glow-pulse {
	0%,
	to {
		box-shadow: 0 0 20px #d4a01733;
	}

	50% {
		box-shadow: 0 0 40px #d4a01780;
	}
}

@keyframes shimmer-card {
	0% {
		background-position: -100% 0;
	}

	to {
		background-position: 200% 0;
	}
}

.shimmer-bar {
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--gold-400) 50%, transparent 100%);
	background-size: 200% 100%;
	animation: shimmer-move 2.5s linear infinite;
	border-radius: 999px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--radius);
	font-size: 0.9375rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 2px solid transparent;
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.2s;
}

.btn:hover::after {
	opacity: 1;
}

.btn-primary {
	background: var(--gold-gradient);
	color: var(--navy-950);
	border-color: transparent;
	box-shadow: var(--shadow-gold);
	background-size: 200% 100%;
	background-position: 0% center;
	transition: background-position 0.4s ease, box-shadow 0.2s;
}

.btn-primary:hover {
	background-position: 100% center;
	box-shadow: 0 12px 40px #d4a01773;
	transform: translatey(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--gold-400);
	border-color: #d4a01766;
}

.btn-outline:hover {
	background: #d4a0171a;
	border-color: var(--gold-400);
}

.btn-outline-white {
	background: #ffffff14;
	color: var(--white);
	border-color: #ffffff40;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
	background: #ffffff26;
	border-color: #ffffff80;
	transform: translatey(-1px);
}

.btn-sm {
	padding: 8px 16px;
	font-size: 0.84rem;
}

.btn-lg {
	padding: 15px 36px;
	font-size: 1rem;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: #060d1ad9;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(212, 160, 23, .12);
	transition: box-shadow 0.3s, border-color 0.3s;
}

.navbar.scrolled {
	box-shadow: 0 4px 40px #0009;
	border-color: #d4a01740;
}

.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	gap: 32px;
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.navbar-logo {
	height: 50px;
	width: auto;
	max-width: 230px;
}

.navbar-nav {
	display: flex;
	align-items: center;
	gap: 2px;
}

.navbar-nav a {
	padding: 7px 15px;
	font-size: 0.88rem;
	font-weight: 600;
	color: #ffffffa6;
	border-radius: var(--radius);
	transition: all 0.2s;
	letter-spacing: 0.01em;
}

.navbar-nav a:hover {
	color: var(--gold-400);
	background: #d4a01714;
}

.navbar-nav a.active {
	color: var(--gold-400);
	background: #d4a0171a;
}

.navbar-cta {
	flex-shrink: 0;
}

.navbar-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: #ffffffb3;
}

.navbar-toggle svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
}

.navbar-mobile {
	display: none;
	flex-direction: column;
	border-top: 1px solid var(--glass-border);
	padding: 12px 0;
	background: #060d1af2;
}

.navbar-mobile.open {
	display: flex;
}

.navbar-mobile a {
	padding: 13px 24px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #ffffffb3;
	border-bottom: 1px solid rgba(255, 255, 255, .05);
	transition: color 0.2s;
}

.navbar-mobile a:last-child {
	border-bottom: none;
}

.navbar-mobile a.active,
.navbar-mobile a:hover {
	color: var(--gold-400);
}

.hero {
	padding: 160px 0 110px;
	background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212, 160, 23, .12) 0%, transparent 60%), linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-850) 100%);
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(212, 160, 23, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 160, 23, .04) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translate(-50%);
	width: 600px;
	height: 400px;
	background: radial-gradient(ellipse, rgba(212, 160, 23, .15) 0%, transparent 70%);
	pointer-events: none;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 64px;
	position: relative;
	z-index: 1;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold-400);
	border: 1px solid rgba(212, 160, 23, .35);
	background: #d4a01714;
	padding: 5px 16px;
	border-radius: 999px;
	margin-bottom: 24px;
}

.hero-eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold-400);
	box-shadow: 0 0 8px var(--gold-400);
	animation: glow-pulse 2s ease-in-out infinite;
}

.hero h1 {
	font-size: 3.75rem;
	color: var(--white);
	margin-bottom: 8px;
	line-height: 1.06;
}

.hero h1 span {
	background: var(--gold-gradient);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: shimmer-move 4s linear infinite;
}

.hero-sub {
	font-size: 1.1rem;
	color: #fff9;
	margin-bottom: 40px;
	max-width: 480px;
	line-height: 1.75;
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: #d4a01726;
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-top: 52px;
	border: 1px solid rgba(212, 160, 23, .2);
}

.hero-stat {
	padding: 20px 16px;
	background: #060d1acc;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: background 0.2s;
}

.hero-stat:hover {
	background: #d4a0170f;
}

.hero-stat-num {
	font-size: 1.85rem;
	font-weight: 900;
	color: var(--gold-400);
	display: block;
	letter-spacing: -0.02em;
}

.hero-stat-label {
	font-size: 0.78rem;
	color: #ffffff73;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.hero-image-wrap {
	position: relative;
}

.hero-img {
	width: 100%;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg), 0 0 0 1px #d4a01726;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	animation: float-up 6s ease-in-out infinite;
}

.hero-image-wrap::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: calc(var(--radius-xl) + 1px);
	background: var(--gold-gradient);
	background-size: 200% auto;
	animation: shimmer-move 4s linear infinite;
	z-index: -1;
	opacity: .5;
}

.hero-badge {
	position: absolute;
	bottom: -20px;
	left: 24px;
	background: #0a1528f2;
	border: 1px solid rgba(212, 160, 23, .3);
	border-radius: var(--radius-lg);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: var(--shadow-gold);
	min-width: 190px;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	animation: float-up 4s ease-in-out infinite;
	animation-delay: 1s;
}

.hero-badge-icon {
	width: 40px;
	height: 40px;
	background: #d4a01726;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-400);
	flex-shrink: 0;
}

.hero-badge-text {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--white);
}

.hero-badge-sub {
	font-size: 0.72rem;
	color: var(--gold-400);
}

.categories-strip {
	background: var(--navy-950);
	padding: 72px 0;
	position: relative;
	overflow: hidden;
}

.categories-strip::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--gold-gradient);
	background-size: 200% auto;
	animation: shimmer-move 3s linear infinite;
}

.cat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid rgba(212, 160, 23, .15);
}

.cat-card {
	background: #ffffff05;
	padding: 40px 32px;
	transition: background 0.25s, transform 0.25s;
	cursor: default;
	position: relative;
	overflow: hidden;
}

.cat-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 160, 23, .06) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.25s;
}

.cat-card:hover {
	background: #d4a0170d;
}

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

.cat-icon {
	width: 52px;
	height: 52px;
	background: #d4a0171f;
	border: 1px solid rgba(212, 160, 23, .25);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--gold-400);
	font-size: 1.3rem;
	font-weight: 800;
	transition: box-shadow 0.25s;
}

.cat-card:hover .cat-icon {
	box-shadow: var(--gold-glow);
}

.cat-name {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 10px;
}

.cat-desc {
	font-size: 0.86rem;
	color: #fff6;
	line-height: 1.65;
}

.cat-count {
	margin-top: 18px;
	font-size: 0.8rem;
	color: var(--gold-500);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.feature-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-lg);
	padding: 32px;
	transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gold-gradient);
	background-size: 200% auto;
	opacity: 0;
	transition: opacity 0.25s;
	animation: shimmer-move 3s linear infinite;
}

.feature-card:hover {
	box-shadow: 0 12px 40px #d4a0171f;
	transform: translatey(-4px);
	border-color: #d4a01740;
}

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

.feature-icon {
	width: 52px;
	height: 52px;
	background: #d4a0171a;
	border: 1px solid rgba(212, 160, 23, .2);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-400);
	margin-bottom: 20px;
	transition: box-shadow 0.25s;
}

.feature-card:hover .feature-icon {
	box-shadow: var(--gold-glow);
}

.feature-icon svg {
	width: 26px;
	height: 26px;
}

.feature-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 8px;
}

.feature-desc {
	font-size: 0.875rem;
	color: #ffffff73;
	line-height: 1.7;
}

.product-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-xl);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	position: relative;
}

.product-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .04), transparent);
	transition: left 0.5s ease;
	z-index: 1;
	pointer-events: none;
}

.product-card:hover::before {
	left: 150%;
}

.product-card:hover {
	box-shadow: 0 16px 48px #d4a01726, 0 0 0 1px #d4a01740;
	transform: translatey(-5px);
	border-color: #d4a01740;
}

.product-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gold-gradient);
	background-size: 200% auto;
	animation: shimmer-move 3s linear infinite;
	opacity: 0;
	transition: opacity 0.3s;
}

.product-card:hover::after {
	opacity: 1;
}

.product-card-img-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.product-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
	transform: scale(1.06);
}

.product-card-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 40%, rgba(6, 13, 26, .85) 100%);
	z-index: 1;
}

.product-card-img-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
}

.product-card-img-placeholder {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d4a01740;
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: 0.05em;
}

.product-card-body {
	padding: 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-cat-badge {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold-400);
	background: #d4a0171a;
	border: 1px solid rgba(212, 160, 23, .25);
	padding: 3px 10px;
	border-radius: 999px;
	margin-bottom: 10px;
}

.product-name {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 8px;
	line-height: 1.3;
}

.product-desc {
	font-size: 0.86rem;
	color: #ffffff73;
	line-height: 1.65;
	margin-bottom: 14px;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-grades {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 14px;
}

.grade-tag {
	font-size: 0.72rem;
	font-weight: 700;
	color: #ffffff8c;
	background: #ffffff0d;
	border: 1px solid rgba(255, 255, 255, .1);
	padding: 3px 9px;
	border-radius: 4px;
	font-family: Courier New, monospace;
	letter-spacing: 0.02em;
}

.product-card-footer {
	border-top: 1px solid rgba(255, 255, 255, .06);
	padding-top: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-cas {
	font-size: 0.72rem;
	color: #ffffff4d;
	font-family: monospace;
}

.product-cas strong {
	color: #ffffff80;
}

.spec-tag {
	display: inline-block;
	padding: 5px 12px;
	border-radius: var(--radius);
	font-size: 0.84rem;
	font-weight: 600;
}

.spec-tag-grade {
	background: #ffffff0d;
	color: #ffffffb3;
	border: 1px solid rgba(255, 255, 255, .1);
	font-family: monospace;
}

.spec-tag-app {
	background: #d4a0171a;
	color: var(--gold-400);
	border: 1px solid rgba(212, 160, 23, .2);
}

.spec-tag-pkg {
	background: #ffffff0f;
	color: #ffffffa6;
	border: 1px solid rgba(255, 255, 255, .1);
}

.inquiry-card {
	background: #0a1528b3;
	border: 1px solid rgba(212, 160, 23, .2);
	border-radius: var(--radius-xl);
	padding: 36px;
	box-shadow: var(--shadow-gold);
	position: sticky;
	top: 96px;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}

.inquiry-card h3 {
	color: var(--white);
	margin-bottom: 6px;
}

.inquiry-card > p {
	font-size: 0.875rem;
	color: #ffffff73;
	margin-bottom: 24px;
}

.form-group {
	margin-bottom: 18px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-label {
	display: block;
	font-size: 0.84rem;
	font-weight: 700;
	color: #ffffffa6;
	margin-bottom: 7px;
	letter-spacing: 0.01em;
}

.form-label .req {
	color: var(--gold-400);
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 11px 15px;
	font-size: 0.9375rem;
	font-family: inherit;
	color: var(--white);
	background: #ffffff0d;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--radius);
	transition: border-color 0.2s, box-shadow 0.2s;
	appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: #fff3;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: #d4a01780;
	box-shadow: 0 0 0 3px #d4a0171f;
}

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

.form-error {
	font-size: 0.8rem;
	color: #f87171;
	margin-top: 4px;
}

.form-success {
	background: #14b8a61a;
	border: 1px solid rgba(20, 184, 166, .3);
	border-radius: var(--radius);
	padding: 16px;
	color: var(--teal-400);
	font-size: 0.9rem;
	font-weight: 600;
	margin-top: 16px;
	display: none;
}

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

.cta-strip {
	background: linear-gradient(135deg, #0d1829, #0a1020, #06111a);
	padding: 88px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-strip::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212, 160, 23, .08) 0%, transparent 70%);
	pointer-events: none;
}

.cta-strip::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--gold-gradient);
	background-size: 200% auto;
	animation: shimmer-move 3s linear infinite;
}

.cta-strip h2 {
	color: var(--white);
	font-size: 2.5rem;
	margin-bottom: 12px;
	position: relative;
}

.cta-strip p {
	color: #ffffff8c;
	font-size: 1.1rem;
	margin-bottom: 40px;
	position: relative;
}

.cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}

.page-hero {
	background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 160, 23, .1) 0%, transparent 60%), linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
	padding: 136px 0 68px;
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(212, 160, 23, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 160, 23, .03) 1px, transparent 1px);
	background-size: 60px 60px;
}

.page-hero::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--gold-gradient);
	background-size: 200% auto;
	animation: shimmer-move 3s linear infinite;
}

.page-hero h1 {
	font-size: 2.75rem;
	color: var(--white);
	margin-bottom: 14px;
	position: relative;
}

.page-hero p {
	color: #ffffff8c;
	font-size: 1.05rem;
	max-width: 560px;
	position: relative;
}

.filter-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 40px;
	padding: 20px 24px;
	background: #ffffff05;
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-xl);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.filter-btn {
	padding: 8px 20px;
	border-radius: 999px;
	font-size: 0.84rem;
	font-weight: 700;
	cursor: pointer;
	border: 1.5px solid rgba(255, 255, 255, .1);
	background: transparent;
	color: #ffffff80;
	transition: all 0.2s;
	letter-spacing: 0.02em;
}

.filter-btn:hover {
	border-color: #d4a01766;
	color: var(--gold-400);
}

.filter-btn.active {
	background: var(--gold-gradient);
	border-color: transparent;
	color: var(--navy-950);
	box-shadow: var(--shadow-gold);
	background-size: 200% auto;
}

.filter-label {
	font-size: 0.84rem;
	font-weight: 700;
	color: #ffffff59;
	margin-right: 4px;
	letter-spacing: 0.04em;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.products-grid-skeleton {
	grid-column: 1 / -1;
	text-align: center;
	padding: 80px;
}

.about-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

.about-intro-img {
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border: 1px solid rgba(212, 160, 23, .15);
}

.value-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.value-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.value-check {
	width: 34px;
	height: 34px;
	background: #d4a01726;
	border: 1px solid rgba(212, 160, 23, .3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--gold-400);
	transition: box-shadow 0.2s;
}

.value-item:hover .value-check {
	box-shadow: var(--gold-glow);
}

.value-check svg {
	width: 16px;
	height: 16px;
}

.value-text h4 {
	color: var(--white);
	margin-bottom: 4px;
}

.value-text p {
	font-size: 0.9rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid rgba(212, 160, 23, .15);
}

.stat-box {
	background: #ffffff05;
	padding: 40px 24px;
	text-align: center;
	transition: background 0.2s;
}

.stat-box:hover {
	background: #d4a0170a;
}

.stat-num {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--gold-400);
	letter-spacing: -0.02em;
}

.stat-label {
	font-size: 0.84rem;
	color: #fff6;
	font-weight: 600;
	margin-top: 6px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.72rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 64px;
	align-items: start;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.contact-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.contact-icon {
	width: 48px;
	height: 48px;
	background: #d4a0171a;
	border: 1px solid rgba(212, 160, 23, .2);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-400);
	flex-shrink: 0;
	transition: box-shadow 0.2s;
}

.contact-item:hover .contact-icon {
	box-shadow: var(--gold-glow);
}

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

.contact-item h4 {
	color: var(--white);
	margin-bottom: 4px;
}

.contact-item p {
	font-size: 0.925rem;
	color: #ffffff80;
}

.footer {
	background: var(--navy-950);
	padding: 72px 0 36px;
	position: relative;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--gold-gradient);
	background-size: 200% auto;
	animation: shimmer-move 4s linear infinite;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 52px;
}

.footer-logo {
	height: 44px;
	width: auto;
	margin-bottom: 18px;
	//filter: brightness(0) invert(1);
	opacity: .8;
}

.footer-tagline {
	font-size: 0.875rem;
	line-height: 1.75;
	color: #fff6;
	max-width: 260px;
}

.footer-col h4 {
	font-size: 0.72rem;
	font-weight: 800;
	color: var(--gold-400);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.footer-links a {
	font-size: 0.875rem;
	color: #fff6;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--gold-400);
}

.footer-links span {
	font-size: 0.84rem;
}

.footer-divider {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, .06);
	margin-bottom: 28px;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.82rem;
	color: #ffffff40;
}

.toast {
	position: fixed;
	bottom: 32px;
	right: 32px;
	background: #0a1528f2;
	border: 1px solid rgba(212, 160, 23, .3);
	color: var(--white);
	padding: 16px 24px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-gold);
	font-size: 0.9rem;
	font-weight: 600;
	z-index: 999;
	transform: translatey(80px);
	opacity: 0;
	transition: all 0.3s cubic-bezier(.34, 1.56, .64, 1);
	max-width: 340px;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}

.toast.show {
	transform: translatey(0);
	opacity: 1;
}

.toast.success {
	border-left: 3px solid var(--teal-400);
}

.toast.error {
	border-left: 3px solid #f87171;
}

.skeleton {
	background: linear-gradient(90deg, #ffffff0a 25%, #ffffff14, #ffffff0a 75%);
	background-size: 200% 100%;
	animation: shimmer-card 1.8s infinite;
	border-radius: var(--radius);
}

@keyframes shimmer {
	0% {
		background-position: 200% 0;
	}

	to {
		background-position: -200% 0;
	}
}

.skeleton-card {
	height: 380px;
	border-radius: var(--radius-xl);
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.84rem;
	color: #ffffff59;
	margin-bottom: 24px;
	position: relative;
}

.breadcrumb a {
	color: #ffffff73;
	transition: color 0.2s;
}

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

.breadcrumb span {
	color: #fff3;
}

.product-detail-hero {
	background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
	padding: 120px 0 60px;
}

.product-detail-body {
	padding: 60px 0;
}

.product-detail-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 48px;
	align-items: start;
}

.spec-section {
	margin-bottom: 36px;
}

.spec-section h3 {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold-500);
	margin-bottom: 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(212, 160, 23, .15);
}

.spec-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-image-wrap {
		display: none;
	}

	.hero {
		min-height: auto;
		padding: 140px 0 80px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

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

	.product-detail-grid {
		grid-template-columns: 1fr;
	}

	.inquiry-card {
		position: static;
	}

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

@media (max-width: 768px) {
	h1 {
		font-size: 2.25rem;
	}

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

	.navbar-nav,
	.navbar-cta {
		display: none;
	}

	.navbar-toggle {
		display: flex;
	}

	.hero-stats,
	.cat-grid,
	.grid-2,
	.grid-3,
	.products-grid,
	.about-intro-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.filter-bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero {
		padding: 120px 0 64px;
	}

	.hero h1 {
		font-size: 2.75rem;
	}

	.cta-strip h2 {
		font-size: 1.9rem;
	}

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