.feature-nav {
	padding: var(--spacing-3xl) 0;
	background: transparent;
}

.feature-nav__header {
	text-align: center;
	margin-bottom: var(--spacing-3xl);
}

.feature-nav__header h2 {
	font-size: 2.5rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 var(--spacing-md);
	background: linear-gradient(135deg, #0f172a 0%, var(--color-primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.feature-nav__header p {
	font-size: 1.125rem;
	color: #64748b;
	margin: 0;
}

.feature-nav__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--spacing-xl);
	max-width: 1200px;
	margin: 0 auto;
}

.feature-nav__card {
	display: flex;
	align-items: center;
	gap: var(--spacing-lg);
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 20px;
	padding: var(--spacing-xl);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
	position: relative;
	overflow: hidden;
}

.feature-nav__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.feature-nav__card:hover {
	border-color: rgba(255, 106, 0, 0.3);
	background: rgba(255, 255, 255, 0.4);
	box-shadow: 0 4px 20px rgba(255, 106, 0, 0.15);
	transform: translateY(-2px);
}

.feature-nav__card:hover::before {
	transform: scaleX(1);
}

.feature-nav__card:hover .feature-nav__arrow {
	transform: translateX(6px);
	color: var(--color-primary);
}

.feature-nav__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	color: white;
	font-size: 1.5rem;
	font-weight: 800;
	flex-shrink: 0;
	box-shadow: 0 4px 16px rgba(255, 106, 0, 0.25);
	transition: all 0.3s ease;
}

.feature-nav__card:hover .feature-nav__icon {
	transform: scale(1.05) rotate(3deg);
	box-shadow: 0 6px 24px rgba(255, 106, 0, 0.35);
}

.feature-nav__content {
	flex: 1;
	min-width: 0;
}

.feature-nav__content h3 {
	margin: 0 0 var(--spacing-xs);
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.3;
}

.feature-nav__content p {
	margin: 0;
	font-size: 0.9375rem;
	color: #64748b;
	line-height: 1.5;
}

.feature-nav__arrow {
	font-size: 1.5rem;
	color: #cbd5e1;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.feature-nav__header h2 {
		font-size: 2rem;
	}
	
	.feature-nav__grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
	
	.feature-nav__card {
		padding: var(--spacing-lg);
	}
	
	.feature-nav__icon {
		width: 56px;
		height: 56px;
		font-size: 1.25rem;
	}
	
	.feature-nav__content h3 {
		font-size: 1.125rem;
	}
}

.feature-panel-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-xl);
}

.feature-panel {
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(15, 23, 42, 0.06);
	border-radius: 24px;
	padding: var(--spacing-xl);
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.feature-panel:hover {
	border-color: var(--color-primary);
	box-shadow: 0 16px 50px rgba(255, 106, 0, 0.15);
	transform: translateY(-4px);
}

.feature-panel:hover::before {
	transform: scaleX(1);
}

.feature-panel h3 {
	margin: 0 0 var(--spacing-sm);
	color: #0f172a;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.3;
}

.feature-panel p {
	margin: 0;
	color: #64748b;
	line-height: 1.7;
	font-size: 0.9375rem;
}

:root {
	--color-primary: #FF6A00;
	--color-primary-dark: #E55A00;
	--color-primary-light: #FF8A33;
	--color-secondary: #0EA5E9;
	--color-secondary-dark: #0C8FC7;
	--color-bg: #FFFFFF;
	--color-bg-secondary: #F8F9FA;
	--color-bg-tertiary: #F1F3F5;
	--color-text: #1A1F2E;
	--color-text-secondary: #6B7280;
	--color-text-muted: #9CA3AF;
	--color-border: #E5E7EB;
	--color-border-light: #F3F4F6;
	
	--bg: var(--color-bg);
	--text: var(--color-text);
	--muted: var(--color-text-secondary);
	--brand: var(--color-primary);
	--brand-600: var(--color-primary-dark);
	--surface: var(--color-bg-secondary);
	--border: var(--color-border);
	--link: var(--color-secondary);
	--accent-color: var(--color-primary);
	--accent-color-dark: var(--color-primary-dark);
	
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	
	--spacing-xs: 0.25rem;
	--spacing-sm: 0.5rem;
	--spacing-md: 1rem;
	--spacing-lg: 1.5rem;
	--spacing-xl: 2rem;
	--spacing-2xl: 3rem;
	--spacing-3xl: 4rem;
	--spacing-4xl: 6rem;
	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
	--radius-2xl: 1.5rem;
	--radius-full: 9999px;
	
	--header-height: 72px;
	--header-height-mobile: 64px;
	--container-max-width: 1800px;
}
@media (prefers-color-scheme: dark) {
	:root {
		--bg: #0b1220;
		--text: #e2e8f0;
		--muted: #94a3b8;
		--surface: #0f172a;
		--border: #1f2937;
		--link: #38bdf8;
	}
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body {
	background-color: var(--color-bg);
	background-image:
		radial-gradient(800px 520px at 8% 20%, rgba(255,106,0,.08) 0%, rgba(255,106,0,0) 60%),
		radial-gradient(640px 420px at 18% 28%, rgba(14,165,233,.06) 0%, rgba(14,165,233,0) 65%),
		linear-gradient(90deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,.2) 38%, rgba(255,255,255,.05) 62%, rgba(255,255,255,0) 72%),
		url('/assets/img/body_bg1.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	background-attachment: fixed;
	color: var(--color-text);
	font: 16px/1.6 "Microsoft YaHei", "PingFang SC", "Segoe UI", system-ui, -apple-system, sans-serif;
	padding-top: var(--header-height);
}
@media (max-width: 900px) {
	body { padding-top: 56px; background-attachment: scroll; }
}
@media (max-width: 480px) {
	body { 
		font-size: 14px; 
		line-height: 1.6;
		-webkit-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}
	html { 
		scroll-behavior: smooth; 
		-webkit-overflow-scrolling: touch; 
	}
}
a {
	color: var(--link);
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}
.container { 
	width: 100%; 
	max-width: var(--container-max-width, 1800px); 
	margin: 0 auto; 
	padding: 0 var(--spacing-lg, 1.5rem); 
}
@media (max-width: 480px) {
	.container { padding: 0 12px; }
}
button, input, select, textarea { font-family: inherit; color: inherit; }

.site-header { 
	position: fixed; 
	top: 0; 
	left: 0; 
	right: 0; 
	z-index: 1000; 
	height: var(--header-height);
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--color-border-light);
	transition: all .2s ease;
}
.site-header.is-solid {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: var(--shadow-sm);
}
@media (prefers-color-scheme: dark) {
	.site-header { background: transparent; }
	.site-header.is-solid {
		background:
			linear-gradient(90deg, rgba(15,23,42,.78) 0%, rgba(15,23,42,.52) 38%, rgba(15,23,42,.22) 62%, rgba(15,23,42,0) 72%);
		backdrop-filter: blur(10px);
	}
}
.header-inner { 
	display: flex; 
	align-items: center; 
	justify-content: space-between; 
	height: var(--header-height);
	gap: var(--spacing-xl);
}
.brand { 
	display: inline-flex; 
	align-items: center; 
	gap: var(--spacing-sm); 
	color: inherit; 
	transition: opacity .2s ease;
	flex-shrink: 0;
	font-weight: 700;
	font-size: 1.25rem;
}
.brand:hover { opacity: 0.8; }
.brand img { 
	display: block;
	height: 40px;
	width: auto;
}
.brand-text { font-weight: 700; letter-spacing: .2px; }
.site-nav { 
	flex: 1;
	display: flex;
	justify-content: center;
}
.site-nav ul { 
	display: flex; 
	gap: var(--spacing-md); 
	list-style: none; 
	margin: 0; 
	padding: 0;
	align-items: center;
}
.site-nav a { 
	color: var(--color-text-secondary);
	padding: var(--spacing-sm) var(--spacing-md); 
	border-radius: var(--radius-md); 
	transition: all .2s ease;
	font-weight: 500;
	position: relative;
	white-space: nowrap;
}
.site-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--color-primary);
	border-radius: var(--radius-full);
	transition: width .2s ease;
}
.site-nav a:hover { 
	background: rgba(255, 106, 0, 0.05);
	color: var(--color-primary);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
	width: calc(100% - var(--spacing-md));
}
.site-nav a[aria-current="page"] { 
	background: rgba(255, 106, 0, 0.08);
	color: var(--color-primary); 
	font-weight: 600; 
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { padding: 8px 14px; border-radius: 999px; font-weight: 700; }
.lang-switch { display: inline-block; padding: 6px 10px; border: 1px solid var(--border); border-radius: 8px; }
.nav-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 8px; background: transparent; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.nav-toggle:hover { background: var(--surface); border-color: var(--brand); }
.nav-toggle:active { transform: scale(0.95); }
.nav-toggle .bar { display: block; width: 20px; height: 2px; background: var(--text); margin: 3px auto; transition: background .2s ease; }
.nav-toggle:hover .bar { background: var(--brand); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.nav-drawer { display: none; border-bottom: 1px solid var(--border); background: var(--bg); position: relative; z-index: 200; width: 100%; box-shadow: 0 12px 24px rgba(15,23,42,.08); }
.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; margin: 0; padding: 8px 16px 16px; }
.nav-drawer a { display: block; padding: 12px 16px; border-radius: 8px; color: inherit; transition: background .2s ease, color .2s ease; font-size: 16px; }
@media (max-width: 480px) {
	.nav-drawer a { padding: 14px 16px; min-height: 44px; display: flex; align-items: center; }
}
.nav-drawer a:hover { background: var(--surface); color: var(--brand); }
.nav-drawer a[aria-current="page"] { background: var(--surface); color: var(--brand); font-weight: 600; }

@media (max-width: 900px) {
	.site-nav { display: none; }
	.nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
	.header-inner { height: 56px; padding: 0 12px; }
	.brand img { width: 120px; height: auto; max-width: 100%; }
	.header-actions { gap: 8px; white-space: nowrap; }
	.header-cta { padding: var(--spacing-sm) var(--spacing-lg); font-size: var(--font-size-sm); min-height: 44px; }
	.header-cta .btn_text { font-size: var(--font-size-lg) !important; }
	.header-cta .btn__icon { width: 32px !important; height: 32px !important; }
	.header-cta .btn__icon::before { width: 40px !important; height: 40px !important; border-width: 2.5px; }
}
@media (max-width: 480px) {
	.header-cta { padding: var(--spacing-sm) var(--spacing-md); font-size: var(--font-size-sm); min-height: 44px; }
	.header-cta .btn_text { font-size: var(--font-size-base) !important; }
	.header-cta .btn__icon { width: 28px !important; height: 28px !important; }
	.header-cta .btn__icon::before { width: 36px !important; height: 36px !important; border-width: 2px; }
	.lang-switch { padding: 4px 8px; font-size: 14px; display: none; }
	.nav-toggle { width: 40px; height: 40px; flex-shrink: 0; min-width: 44px; min-height: 44px; }
	.nav-toggle .bar { width: 18px; }
}
@media (max-width: 480px) {
	.nav-toggle { width: 44px; height: 44px; }
	.site-header { position: fixed; top: 0; left: 0; right: 0; }
	body { padding-top: 56px; }
	.nav-drawer { position: fixed; top: 56px; left: 0; right: 0; max-height: calc(100vh - 56px); overflow-y: auto; z-index: 200; 	}
}

.hero { position: relative; padding: 88px 0 72px; background:
		radial-gradient(1200px 600px at 10% -10%, rgba(255,106,0,.16), transparent 60%),
		radial-gradient(1000px 520px at 90% 10%, rgba(56,189,248,.14), transparent 60%),
		linear-gradient(180deg, var(--surface), transparent);
	border-bottom: 1px solid var(--border); overflow: hidden; min-height: 84vh; display: flex; align-items: center; }
.hero::after { content: ""; position: absolute; inset: -20% -10% auto -10%; height: 40%; background:
		radial-gradient(closest-side, rgba(255,255,255,.06), transparent); pointer-events: none; transform: rotate(-2deg); }
.hero h1 { font-size: 56px; line-height: 1.08; letter-spacing: .2px; margin: 0 0 12px; }
@media (max-width: 900px) {
	.hero { padding: 48px 0 40px; min-height: 60vh; }
	.hero h1 { font-size: 32px; line-height: 1.2; }
}
@media (max-width: 480px) {
	.hero { padding: 32px 0 24px; min-height: 50vh; }
	.hero h1 { font-size: 24px; line-height: 1.3; }
}
.hero p { margin: 0 0 20px; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.eyebrow { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid var(--border); color: var(--muted); font-size: 12px; margin-bottom: 10px; }

.hero-video { padding: 0; min-height: 0; border-bottom: none; }
.hero-video .video-full {
	width: 100%;
	height: auto;
	display: block;
	max-height: 80vh;
	object-fit: cover;
	border-radius: 0;
	filter: none;
	animation: none;
	background: var(--surface);
	opacity: 0;
	transition: opacity .3s ease;
	will-change: opacity;
}
.hero.hero-video { background: transparent !important; border-bottom: 0; margin-top: 12px; }
.hero.hero-video::after { content: none !important; }
.hero.hero-ready .video-full { opacity: 1; }
.hero.hero-ready .video-full {
	-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
	mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}
.hero-center-title { position: absolute; top: 7%; left: 0; right: 0; transform: translateY(-50%); z-index: 3; pointer-events: none; display: flex; justify-content: center; margin: 0 auto; }
.hero-center-title img { display: block; width: 450px; height: 72px; margin: 0 auto; }
@media (max-width: 900px) {
	.hero-center-title { top: 8%; }
	.hero-center-title img { width: 70vw; max-width: 320px; height: auto; }
}
@media (max-width: 480px) {
	.hero-center-title { top: 6%; }
	.hero-center-title img { width: 85vw; max-width: 280px; }
}
@media (max-width: 900px) {
	.hero-video .video-full { max-height: 56vh; }
}
@media (max-width: 480px) {
	.hero-video .video-full { max-height: 45vh; 	}
}

.hero-overlay { position: absolute; left: 50%; bottom: 4%; transform: translateX(-50%); text-align: center; width: min(92%, 980px); z-index: 2; }
.hero-overlay .container { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; width: 100%; text-align: center; padding: 12px 16px; }
.hero-overlay h1 { margin: 0; font-size: 44px; line-height: 1.2; color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.55), 0 1px 0 rgba(0,0,0,.2); order: 1; max-width: 100%; }
.hero-overlay p { margin: 0; color: #3D4756; font-size: 20px; line-height: 1.6; display: block; padding: 0; border-radius: 0; background: transparent; backdrop-filter: none; text-shadow: none; order: 2; max-width: 100%; }
.hero-overlay .btn { align-self: center; order: 3; }
.hero-overlay .hero-actions { display: flex; justify-content: center; margin-top: 10px; order: 3; }
@media (max-width: 900px) {
	.hero-overlay { bottom: 2%; gap: 16px; }
	.hero-overlay .container { gap: 16px; padding: 10px 12px; }
	.hero-overlay h1 { font-size: 28px; line-height: 1.3; }
	.hero-overlay p { font-size: 16px; line-height: 1.5; }
	.hero-overlay .hero-actions { margin-top: 8px; }
}
@media (max-width: 480px) {
	.hero-overlay { bottom: 1%; gap: 12px; }
	.hero-overlay .container { gap: 12px; padding: 8px 10px; }
	.hero-overlay h1 { font-size: 22px; line-height: 1.3; }
	.hero-overlay p { font-size: 14px; line-height: 1.4; 	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-md);
	padding: var(--spacing-lg) var(--spacing-2xl);
	font-size: var(--font-size-lg);
	font-weight: 700;
	border-radius: var(--radius-xl);
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: all .2s ease;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	min-height: 52px;
}
.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
	width: 300px;
	height: 300px;
}
.btn-primary,
a.btn.btn-primary {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	color: white;
	box-shadow: var(--shadow-md);
	padding: var(--spacing-xl) var(--spacing-4xl) !important;
	min-height: 64px;
	gap: 32px !important;
	align-items: center !important;
}
.btn-primary .btn__icon,
a.btn.btn-primary .btn__icon {
	width: 48px !important;
	height: 48px !important;
	align-self: center !important;
	margin-top: 0 !important;
	margin-right: 0 !important;
}
.btn-primary .btn_text,
a.btn.btn-primary .btn_text {
	font-size: 2.5rem !important;
	font-weight: 900 !important;
	letter-spacing: 0.5px;
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}
.btn-primary:hover .btn__icon svg text,
a.btn.btn-primary:hover .btn__icon svg text {
	fill: var(--color-primary) !important;
}
.btn-primary:active {
	transform: translateY(0);
}
.btn__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}
.btn__icon svg {
	width: 100%;
	height: 100%;
}
.btn_text {
	position: relative;
	z-index: 1;
	font-size: var(--font-size-2xl);
	font-weight: 700;
}

.btn-secondary:hover { text-decoration: none; background: var(--surface); }
.badge { display: inline-block; padding: 4px 8px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font-size: 12px; }

.hero-grid { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 40px; }
@media (max-width: 900px) {
	.hero-grid { grid-template-columns: 1fr; }
}
.hero-visual { position: relative; }
.hero-visual figure { margin: 0; position: relative; }
.hero-visual img, .hero-visual video { width: 100%; height: auto; display: block; filter: drop-shadow(0 10px 24px rgba(0,0,0,.12)); animation: float 6s ease-in-out infinite; border-radius: 16px; }
.hero-visual::before,
.hero-visual::after { content: ""; position: absolute; inset: auto auto 8% 8%; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(closest-side, rgba(255,106,0,.25), transparent); filter: blur(8px); animation: pulse 5s ease-in-out infinite; }
.hero-visual::after { left: auto; right: 6%; bottom: 14%; width: 120px; height: 120px; animation-delay: 1.2s; }
@keyframes float {
	0%,100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}
@keyframes pulse {
	0%,100% { transform: scale(1); opacity: .7; }
	50% { transform: scale(1.08); opacity: 1; 	}
}

.section {
	padding: var(--spacing-4xl, 6rem) 0;
	position: relative;
}
.section-narrow {
	padding: var(--spacing-3xl, 4rem) 0;
	max-width: 100%;
	width: 100%;
}
.section-fullwidth {
	padding: 0;
	width: 100%;
	max-width: 100%;
}
.section-fullwidth .sprite-gallery {
	margin: 0;
	padding: 0;
}
@media (max-width: 900px) {
	.section { padding: 32px 0; }
}
@media (max-width: 480px) {
	.section { padding: 24px 0; }
}
.section h2 { 
	font-size: 2.25rem; 
	font-weight: 800;
	margin: 0 0 var(--spacing-2xl, 3rem); 
	text-align: center;
	color: var(--color-text);
	line-height: 1.2;
}
.section h2 .accent {
	color: var(--color-primary);
}
@media (max-width: 900px) {
	.section h2 { font-size: 24px; margin: 0 0 12px; }
}
@media (max-width: 480px) {
	.section h2 { font-size: 20px; margin: 0 0 10px; }
}
.features-title { font-size: 28px; color: inherit; }
.section h2.features-title { margin-bottom: 56px; }
.features-title .accent { font-size: 44px; color: var(--brand); margin-left: 6px; }
@media (max-width: 900px) {
	.section h2.features-title { margin-bottom: 32px; }
	.features-title .accent { font-size: 32px; }
}
@media (max-width: 480px) {
	.section h2.features-title { margin-bottom: 24px; }
	.features-title { font-size: 20px; }
	.features-title .accent { font-size: 28px; }
}
.features-banner { display: block; width: 100%; margin: 0; padding: 0; overflow: hidden; }
.section-fullwidth .features-banner {
	margin: 0;
	padding: 0;
}
.features-banner img {
	display: block;
	width: 100%;
	height: clamp(220px, 24vw, 360px);
	object-fit: cover;
	object-position: 60% 50%;
	opacity: 1;
	border-radius: 12px;
	-webkit-mask-image:
		linear-gradient(to right, transparent 0%, #000 18%, #000 98%, transparent 100%),
		linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
	-webkit-mask-composite: source-in;
	mask-image:
		linear-gradient(to right, transparent 0%, #000 18%, #000 98%, transparent 100%),
		linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
	mask-composite: intersect;
	filter: brightness(.96) contrast(1.06);
}
.section-download-banner {
	position: relative;
	padding: var(--spacing-xl) 0 var(--spacing-3xl);
	overflow: hidden;
	background: transparent;
}
.section-download-banner .container {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.section-download-banner .features-banner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	z-index: 0;
	pointer-events: none;
}
.section-download-banner .features-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
	mask-image: none;
	-webkit-mask-image: none;
	filter: none;
	opacity: 0.3;
	mix-blend-mode: normal;
}
.section-download-banner {
	position: relative;
}
.section-download-banner .download-content-overlay {
	position: relative;
	z-index: 2;
	padding: var(--spacing-3xl) 0;
	background: transparent;
	width: 100%;
}
.section-download-banner .download-content-overlay .platform-grid {
	transform: translateX(-30px);
}
.section-download-banner .download-content-overlay h2 {
	color: var(--color-text);
	text-align: center;
	margin-bottom: var(--spacing-2xl);
	text-shadow: none;
}
@media (max-width: 900px) {
	.section-download-banner {
		padding: var(--spacing-lg) 0 var(--spacing-2xl);
	}
	.section-download-banner .download-content-overlay {
		padding: var(--spacing-2xl) 0;
	}
	.features-banner img { height: clamp(140px, 28vw, 220px); object-position: 50% 50%; }
}
@media (max-width: 480px) {
	.section-download-banner {
		padding: var(--spacing-md) 0 var(--spacing-xl);
	}
	.section-download-banner .download-content-overlay {
		padding: var(--spacing-xl) 0;
	}
	.features-banner { margin-bottom: 16px; }
	.features-banner img { height: clamp(120px, 35vw, 180px); border-radius: 8px; }
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) {
	.grid-3 { grid-template-columns: 1fr; }
}
.card { border: 1px solid var(--border); border-radius: 16px; padding: 16px; background: transparent; }
.card h3 { margin-top: 0; }
.muted { color: var(--muted); }

.page-hero { position: relative; padding: 80px 0 32px; text-align: center; }
@media (max-width: 900px) {
	.page-hero { padding: 48px 0 24px; }
}
@media (max-width: 480px) {
	.page-hero { padding: 32px 0 16px; }
}
.page-hero .title { position: relative; display: inline-block; margin: 0; font-size: 42px; line-height: 1.2; color: #3D4756; }
@media (max-width: 900px) {
	.page-hero .title { font-size: 32px; }
}
@media (max-width: 480px) {
	.page-hero .title { font-size: 24px; line-height: 1.3; }
}
.page-hero .title::after { content: ""; position: absolute; left: 50%; bottom: -12px; transform: translateX(-50%); width: 64%; height: 3px; border-radius: 3px;
	background: linear-gradient(90deg, rgba(255,106,0,.85), rgba(56,189,248,.65));
	animation: shimmer 2.4s ease-in-out infinite; }
.page-hero .subtitle { margin: 16px 0 0; color: #64748b; }
@media (max-width: 900px) {
	.page-hero .subtitle { font-size: 16px; margin-top: 12px; }
}
@media (max-width: 480px) {
	.page-hero .subtitle { font-size: 14px; margin-top: 10px; }
}
.page-hero::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(700px 420px at 15% 10%, rgba(255,106,0,.08), transparent 60%),
		radial-gradient(600px 360px at 85% 20%, rgba(56,189,233,.06), transparent 60%);
	pointer-events: none;
}
.content-card { position: relative; border: 1px solid rgba(15,23,42,.08); border-radius: 16px; padding: var(--spacing-xl) var(--spacing-lg); background: transparent; transition: all .3s ease; }
.content-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(15,23,42,.08); border-color: rgba(255,106,0,.2); }
.content-card h3 { margin: 0 0 var(--spacing-md) 0; font-size: 1.5rem; font-weight: 700; color: var(--color-text); line-height: 1.3; }
.content-card p { margin: 0; font-size: 1rem; line-height: 1.7; color: var(--color-text-secondary); }
.download-actions {
	display: flex;
	gap: var(--spacing-lg);
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.download-actions .btn.btn-primary,
.download-actions a.btn.btn-primary {
	flex: 1;
	min-width: 220px;
	justify-content: center;
	padding: var(--spacing-lg) var(--spacing-3xl) !important;
	margin: 0;
}
.download-actions .btn.btn-primary .btn__icon,
.download-actions a.btn.btn-primary .btn__icon {
	width: 48px !important;
	height: 48px !important;
}
.download-actions .btn.btn-primary .btn__icon::before,
.download-actions a.btn.btn-primary .btn__icon::before {
	width: 56px !important;
	height: 56px !important;
	border-width: 3px;
}
.download-actions .btn.btn-primary .btn_text,
.download-actions a.btn.btn-primary .btn_text {
	white-space: nowrap;
}
.download-actions--row {
	margin-top: var(--spacing-lg);
}
.download-actions--row .btn {
	max-width: 320px;
}

.download-detail-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--spacing-xl);
	margin-top: var(--spacing-xl);
}
.download-detail {
	background: rgba(255,255,255,0.9);
	border: 1px solid rgba(15,23,42,0.08);
	border-radius: 20px;
	padding: var(--spacing-lg);
	box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}
.download-detail h3 {
	margin: 0 0 var(--spacing-sm);
	font-size: 1.2rem;
	color: #0f172a;
}
.download-detail p {
	margin: 4px 0;
	color: #475569;
	font-size: 0.95rem;
	line-height: 1.6;
}
.download-detail p strong {
	color: #0f172a;
}

.download-actions .btn.btn-primary:hover .btn__icon svg text,
.download-actions a.btn.btn-primary:hover .btn__icon svg text {
	fill: var(--color-primary) !important;
}

.download-info {
	margin-top: var(--spacing-2xl);
}
.download-info__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-xl);
	margin-bottom: var(--spacing-xl);
}
.download-card {
	position: relative;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	padding: var(--spacing-xl);
	box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}
.download-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(255,106,0,.12), transparent 65%);
	pointer-events: none;
}
.download-card h3 {
	margin: 4px 0 var(--spacing-lg);
}
.download-card__eyebrow {
	font-size: 0.78rem;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: var(--spacing-xs);
}
.download-steps,
.download-notes {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}
.download-steps li,
.download-notes li {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-md);
	padding: var(--spacing-sm) 0;
}
.download-steps p,
.download-notes p {
	margin: 0;
	color: #475569;
	line-height: 1.65;
}
.step-index {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: rgba(255,106,0,.12);
	color: var(--color-primary);
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
}
.note-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-primary);
	margin-top: 10px;
	flex-shrink: 0;
	box-shadow: 0 0 0 6px rgba(255,106,0,.12);
}
.download-info__faq .download-card {
	margin-top: var(--spacing-xl);
}
.download-info__faq .faq-list {
	margin-top: var(--spacing-md);
}
.download-info__faq .faq-item {
	border-radius: 14px;
	background: rgba(248,250,252,0.9);
	margin-bottom: var(--spacing-sm);
}

.feature-highlight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--spacing-xl);
}
.feature-highlight {
	background: rgba(255,255,255,0.9);
	border: 1px solid rgba(15,23,42,0.08);
	border-radius: 20px;
	padding: var(--spacing-lg);
	box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}
.feature-highlight__eyebrow {
	font-size: 0.75rem;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: var(--spacing-xs);
}
.feature-highlight h3 {
	margin: 0 0 var(--spacing-sm);
	font-size: 1.2rem;
	color: #0f172a;
}
.feature-highlight p {
	margin: 0;
	color: #475569;
}

.feature-articles {
	background: transparent;
	padding: var(--spacing-3xl) 0;
}

.feature-articles__header {
	text-align: center;
	margin-bottom: var(--spacing-3xl);
}

.feature-articles__header h2 {
	font-size: 2.25rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 var(--spacing-md);
	background: linear-gradient(135deg, #0f172a 0%, var(--color-primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.feature-articles__header p {
	font-size: 1.125rem;
	color: #64748b;
	margin: 0;
	line-height: 1.7;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.feature-articles__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: var(--spacing-xl);
	max-width: 1400px;
	margin: 0 auto;
}

.feature-article {
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(15, 23, 42, 0.06);
	border-radius: 24px;
	padding: var(--spacing-2xl);
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-article::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.feature-article:hover {
	border-color: var(--color-primary);
	box-shadow: 0 16px 50px rgba(255, 106, 0, 0.15);
	transform: translateY(-4px);
}

.feature-article:hover::before {
	transform: scaleX(1);
}

.feature-article__tag {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	color: var(--color-primary);
	margin: 0;
	text-transform: uppercase;
	font-weight: 700;
	display: inline-block;
	padding: var(--spacing-xs) var(--spacing-sm);
	background: rgba(255, 106, 0, 0.1);
	border-radius: 6px;
	width: fit-content;
}

.feature-article h3 {
	margin: 0;
	font-size: 1.5rem;
	color: #0f172a;
	line-height: 1.3;
	font-weight: 700;
}

.feature-article p {
	color: #64748b;
	margin: 0;
	line-height: 1.8;
	font-size: 0.9375rem;
}

.feature-article ul {
	margin: 0;
	padding-left: 1.5em;
	color: #64748b;
	line-height: 1.8;
	list-style: none;
}

.feature-article ul li {
	margin-bottom: var(--spacing-sm);
	position: relative;
	padding-left: var(--spacing-md);
}

.feature-article ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: 700;
}

.article-link {
	align-self: flex-start;
	margin-top: var(--spacing-xs);
	font-weight: 700;
	color: var(--color-primary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-xs);
	padding: var(--spacing-sm) var(--spacing-md);
	border-radius: 8px;
	background: rgba(255, 106, 0, 0.08);
	transition: all 0.3s ease;
}

.article-link::after {
	content: "→";
	font-size: 1.2em;
	transition: transform 0.3s ease;
}

.article-link:hover {
	color: var(--color-primary-dark);
	background: rgba(255, 106, 0, 0.15);
	transform: translateX(4px);
}

.article-link:hover::after {
	transform: translateX(4px);
}

@media (max-width: 768px) {
	.feature-articles__header h2 {
		font-size: 1.875rem;
	}
	
	.feature-articles__grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
	
	.feature-article {
		padding: var(--spacing-xl);
	}
	
	.feature-article h3 {
		font-size: 1.25rem;
	}
}

.article-meta {
	margin-top: var(--spacing-sm);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--spacing-md);
	color: #64748b;
	font-size: 0.95rem;
}
.article-section {
	background: transparent;
	padding: var(--spacing-3xl) 0;
	position: relative;
}

.article-section .container {
	position: relative;
}

.article-section .prose {
	max-width: 860px;
	margin: 0 auto;
	padding: var(--spacing-2xl) var(--spacing-xl);
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	border: none;
}

.prose-feature {
	font-size: 1.0625rem;
	line-height: 1.85;
	color: #334155;
}

.prose-feature h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #0f172a;
	margin: var(--spacing-3xl) 0 var(--spacing-lg);
	line-height: 1.4;
	padding: var(--spacing-md) 0 var(--spacing-md) var(--spacing-lg);
	border-left: 4px solid var(--color-primary);
	background: linear-gradient(90deg, rgba(255, 106, 0, 0.05) 0%, transparent 100%);
	border-radius: 8px;
	position: relative;
}

.prose-feature h2:first-of-type {
	margin-top: 0;
}

.prose-feature h3 {
	font-size: 1.375rem;
	font-weight: 600;
	color: #1e293b;
	margin: var(--spacing-2xl) 0 var(--spacing-md);
	line-height: 1.5;
	padding-left: var(--spacing-md);
	position: relative;
}

.prose-feature h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 20px;
	background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	border-radius: 2px;
}

.prose-feature p {
	margin: 0 0 var(--spacing-lg);
	line-height: 1.85;
	color: #475569;
}

.prose-feature ul,
.prose-feature ol {
	margin: var(--spacing-lg) 0;
	padding-left: 1.75rem;
	line-height: 1.85;
	background: rgba(255, 255, 255, 0.3);
	padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) 2.5rem;
	border-radius: 12px;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.prose-feature li {
	margin: var(--spacing-sm) 0;
	color: #475569;
	line-height: 1.85;
	position: relative;
	padding-left: var(--spacing-sm);
}

.prose-feature li strong {
	color: #0f172a;
	font-weight: 600;
}

.prose-feature a {
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.prose-feature a:hover {
	color: var(--color-primary-dark);
	border-bottom-color: var(--color-primary);
}

@media (max-width: 768px) {
	.article-section {
		padding: var(--spacing-2xl) 0;
	}
	
	.article-section .prose {
		padding: var(--spacing-lg) var(--spacing-md);
		border-radius: 16px;
	}
	
	.prose-feature {
		font-size: 1rem;
		line-height: 1.8;
	}
	
	.prose-feature h2 {
		font-size: 1.5rem;
		margin: var(--spacing-2xl) 0 var(--spacing-md);
	}
	
	.prose-feature h3 {
		font-size: 1.25rem;
	}
	
	.prose-feature p,
	.prose-feature li {
		line-height: 1.8;
	}
	
	.news-item {
		padding: var(--spacing-lg);
	}
	
	.faq dt {
		padding: var(--spacing-sm) var(--spacing-md);
		font-size: 1rem;
	}
	
	.faq dd {
		padding: var(--spacing-sm) var(--spacing-md);
		margin-left: 0;
	}
}

.prose-feature img,
.prose-feature .article-image {
	width: 75%;
	max-width: 680px;
	height: auto;
	border-radius: 16px;
	margin: var(--spacing-2xl) auto;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
	display: block;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prose-feature img:hover,
.prose-feature .article-image:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

@media (max-width: 768px) {
	.prose-feature img,
	.prose-feature .article-image {
		width: 90%;
		max-width: 100%;
		border-radius: 12px;
		margin: var(--spacing-xl) auto;
	}
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-2xl);
	margin: var(--spacing-2xl) auto 0;
	max-width: 1400px;
	width: 100%;
	justify-items: stretch;
	align-items: stretch;
	transform: translateX(-30px);
}
.platform-card {
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 20px;
	padding: var(--spacing-2xl);
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
	min-height: 420px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	box-sizing: border-box;
}
.platform-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16);
}
.platform-card__head {
	display: flex;
	gap: var(--spacing-lg);
	align-items: flex-start;
	padding-bottom: var(--spacing-md);
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.platform-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: rgba(255, 106, 0, 0.1);
	flex-shrink: 0;
	background-size: 55%;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.platform-icon.win { background-image: url('/assets/img/win.svg'); }
.platform-icon.mac { background-image: url('/assets/img/mac.svg'); }
.platform-icon.mobile { background-image: url('/assets/img/Android.svg'); }
.platform-card__head > div {
	flex: 1;
}
.platform-eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin: 0 0 var(--spacing-xs) 0;
	font-weight: 600;
}
.platform-card h3 {
	margin: 0;
	font-size: 1.5rem;
	color: var(--color-text);
	font-weight: 700;
	line-height: 1.3;
}
.platform-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
	color: var(--color-text-secondary);
	line-height: 1.7;
	flex: 1;
}
.platform-card ul li {
	padding-left: var(--spacing-md);
	position: relative;
}
.platform-card ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-primary);
	opacity: 0.6;
}
.platform-card ul strong {
	color: var(--color-text);
	font-weight: 600;
}
.platform-card .download-btn {
	margin-top: auto;
	padding-top: var(--spacing-md);
}
.platform-card .download-btn .btn {
	width: 100%;
	justify-content: center;
}
@media (max-width: 1200px) {
	.platform-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--spacing-xl);
	}
}
@media (max-width: 900px) {
	.platform-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-xl);
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
		transform: none;
	}
	.platform-card {
		min-height: auto;
	}
}
@media (max-width: 900px) {
	.content-card .btn.btn-primary {
		padding: var(--spacing-sm) var(--spacing-3xl) !important;
		min-height: 44px !important;
		gap: 18px !important;
		width: 100%;
	}
	.content-card .btn.btn-primary .btn__icon {
		width: 26px !important;
		height: 26px !important;
	}
	.content-card .btn.btn-primary .btn__icon::before {
		width: 34px !important;
		height: 34px !important;
	}
	.content-card .btn.btn-primary .btn_text {
		font-size: 1.625rem !important;
	}
	.content-card .btn.btn-primary svg {
		width: 26px !important;
		height: 26px !important;
	}
	.content-card .btn.btn-primary svg text {
		font-size: 18px !important;
	}
}
@media (max-width: 480px) {
	.content-card .btn.btn-primary {
		padding: var(--spacing-sm) var(--spacing-2xl) !important;
		min-height: 40px !important;
		gap: 18px !important;
		width: 100%;
		align-items: center !important;
		justify-content: center !important;
	}
	.content-card .btn.btn-primary .btn__icon {
		width: 24px !important;
		height: 24px !important;
	}
	.content-card .btn.btn-primary .btn__icon::before {
		width: 30px !important;
		height: 30px !important;
		border-width: 1.5px;
	}
	.content-card .btn.btn-primary .btn_text {
		font-size: 1.5rem !important;
	}
	.content-card .btn.btn-primary svg {
		width: 24px !important;
		height: 24px !important;
	}
	.content-card .btn.btn-primary svg text {
		font-size: 16px !important;
	}
}
.content-grid { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
	gap: var(--spacing-xl, 2rem); 
}
@media (max-width: 900px) { 
	.content-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
	.content-grid { gap: 12px; }
	.content-card { padding: var(--spacing-lg); }
	.content-card h3 { font-size: 1.25rem; margin-bottom: var(--spacing-sm); }
	.content-card p { font-size: 0.9375rem; line-height: 1.6; }
}
.content-grid .content-card.fade-in { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.content-grid .content-card.fade-in.in { opacity: 1; transform: none; }
.content-grid .content-card:nth-child(1) { transition-delay: .02s; }
.content-grid .content-card:nth-child(2) { transition-delay: .08s; }
.content-grid .content-card:nth-child(3) { transition-delay: .14s; }
.content-grid .content-card:nth-child(4) { transition-delay: .20s; }
.content-grid .content-card:nth-child(5) { transition-delay: .26s; }
.content-grid .content-card:nth-child(6) { transition-delay: .32s; }

@keyframes shimmer {
	0%,100% { filter: saturate(1) brightness(1); opacity: .85; }
	50% { filter: saturate(1.1) brightness(1.08); opacity: 1; }
}

.start-grid { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
	gap: var(--spacing-xl);
	align-items: stretch;
}
@media (max-width: 900px) {
	.start-grid { grid-template-columns: 1fr; gap: var(--spacing-lg); }
}
@media (max-width: 480px) {
	.start-grid { gap: var(--spacing-md); }
	.start-card { padding: var(--spacing-xl); }
}
.start-card {
	position: relative; 
	padding: var(--spacing-2xl); 
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
	min-height: 320px;
}
.start-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 100, 49, 0.12), rgba(33, 150, 243, 0.08));
	opacity: 0;
	transition: opacity .3s ease;
	pointer-events: none;
}
.start-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
	border-color: rgba(255, 100, 49, 0.35);
}
.start-card:hover::before {
	opacity: 1;
}
.start-card__header {
	display: flex;
	align-items: center;
	gap: var(--spacing-lg);
}
.start-icon {
	width: 88px;
	height: 88px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(15, 23, 42, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}
.start-icon img {
	width: 60%;
	height: 60%;
	object-fit: contain;
}
.start-meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.start-card h3 {
	margin: 0;
	font-size: 1.5rem;
	color: var(--color-dark, #0f172a);
}
.start-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
	background: rgba(255, 100, 49, 0.12);
}
.start-desc {
	margin: 0;
	font-size: 1rem;
	color: rgba(15, 23, 42, 0.82);
	line-height: 1.7;
}
.start-specs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.start-specs li {
	position: relative;
	padding-left: 18px;
	color: rgba(15, 23, 42, 0.85);
	font-size: 0.95rem;
}
.start-specs li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-primary);
	box-shadow: 0 0 6px rgba(255, 100, 49, 0.5);
}
.start-cta { 
	margin-top: auto; 
	display: flex;
	justify-content: center;
}
.start-cta .btn { 
	width: auto; 
	min-width: 260px;
	padding: 0.45rem 3rem;
	min-height: 42px;
	gap: 10px;
	justify-content: center; 
	border-radius: 999px;
}
.start-cta .btn .btn__icon {
	width: 34px;
	height: 34px;
}
.start-cta .btn .btn__icon::before {
	width: 42px;
	height: 42px;
}
.start-cta .btn .btn_text {
	font-size: 1rem;
}
.feature-list { 
	list-style: none; 
	padding: 0; 
	margin: var(--spacing-3xl) auto 0;
	max-width: 1400px;
	width: 100%;
	display: grid; 
	grid-template-columns: repeat(4, 1fr); 
	gap: var(--spacing-xl);
	counter-reset: feature-counter;
}
.feature-list { counter-reset: feat; }
.feature-list li { 
	position: relative; 
	padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-xl) 72px; 
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(15, 23, 42, 0.08);
	color: var(--color-text);
	transition: all .3s ease;
	opacity: 0; 
	transform: translateY(6px) scale(.99); 
	animation: featureIn .55s ease forwards;
}
.feature-list li:hover {
	background: rgba(255, 255, 255, 0.6);
	border-color: rgba(255, 106, 0, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}
.feature-list li:nth-child(3n+2) { margin-top: 0; }
.feature-list li:nth-child(3n) { margin-top: 0; }
.feature-list li::before { 
	counter-increment: feat; 
	content: counter(feat, decimal);
	position: absolute; 
	left: 20px; 
	top: 50%; 
	transform: translateY(-50%);
	width: 40px; 
	height: 40px; 
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800; 
	font-size: 1.125rem;
	color: #fff; 
	letter-spacing: .2px;
	background: linear-gradient(135deg, var(--accent, #ff6a00), var(--accent2, #ff9f4d));
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all .3s ease;
}
.feature-list li:hover::before {
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.feature-list li:hover { 
	transform: none; 
	box-shadow: none;
	border-color: transparent;
}
.feature-list li:hover::after { display: none; }
.feature-list li h3 { margin: 0 0 var(--spacing-md) 0; font-size: 1.375rem; font-weight: 700; color: var(--color-text); line-height: 1.3; }
.feature-list li p { margin: 0; font-size: 1rem; line-height: 1.7; color: var(--color-text-secondary); }
.feature-list li:nth-child(1){ --accent:#ff6a00; --accent2:#ff9f4d; animation-delay: .00s;}
.feature-list li:nth-child(2){ --accent:#0ea5e9; --accent2:#7dd3fc; animation-delay: .05s;}
.feature-list li:nth-child(3){ --accent:#8b5cf6; --accent2:#c4b5fd; animation-delay: .10s;}
.feature-list li:nth-child(4){ --accent:#10b981; --accent2:#6ee7b7; animation-delay: .15s;}
.feature-list li:nth-child(5){ --accent:#f43f5e; --accent2:#fda4af; animation-delay: .20s;}
.feature-list li:nth-child(6){ --accent:#14b8a6; --accent2:#5eead4; animation-delay: .25s;}
.feature-list li:nth-child(7){ --accent:#f59e0b; --accent2:#fbbf24; animation-delay: .30s;}
.feature-list li:nth-child(8){ --accent:#ec4899; --accent2:#f472b6; animation-delay: .35s;}
@keyframes featureIn { from{ opacity:0; transform: translateY(6px) scale(.99);} to{ opacity:1; transform: none;} }
@media (max-width: 1200px){
	.feature-list { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-lg); }
	.feature-list li { margin-top: 0; padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) 64px; }
	.feature-list li::before { left: 18px; width: 36px; height: 36px; font-size: 1rem; }
}
@media (max-width: 900px){
	.feature-list { grid-template-columns: 1fr; gap: var(--spacing-md); }
	.feature-list li { margin-top: 0; padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) 56px; }
	.feature-list li::before { 
		width: 32px; 
		height: 32px; 
		left: 12px; 
		font-size: 14px; 
		top: 50%;
		transform: translateY(-50%);
	}
	.feature-list li h3 { font-size: 1.125rem; }
	.feature-list li p { font-size: 0.9375rem; }
}
@media (max-width: 480px) {
	.feature-list { gap: var(--spacing-sm); }
	.feature-list li { padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) 48px; }
	.feature-list li::before { 
		width: 28px; 
		height: 28px; 
		left: 10px; 
		font-size: 12px; 
		top: 50%;
		transform: translateY(-50%);
	}
	.feature-list li h3 { font-size: 1rem; }
	.feature-list li p { font-size: 0.875rem; }
}

.logo-cloud { padding: 20px 0 8px; }
.logo-cloud .logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.logo-cloud img { width: 100%; max-width: 140px; height: auto; display: block; margin: 0 auto; filter: grayscale(1) opacity(.7); transition: filter .2s ease; }
.logo-cloud img:hover { filter: grayscale(0) opacity(1); }
@media (max-width: 900px) {
	.logo-cloud .logos { grid-template-columns: repeat(3, 1fr); }
}

.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: transparent; }
.stats .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-xl); padding: var(--spacing-3xl) 0; }
.stat { 
	text-align: center; 
	padding: var(--spacing-xl); 
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
}
.stat-number { font-size: 3rem; font-weight: 800; color: var(--color-text); }
.stat-label { color: var(--color-primary); font-size: 1.125rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.stat-desc { margin: 0; color: rgba(15, 23, 42, 0.75); font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 900px) {
	.stats .row { grid-template-columns: 1fr; }
}

.keyword-list { width: 100%; max-width: 1400px; height: auto; margin: 0 auto; padding: 0; }
.keyword-list ul { 
	list-style: none; 
	margin: 0; 
	padding: 0; 
	display: grid; 
	grid-template-columns: repeat(6, 1fr); 
	gap: var(--spacing-lg);
}
.keyword-item { 
	position: relative; 
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--color-text);
	padding: var(--spacing-lg);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(15, 23, 42, 0.08);
	transition: all .3s ease;
	overflow: visible;
	height: auto;
	min-height: 180px;
}
.keyword-item::before {
	display: none;
}
.keyword-item .key { 
	position: relative;
	width: 100px; 
	height: 100px; 
	border-radius: var(--radius-full); 
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(15, 23, 42, 0.1);
	margin-bottom: var(--spacing-md);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
	transition: all .3s ease;
}
.keyword-item .key-h { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px;
	-webkit-mask-image: url('/assets/img/key-h.png'); mask-image: url('/assets/img/key-h.png');
	-webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
	-webkit-mask-size: 400% 100%; mask-size: 400% 100%;
	-webkit-mask-position: 0% 50%; mask-position: 0% 50%;
	background-color: var(--brand);
	filter: drop-shadow(0 2px 6px rgba(0,0,0,.1));
	transition: transform .3s ease, background-color .3s ease;
}
.keyword-item.no1 .key-h { -webkit-mask-position: 0% 50%; mask-position: 0% 50%; }
.keyword-item.no2 .key-h { -webkit-mask-position: 33.3333% 50%; mask-position: 33.3333% 50%; }
.keyword-item.no3 .key-h { -webkit-mask-position: 66.6667% 50%; mask-position: 66.6667% 50%; }
.keyword-item.no4 .key-h { -webkit-mask-position: 100% 50%; mask-position: 100% 50%; }
.keyword-item .text { 
	position: relative;
	margin: 0; 
	font-weight: 600; 
	color: var(--color-text); 
	font-size: 1rem;
	text-align: center;
	z-index: 1;
}
.keyword-item:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 106, 0, 0.3);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
	background: rgba(255, 255, 255, 0.6);
}
.keyword-item:hover .key { 
	transform: scale(1.05);
	border-color: rgba(255, 106, 0, 0.4);
	box-shadow: 0 6px 16px rgba(255, 106, 0, 0.15);
}
.keyword-item:hover .key-h { 
	transform: translate(-50%, -50%) scale(1.1);
	background-color: var(--color-primary);
}
.keyword-item:hover .text { 
	color: var(--color-text);
}
.keyword-list .active .key { outline: 2px solid #FD6431; outline-offset: -2px; }
.clear { clear: both; }
.keyword-item.active {
	border-color: rgba(255, 106, 0, 0.4);
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}
.keyword-item.active .key {
	border-color: rgba(255, 106, 0, 0.4);
	box-shadow: 0 6px 16px rgba(255, 106, 0, 0.15);
}
.keyword-item.active .key-h {
	background-color: var(--color-primary);
}
.keyword-item.active .text {
	color: var(--color-text);
}
@media (max-width: 1400px) {
	.keyword-list ul { grid-template-columns: repeat(6, 1fr); gap: var(--spacing-md); }
}
@media (max-width: 1200px) {
	.keyword-list ul { grid-template-columns: repeat(3, 1fr); gap: var(--spacing-md); }
}
@media (max-width: 900px) {
	.keyword-list { width: 100%; height: auto; padding: 0; }
	.keyword-list ul { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-md); }
	.keyword-item { min-height: 160px; padding: var(--spacing-md); }
	.keyword-item .key { width: 90px; height: 90px; }
	.keyword-item .key-h { width: 50px; height: 50px; }
	.keyword-item .text { font-size: 0.9375rem; }
}
@media (max-width: 520px) {
	.keyword-list { width: 100%; padding: 0 8px; }
	.keyword-list ul { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.keyword-item { height: 140px; }
	.keyword-item .key { width: 100px; height: 100px; }
	.keyword-item .key-h { top: 36px; width: 48px; height: 48px; }
	.keyword-item .text { top: 96px; font-size: 14px; }
}
@media (max-width: 360px) {
	.keyword-list ul { grid-template-columns: 1fr; gap: 10px; }
	.keyword-item { height: 130px; }
	.keyword-item .key { width: 90px; height: 90px; }
	.keyword-item .key-h { top: 32px; width: 44px; height: 44px; }
	.keyword-item .text { top: 88px; font-size: 13px; }
}

.img-text { display: block; width: 100%; max-width: 100%; height: auto; margin: 0 auto; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) {
	.gallery { grid-template-columns: 1fr; }
}
.screenshot { border: 1px solid var(--border); border-radius: 16px; background: var(--bg); overflow: hidden; }
.screenshot img { display: block; width: 100%; height: auto; }
.gallery .img-text { grid-column: 1 / -1; display: block; width: 100%; height: auto; border: 1px solid var(--border); border-radius: 16px; background: var(--bg); }

.full-bleed { width: calc(100vw - 240px); margin-left: calc(50% - 50vw + 120px); margin-right: calc(50% - 50vw + 120px); }
.full-bleed .img-text { width: 100%; max-width: none; height: auto; display: block; border: 0; border-radius: 16px; }
@media (max-width: 1200px) {
	.full-bleed { width: calc(100vw - 48px); margin-left: calc(50% - 50vw + 24px); margin-right: calc(50% - 50vw + 24px); }
}
@media (max-width: 900px) {
	.full-bleed { width: calc(100vw - 24px); margin-left: calc(50% - 50vw + 12px); margin-right: calc(50% - 50vw + 12px); }
}
@media (max-width: 480px) {
	.full-bleed { width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; padding: 0 12px; }
}

.carousel-container {
	width: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	position: relative;
}
.carousel-track {
	display: flex;
	width: 200%;
	animation: carouselScroll 30s linear infinite;
}
.carousel-item {
	flex: 0 0 50%;
	height: 300px;
	background-image: url('/assets/img/carousel_be2bad1.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
@keyframes carouselScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
@media (max-width: 1200px) {
	.carousel-item { height: 250px; }
}
@media (max-width: 900px) {
	.carousel-item { height: 200px; }
}
@media (max-width: 480px) {
	.carousel-item { height: 150px; }
}
.mt-features { margin-top: 88px; }
@media (max-width: 900px) {
	.mt-features { margin-top: 48px; }
}
.mb-pictop { margin-bottom: 24px; }
@media (max-width: 900px) {
	.mb-pictop { margin-bottom: 16px; }
}
.pictop-title { display: flex; justify-content: center; margin: 0 auto 12px; }
.pictop-title img { width: min(280px, 80%); height: auto; display: block; }

.bottom-container { 
	width: 100%; 
	background: transparent;
	border-radius: var(--radius-2xl);
	padding: var(--spacing-3xl);
	text-align: center;
	margin: var(--spacing-3xl) 0 var(--spacing-2xl);
	color: var(--color-text);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-md);
}
.bottom-container .title { 
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-xl);
	margin-bottom: var(--spacing-2xl);
	flex-wrap: wrap;
}
.bottom-container .title .logo { 
	width: 120px; 
	height: 120px; 
	object-fit: contain;
}
.bottom-container .title .text { 
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: left;
}
.bottom-container .title .text h2 { 
	margin: 0; 
	font-size: clamp(2rem, 3vw, 2.75rem);
	line-height: 1.1;
	font-weight: 800; 
	color: var(--color-text);
}
.bottom-container .title .text .description { 
	margin: 0; 
	color: var(--color-text-secondary); 
	font-size: 1.2rem;
	line-height: 1.6;
	font-weight: 500; 
}
.bottom-container .title .text .description + .description {
	font-size: 1rem;
	color: rgba(15, 23, 42, 0.75);
	max-width: 520px;
}
.bottom-container .star { 
	display: flex; 
	align-items: center; 
	gap: var(--spacing-md); 
	justify-content: center;
	margin-bottom: var(--spacing-lg);
}
.bottom-container .star .text { 
	font-size: var(--font-size-xl);
	line-height: 1.4;
	font-weight: 600;
	color: var(--color-text);
}
.bottom-container .star .img { 
	height: 40px; 
	width: auto;
}
.bottom-container > .text { 
	font-size: var(--font-size-base); 
	color: var(--color-text-secondary);
}
.copyright-bar {
	text-align: center;
	padding: var(--spacing-md) 0 var(--spacing-xl);
	color: var(--color-text-secondary);
	font-size: 0.95rem;
}
@media (max-width: 900px) {
	.bottom-container { height: auto; padding: 24px 0; }
	.bottom-container .title .logo, .bottom-container .title .text { float: none; margin: 0 auto; display: block; text-align: center; }
	.bottom-container .title .logo { margin-bottom: 8px; width: 80px; height: 80px; }
	.bottom-container .title .text h2 { font-size: 24px; line-height: 32px; }
	.bottom-container .title .text .description { font-size: 16px; line-height: 24px; margin-bottom: 16px; }
	.bottom-container .star .text { font-size: 16px; line-height: 22px; }
	.bottom-container .star .img { width: 160px; }
	.bottom-container .text { font-size: 13px; }
}
@media (max-width: 480px) {
	.bottom-container { padding: 20px 0; }
	.bottom-container .title .logo { width: 60px; height: 60px; margin-bottom: 12px; }
	.bottom-container .title .text h2 { font-size: 20px; line-height: 28px; }
	.bottom-container .title .text .description { font-size: 14px; line-height: 20px; margin-bottom: 12px; }
	.bottom-container .star { flex-direction: column; gap: 8px; }
	.bottom-container .star .text { font-size: 14px; }
	.bottom-container .star .img { width: 140px; }
	.bottom-container .text { font-size: 12px; }
}
.site-footer { 
	background: var(--color-bg-secondary);
	border-top: 1px solid var(--color-border);
	padding: var(--spacing-4xl) 0 var(--spacing-xl);
	margin-top: var(--spacing-4xl);
}
.footer-grid { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
	gap: var(--spacing-2xl);
	margin-bottom: var(--spacing-2xl);
}
.footer-links h3 {
	font-size: var(--font-size-lg);
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	color: var(--color-text);
}
.footer-links ul {
	list-style: none;
}
.footer-links a {
	display: block;
	padding: var(--spacing-sm) 0;
	color: var(--color-text-secondary);
	text-decoration: none;
	transition: color .2s ease;
}
.footer-links a:hover {
	color: var(--color-primary);
}
@media (max-width: 900px) {
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px 0; }
	.footer-links h3 { font-size: 16px; margin-bottom: 8px; }
	.footer-links ul { gap: 4px; }
	.footer-links a { font-size: 14px; }
}
@media (max-width: 480px) {
	.footer-grid { grid-template-columns: 1fr; gap: 16px; padding: 16px 0; }
	.footer-links h3 { font-size: 15px; }
	.footer-links a { font-size: 13px; }
	.footer-bottom { padding: 12px 0; font-size: 12px; }
}
.footer-links ul { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 6px; }
.footer-bottom { 
	text-align: center;
	padding-top: var(--spacing-xl);
	border-top: 1px solid var(--color-border);
	color: var(--color-text-muted);
	font-size: var(--font-size-sm);
}

.page-header { padding: 32px 0; border-bottom: 1px solid var(--border); background: var(--surface); }
.prose { max-width: 800px; padding: 24px 0; }
@media (max-width: 900px) {
	.prose { padding: 20px 0; }
}
@media (max-width: 480px) {
	.prose { padding: 16px 0; }
}
.prose h1 { margin: 0 0 12px; }
@media (max-width: 480px) {
	.prose h1 { font-size: 20px; }
	.prose h2 { font-size: 18px; margin: 20px 0 8px; }
	.prose h3 { font-size: 16px; margin: 16px 0 6px; }
	.prose p { font-size: 14px; line-height: 1.6; }
	.prose ul, .prose ol { margin-left: 16px; }
	.prose li { font-size: 14px; }
}
.faq dl { margin: 0; }
.faq dt { 
	font-weight: 700; 
	font-size: 1.125rem;
	color: #0f172a;
	margin: var(--spacing-xl) 0 var(--spacing-sm) 0;
	padding: var(--spacing-md) var(--spacing-lg);
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-left: 4px solid var(--color-primary);
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
	transition: all 0.3s ease;
	cursor: pointer;
}

.faq dt:hover {
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
	transform: translateX(4px);
}

.faq dt:first-child {
	margin-top: 0;
}
.faq dd { 
	margin: 0 0 var(--spacing-lg) 0; 
	color: #475569;
	padding: var(--spacing-md) var(--spacing-lg);
	line-height: 1.8;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 8px;
	margin-left: var(--spacing-md);
}

.prose h2 { font-size: 22px; margin: 24px 0 10px; line-height: 1.35; }
.prose h3 { font-size: 18px; margin: 18px 0 8px; line-height: 1.4; }
.prose p { margin: 8px 0 0; }
.prose ul, .prose ol { margin: 8px 0 0 20px; padding: 0; }
.prose li { margin: 6px 0; }
.prose a { color: var(--link); }

.news-item {
	margin-bottom: var(--spacing-2xl);
	padding: var(--spacing-xl);
	background: rgba(255, 255, 255, 0.5);
	border-radius: 16px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	transition: all 0.3s ease;
}

.news-item:hover {
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.news-item:last-child {
	margin-bottom: 0;
}

.news-item h3 {
	margin: 0 0 var(--spacing-sm);
	font-size: 1.375rem;
	font-weight: 600;
	color: #0f172a;
}

.news-date {
	color: #64748b;
	font-size: 0.9375rem;
	margin: 0 0 var(--spacing-md);
	font-weight: 500;
}

.news-item p {
	margin: 0 0 var(--spacing-md);
}

.news-item a {
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.news-item a:hover {
	color: var(--color-primary-dark);
}

.policy-toc { max-width: 980px; margin: 0 auto 16px; }
.policy-toc .toc-box {
	display: grid; gap: 10px; padding: 12px 14px; border-radius: 12px;
	border: 1px solid var(--border);
	background: rgba(255,255,255,.32);
	-webkit-backdrop-filter: blur(6px) saturate(1.1); backdrop-filter: blur(6px) saturate(1.1);
}
.policy-toc .toc-box a { display: inline-block; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--border); text-decoration: none; color: inherit; }
.policy-toc .toc-box a:hover { border-color: rgba(255,106,0,.4); background: rgba(255,106,0,.06); text-decoration: none; }
.policy-toc .toc-row { display: flex; flex-wrap: wrap; gap: 8px; }

.callout { margin: 12px 0; padding: 12px 14px; border: 1px solid rgba(255,106,0,.35); border-radius: 12px; background: rgba(255,106,0,.06); }
.callout strong { color: var(--brand); }

.faq-list { max-width: 1080px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: transparent; padding: 0; overflow: hidden; transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease; }
.faq-item:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(15,23,42,.12), 0 2px 8px rgba(255,106,0,.08); border-color: rgba(255,106,0,.35); }
.faq-item summary { cursor: pointer; list-style: none; padding: 14px 18px 14px 48px; margin: 0; font-weight: 700; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, #ffb27a, #ff6a00); box-shadow: 0 4px 10px rgba(245,83,41,.25); }
.faq-item summary::after { content: ""; position: absolute; right: 16px; top: 50%; transform: translateY(-50%) rotate(0deg); width: 10px; height: 10px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); border-radius: 1px; transition: transform .18s ease; transform-origin: 50% 50%; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .content { padding: 0 18px 16px 18px; color: var(--muted); }
@media (max-width: 480px) {
	.faq-item summary { padding: 12px 16px 12px 44px; font-size: 15px; }
	.faq-item summary::before { width: 16px; height: 16px; left: 14px; }
	.faq-item summary::after { width: 8px; height: 8px; right: 14px; }
	.faq-item .content { padding: 0 16px 12px 16px; font-size: 14px; line-height: 1.6; }
}
.faq-group { margin: 18px 0 8px; }
.faq-group h2 { font-size: 20px; margin: 0 0 10px; text-align: left; }

.fade-in { opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.in { opacity: 1; transform: none; }

.cta-band { margin: 32px 0 0; padding: 28px 16px; background:
	linear-gradient(90deg, rgba(255,106,0,.12), rgba(56,189,248,.12));
	border: 1px solid var(--border); border-radius: 16px; }
.cta-band .inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cta-band h3 { margin: 0; font-size: 20px; }
@media (max-width: 900px) {
	.cta-band { padding: 20px 12px; margin: 24px 0 0; }
	.cta-band .inner { flex-direction: column; align-items: flex-start; gap: 12px; }
	.cta-band h3 { font-size: 18px; }
}
@media (max-width: 480px) {
	.cta-band { padding: 16px 10px; margin: 20px 0 0; }
	.cta-band h3 { font-size: 16px; }
	.cta-band .btn { width: 100%; padding: 14px 20px; font-size: 16px; }
}

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	transition: all 0.2s ease;
	white-space: nowrap;
	color: #fff;
	background: var(--accent-color);
	box-shadow: 0 8px 20px rgba(245, 83, 41, .35);
}
a.btn.btn-primary,
a.btn.btn-primary.btn,
.btn.btn-primary,
.btn.btn-primary.btn,
.banner .btn.btn-primary,
.banner a.btn.btn-primary,
.hero-overlay .btn.btn-primary,
.hero-overlay a.btn.btn-primary,
.hero-actions .btn.btn-primary,
.hero-actions a.btn.btn-primary,
.hero .btn.btn-primary,
.hero a.btn.btn-primary {
	gap: 32px !important;
}
@media (max-width: 480px) {
	.btn { padding: var(--spacing-md) var(--spacing-xl); font-size: var(--font-size-base); gap: var(--spacing-sm); min-height: 48px; }
	.btn__icon { width: 24px; height: 24px; }
	.btn_text { font-size: var(--font-size-lg); }
	.btn-primary { padding: var(--spacing-md) var(--spacing-2xl); }
	.btn-primary .btn__icon { width: 40px; height: 40px; }
	.btn-primary .btn__icon::before { width: 48px !important; height: 48px !important; border-width: 2.5px; }
	.btn-primary .btn_text { font-size: 1.5rem; font-weight: 900; }
	.btn, .nav-toggle, .site-nav a, .nav-drawer a { 
		touch-action: manipulation; 
		-webkit-tap-highlight-color: rgba(255,106,0,.1);
	}
}

.btn__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.btn__icon::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: transparent;
	border: 2px solid #ffffff;
	box-shadow: none;
	transition: all .2s ease;
}
.btn-primary .btn__icon::before,
a.btn.btn-primary .btn__icon::before,
.hero-actions .btn.btn-primary .btn__icon::before,
.hero-overlay .btn.btn-primary .btn__icon::before,
.banner .btn.btn-primary .btn__icon::before {
	width: 52px !important;
	height: 52px !important;
	border-width: 3px;
}

.btn__icon svg {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.btn_text {
	padding-left: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

.btn:hover {
	text-decoration: none;
	transform: translateY(-2px);
	filter: brightness(1.05);
	box-shadow: 0 12px 28px rgba(245, 83, 41, .45);
}
.btn:hover .btn__icon::before {
	background: #ffffff;
	border-color: #ffffff;
	box-shadow: 0 6px 14px rgba(0,0,0,.15);
}
.btn:hover .btn__icon svg polygon {
	fill: var(--accent-color);
}
.btn-primary:hover .btn__icon svg text,
a.btn.btn-primary:hover .btn__icon svg text {
	fill: var(--color-primary) !important;
}
.btn:active {
	transform: translateY(0);
	filter: brightness(.98);
	box-shadow: 0 6px 14px rgba(245, 83, 41, .35);
}

.banner .btn:not(.btn-primary),
.hero-overlay .btn:not(.btn-primary) {
	font-size: var(--font-size-xl);
	padding: var(--spacing-xl) var(--spacing-3xl);
	gap: var(--spacing-md);
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	background-size: 200% auto;
	min-height: 56px;
}
.banner .btn.btn-primary,
.hero-overlay .btn.btn-primary {
	padding: var(--spacing-xl) var(--spacing-4xl) !important;
	min-height: 64px !important;
}
.banner .btn.btn-primary .btn__icon,
.hero-overlay .btn.btn-primary .btn__icon {
	width: 48px !important;
	height: 48px !important;
}
.banner .btn.btn-primary .btn__icon::before,
.hero-overlay .btn.btn-primary .btn__icon::before {
	width: 52px !important;
	height: 52px !important;
	border-width: 3px;
}
.banner .btn.btn-primary:hover .btn__icon svg text,
.hero-overlay .btn.btn-primary:hover .btn__icon svg text {
	fill: var(--color-primary) !important;
}
.banner .btn.btn-primary,
.hero-overlay .btn.btn-primary {
	gap: 32px !important;
	align-items: center !important;
}
.banner .btn.btn-primary .btn__icon,
.hero-overlay .btn.btn-primary .btn__icon {
	align-self: center !important;
	margin-top: 0 !important;
	margin-right: 0 !important;
}
.banner .btn.btn-primary .btn_text,
.hero-overlay .btn.btn-primary .btn_text {
	font-size: 2.5rem !important;
	font-weight: 900 !important;
	letter-spacing: 0.5px;
}
.banner .btn_text:not(.btn-primary .btn_text),
.hero-overlay .btn_text:not(.btn-primary .btn_text) {
	font-size: var(--font-size-2xl);
	font-weight: 700;
}
.banner .btn__icon:not(.btn-primary .btn__icon),
.hero-overlay .btn__icon:not(.btn-primary .btn__icon) {
	width: 32px;
	height: 32px;
}

.banner .btn:hover {
	background-position: right center;
}

.banner .btn_text {
	font-size: 30px;
	font-weight: 600;
}
@media (max-width: 900px) {
	.banner .btn:not(.btn-primary),
	.hero-overlay .btn:not(.btn-primary) { font-size: var(--font-size-lg); padding: var(--spacing-lg) var(--spacing-2xl); gap: var(--spacing-md); min-height: 52px; }
	.banner .btn.btn-primary,
	.hero-overlay .btn.btn-primary { padding: var(--spacing-lg) var(--spacing-3xl) !important; min-height: 56px !important; gap: 24px !important; }
	.banner .btn.btn-primary .btn__icon,
	.hero-overlay .btn.btn-primary .btn__icon { width: 44px !important; height: 44px !important; }
	.banner .btn.btn-primary .btn__icon::before,
	.hero-overlay .btn.btn-primary .btn__icon::before { width: 52px !important; height: 52px !important; border-width: 2.5px; }
	.banner .btn.btn-primary .btn_text,
	.hero-overlay .btn.btn-primary .btn_text { font-size: 1.875rem !important; font-weight: 900 !important; }
	.banner .btn_text:not(.btn-primary .btn_text),
	.hero-overlay .btn_text:not(.btn-primary .btn_text) { font-size: var(--font-size-xl); }
	.banner .btn__icon:not(.btn-primary .btn__icon),
	.hero-overlay .btn__icon:not(.btn-primary .btn__icon) { width: 28px; height: 28px; }
}
@media (max-width: 480px) {
	.banner .btn:not(.btn-primary),
	.hero-overlay .btn:not(.btn-primary) { font-size: var(--font-size-base); padding: var(--spacing-md) var(--spacing-xl); gap: var(--spacing-sm); min-height: 48px; }
	.banner .btn.btn-primary,
	.hero-overlay .btn.btn-primary { padding: var(--spacing-md) var(--spacing-2xl) !important; min-height: 52px !important; gap: 20px !important; }
	.banner .btn.btn-primary .btn__icon,
	.hero-overlay .btn.btn-primary .btn__icon { width: 40px !important; height: 40px !important; }
	.banner .btn.btn-primary .btn__icon::before,
	.hero-overlay .btn.btn-primary .btn__icon::before { width: 48px !important; height: 48px !important; border-width: 2.5px; }
	.banner .btn.btn-primary .btn_text,
	.hero-overlay .btn.btn-primary .btn_text { font-size: 1.625rem !important; font-weight: 900 !important; }
	.banner .btn_text:not(.btn-primary .btn_text),
	.hero-overlay .btn_text:not(.btn-primary .btn_text) { font-size: var(--font-size-lg); }
	.banner .btn__icon:not(.btn-primary .btn__icon),
	.hero-overlay .btn__icon:not(.btn-primary .btn__icon) { width: 24px; height: 24px; }
}

.header-cta {
	padding: var(--spacing-md) var(--spacing-xl);
	font-size: var(--font-size-base);
	gap: var(--spacing-md);
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	box-shadow: var(--shadow-sm);
	min-height: 48px;
}
.header-cta .btn_text {
	font-size: var(--font-size-xl) !important;
	font-weight: 800 !important;
	letter-spacing: 0.5px;
}
.header-cta:hover {
	background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
	box-shadow: var(--shadow-md);
	transform: translateY(-1px);
}
.header-cta:hover .btn__icon svg text {
	fill: var(--color-primary) !important;
}

.header-cta .btn__icon {
	width: 36px !important;
	height: 36px !important;
}
.header-cta .btn__icon::before {
	width: 44px !important;
	height: 44px !important;
	border-width: 2.5px;
}

.header-cta .btn_text {
	font-weight: 700;
}

.header-cta .btn__icon::before {
	width: 32px;
	height: 32px;
}

.btn_text,
.start-cta .btn,
.btn-primary {
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.start-cta .btn {
	max-width: 240px;
	width: 100%;
	margin: 0 auto;
	font-size: var(--font-size-lg);
	font-weight: 700;
	padding: var(--spacing-lg) var(--spacing-2xl);
	min-height: 52px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
.start-cta .btn_text {
	font-size: var(--font-size-xl);
}
.start-cta .btn__icon {
	width: 28px;
	height: 28px;
}
@media (max-width: 480px) {
	.start-cta .btn { max-width: 100%; font-size: var(--font-size-base); padding: var(--spacing-md) var(--spacing-xl); min-height: 48px; }
	.start-cta .btn_text { font-size: var(--font-size-lg); }
	.start-cta .btn__icon { width: 24px; height: 24px; }
}

a.btn.btn-primary,
.btn.btn-primary {
	gap: 32px !important;
}
a.btn.btn-primary .btn__icon,
.btn.btn-primary .btn__icon {
	margin-right: 0 !important;
}
a.btn.btn-primary .btn_text,
.btn.btn-primary .btn_text {
	font-size: 1.8rem !important;
}
a.btn.btn-primary .btn__icon::before,
.btn.btn-primary .btn__icon::before {
	width: 52px !important;
	height: 52px !important;
}

em, i, strong {
	font-style: normal;
	font-weight: normal;
}
