/* Hero */
.hero {
	height: 100vh;
	min-height: 700px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.hero video {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	opacity: 0.6;
}
.hero::after {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
	z-index: 0;
	pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero .subtitle {
	color: var(--color-primary);
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1rem;
	display: block;
}
.hero p { font-size: 1.2rem; color: #ccc; margin-top: 1.5rem; max-width: 600px; }

/* Connect / Brand Story */
.connect-section {
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}
.connect-section.theme-light {
	background: #ffffff;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
}
.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-md);
	margin-top: var(--space-lg);
}
.value-card {
	background: var(--color-surface-light);
	padding: var(--space-md);
	border-radius: 12px;
	border: 1px solid var(--color-border);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	position: relative;
	overflow: hidden;
}
.value-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 227, 176, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.value-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 3px;
	background: linear-gradient(90deg, var(--color-primary), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}
.value-card:hover::before { opacity: 1; }
.value-card h3 { color: inherit; margin-bottom: 0.5rem; font-size: 1.5rem; }
.value-card .keyword {
	color: var(--color-primary-dark);
	font-weight: bold;
	font-size: 0.9rem;
	text-transform: uppercase;
	margin-bottom: 1rem;
	display: inline-block;
}
.theme-light .value-card {
	background: #f8f9fa;
	border-color: #eaeaea;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.theme-light .value-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Technology */
.tech-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); margin-top: var(--space-lg); }
.tech-item {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
	background: var(--color-surface);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--color-border);
}
.tech-item:nth-child(even) { flex-direction: row-reverse; }
.tech-content { flex: 1; padding: var(--space-lg); }
.tech-image {
	flex: 1;
	height: 400px;
	background: var(--color-surface-light);
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.tech-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.tech-item:hover .tech-image img { transform: scale(1.05); }
@media (max-width: 768px) {
	.tech-item { flex-direction: column !important; }
	.tech-image { width: 100%; height: 250px; }
}

/* Featured products preview (homepage) */
.featured-products { background: var(--color-surface); border-top: 1px solid var(--color-border); }
.featured-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--space-md);
	margin-top: var(--space-lg);
}
.featured-card {
	background: var(--color-surface-light);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, border-color 0.3s ease;
	display: block;
}
.featured-card:hover { transform: translateY(-4px); border-color: var(--color-primary); }
.featured-thumb { aspect-ratio: 1 / 1; background: #222 center/cover no-repeat; }
.featured-body { padding: 1rem; }
.featured-body h3 { font-size: 1.05rem; margin: 0 0 0.4rem; color: var(--color-text); }
.featured-price, .featured-price * { color: var(--color-primary); font-weight: 600; font-size: 0.95rem; }

/* Notices preview (homepage section uses news-grid from support.css) */
.notices-preview { background: var(--color-bg); }

/* Products / positioning section */
.products-section { background: linear-gradient(to bottom, var(--color-bg), var(--color-surface)); }
.products-section.theme-light { background: #ffffff; }
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--space-md);
	margin-top: var(--space-lg);
}
.product-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: var(--space-md);
	border: 1px solid var(--color-border);
	background: var(--color-surface-light);
	transition: transform 0.3s ease, border-color 0.3s ease;
}
.product-card .bg-img {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	opacity: 0.8;
	transition: transform 0.5s ease;
}
.product-card:hover .bg-img { transform: scale(1.05); }
.product-card:hover { transform: scale(1.02); border-color: var(--color-primary); }
.product-card .content {
	position: relative;
	z-index: 1;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: var(--space-md);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}
.product-card h3 { font-size: 1.8rem; margin-bottom: 0.5rem; color: #ffffff; }
.product-card .target {
	color: var(--color-primary);
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	text-transform: uppercase;
}

/* Partnership CTA */
.partnership-cta {
	background: radial-gradient(circle at center, #002244 0%, var(--color-surface) 100%);
	border-top: 1px solid var(--color-border);
}
.cta-box {
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid var(--color-border);
	padding: var(--space-lg);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	max-width: 800px;
	margin: 0 auto;
}
.benefits-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--space-md);
	margin: var(--space-lg) 0;
	text-align: left;
}
.benefit-item h4 { color: #fff; margin-bottom: 0.5rem; }
.benefit-item p { font-size: 0.9rem; }
