@charset "utf-8";
/* CSS Document */

/* ── 全局盒模型与防溢出修复 ── */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
	width: 100%;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ── 变量 ── */
:root {
	--navy: #0a1628;
	--navy-mid: #12243d;
	--navy-light: #1e3a5f;
	--accent: #f5a623;
	--accent-dim: #c27e10;
	--sky: #3b9ede;
	--sky-light: #e8f4fd;
	--text: #0a1628;
	--text-sec: #4a5568;
	--text-ter: #718096;
	--border: rgba(10, 22, 40, 0.1);
	--surface: #ffffff;
	--surface-2: #f7f9fc;
	--surface-3: #edf2f8;
	--radius: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
}

/* ── 通用容器 ── */
.container {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
}

/* ── 防止内部元素撑破容器 ── */
.section,
.section-sm,
.hero,
.brightness-guide,
.testimonials-section,
.cta-section {
  width: 100%;
}

/* ── HERO ── */
.hero {
	background: var(--navy);
	color: #fff;
	padding: 80px 0 72px;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(59, 158, 222, 0.15) 0%, transparent 70%);
	pointer-events: none;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 64px;
	align-items: center;
}
.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 20px;
}
.hero-eyebrow span {
	width: 24px;
	height: 2px;
	background: var(--accent);
	display: inline-block;
}
h1.hero-title {
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.1;
}
h1.hero-title em {
	color: var(--accent);
	font-style: normal;
}
.hero-desc {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 520px;
}
.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-top: 48px;
}
.hero-stat {
	background: rgba(255, 255, 255, 0.04);
	padding: 20px 24px;
	text-align: center;
	min-width: 0;
}
.hero-stat-num {
	font-family: 'Syne', sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	margin-bottom: 4px;
}
.hero-stat-num em {
	color: var(--accent);
	font-style: normal;
}
.hero-stat-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hero-visual {
	position: relative;
	min-width: 0;
}
.hero-panel-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-xl);
	padding: 28px;
	backdrop-filter: blur(8px);
}
.hero-panel-screen {
	background: var(--navy-mid);
	border-radius: var(--radius-lg);
	aspect-ratio: 16/9;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	overflow: hidden;
}
.screen-glow {
	position: absolute;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(245, 166, 35, 0.4) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
	0%,
	100% {
		opacity: 0.6;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.15);
	}
}
.screen-nits {
	position: relative;
	font-family: 'Syne', sans-serif;
	font-size: 48px;
	font-weight: 800;
	color: #fff;
	text-align: center;
	line-height: 1;
}
.screen-nits span {
	display: block;
	font-size: 13px;
	font-weight: 400;
	color: var(--accent);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 6px;
}
.panel-meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 16px;
}
.meta-item {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 12px 14px;
}
.meta-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.meta-val {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	margin-top: 2px;
}

/* ── TRUST BAR ── */
.trust-bar {
	background: var(--surface-2);
	border-bottom: 1px solid var(--border);
	padding: 20px 0;
	width: 100%;
}
.trust-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}
.trust-cert {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-sec);
}
.cert-badge {
	width: 32px;
	height: 32px;
	background: var(--navy);
	color: #fff;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	font-family: 'Syne', sans-serif;
	letter-spacing: 0.03em;
	flex-shrink: 0;
}
.trust-divider {
	width: 1px;
	height: 28px;
	background: var(--border);
}

/* ── INTRO ── */
.intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}
.section-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--sky);
	margin-bottom: 12px;
}
.section-title {
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}
.section-title em {
	color: var(--sky);
	font-style: normal;
}
.intro-body {
	color: var(--text-sec);
	line-height: 1.75;
	font-size: 16px;
}
.intro-body p {
	margin-bottom: 16px;
}
.intro-body p:last-child {
	margin-bottom: 0;
}

.feature-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.feature-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.feature-icon {
	width: 36px;
	height: 36px;
	background: var(--surface-3);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}
.feature-icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--navy);
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.feature-text h4 {
	font-family: 'Syne', sans-serif;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 2px;
}
.feature-text p {
	font-size: 14px;
	color: var(--text-sec);
	line-height: 1.55;
}

/* ── BRIGHTNESS GUIDE ── */
.brightness-guide {
    overflow: visible;   /* 确保表格不会被裁剪 */
	background: var(--navy);
	color: #fff;
}
.brightness-guide .section-tag {
	color: var(--accent);
}
.brightness-guide .section-title {
	color: #fff;
}
.brightness-guide .section-title em {
	color: var(--accent);
}

.guide-intro {
	color: rgba(255, 255, 255, 0.65);
	max-width: 600px;
	margin-bottom: 48px;
	font-size: 16px;
}

/* 表格横向滚动包裹 */
.nits-table-wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.nits-table {
	width: 100%;
	min-width: 650px;
	border-collapse: collapse;
}
.nits-table thead th {
	font-family: 'Syne', sans-serif;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.4);
	padding: 0 16px 16px;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nits-table tbody tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: background 0.15s;
}
.nits-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.03);
}
.nits-table tbody td {
	padding: 18px 16px;
	vertical-align: middle;
	font-size: 14px;
}
.nits-range {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--accent);
}
.nits-type {
	font-weight: 500;
	color: #fff;
}
.nits-env {
	color: rgba(255, 255, 255, 0.65);
}
.nits-use {
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
}
.nits-bar-wrap {
	width: 120px;
	height: 6px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 3px;
	overflow: hidden;
}
.nits-bar {
	height: 100%;
	background: var(--accent);
	border-radius: 3px;
}

.tech-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 48px;
}
.tech-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	padding: 28px;
	min-width: 0;
}
.tech-card-title {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 6px;
}
.tech-card-subtitle {
	font-size: 13px;
	color: var(--accent);
	margin-bottom: 16px;
	font-weight: 500;
}
.tech-card ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.tech-card li {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	display: flex;
	gap: 10px;
	align-items: flex-start;
}
.tech-card li::before {
	content: '—';
	color: var(--accent);
	flex-shrink: 0;
	margin-top: 1px;
}

/* ── APPLICATIONS ── */
.apps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
}
.app-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color 0.2s, transform 0.2s;
	min-width: 0;
}
.app-card:hover {
	border-color: rgba(59, 158, 222, 0.4);
	transform: translateY(-3px);
}
.app-img {
	aspect-ratio: 4/3;
	background: var(--surface-3);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.app-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.app-img-inner {
	width: 80px;
	height: 80px;
	background: var(--navy);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.15;
	position: absolute;
}
.app-img-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
}
.app-img-icon svg {
	width: 40px;
	height: 40px;
	stroke: var(--navy);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.app-nits-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: var(--navy);
	color: var(--accent);
	font-family: 'Syne', sans-serif;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	z-index: 2;
}
.app-body {
	padding: 20px;
}
.app-industry {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sky);
	margin-bottom: 6px;
}
.app-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 8px;
}
.app-desc {
	font-size: 13px;
	color: var(--text-sec);
	line-height: 1.6;
}
.app-tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 12px;
}
.app-tag {
	font-size: 11px;
	padding: 3px 9px;
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: 20px;
	color: var(--text-sec);
}

/* ── PRODUCTS ── */
.products-section {
	background: var(--surface-2);
}
.filter-bar {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 32px 0 28px;
}
.filter-btn {
	padding: 8px 18px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text-sec);
	cursor: pointer;
	transition: all 0.15s;
}
.filter-btn:hover {
	border-color: var(--navy);
	color: var(--navy);
}
.filter-btn.active {
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.product-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color 0.2s, transform 0.2s;
	min-width: 0;
}
.product-card:hover {
	border-color: var(--sky);
	transform: translateY(-2px);
}
.product-img {
	aspect-ratio: 16/9;
	background: var(--surface-3);
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-img svg {
	width: 48px;
	height: 48px;
	stroke: rgba(10, 22, 40, 0.2);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
}
.product-body {
	padding: 16px 18px;
}
.product-cat {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--sky);
	margin-bottom: 4px;
}
.product-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
	line-height: 1.35;
}
.product-specs {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 14px;
}
.spec-row {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
}
.spec-key {
	color: var(--text-ter);
}
.spec-val {
	font-weight: 500;
	color: var(--text);
}
.nits-chip {
	display: inline-block;
	background: #fff8e6;
	color: #854F0B;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	border: 1px solid #FAC775;
}
.product-link {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 500;
	color: var(--sky);
	padding-top: 12px;
	border-top: 1px solid var(--border);
	transition: gap 0.15s;
}
.product-link:hover {
	gap: 8px;
}
.product-link svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.view-all-wrap {
	text-align: center;
	margin-top: 36px;
}
.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 32px;
	border: 1.5px solid var(--navy);
	border-radius: var(--radius);
	font-size: 15px;
	font-weight: 500;
	color: var(--navy);
	transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
	background: var(--navy);
	color: #fff;
}

/* ── EXPERTISE / TEAM ── */
.expertise-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	margin-top: 48px;
}
.expert-card {
	display: flex;
	gap: 16px;
	padding: 24px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	align-items: flex-start;
	min-width: 0;
}
.expert-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--accent);
	flex-shrink: 0;
}
.expert-name {
	font-family: 'Syne', sans-serif;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 2px;
}
.expert-role {
	font-size: 12px;
	color: var(--sky);
	font-weight: 500;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.expert-bio {
	font-size: 13px;
	color: var(--text-sec);
	line-height: 1.6;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.stat-card {
	background: var(--surface-2);
	border-radius: var(--radius);
	padding: 20px 22px;
	min-width: 0;
}
.stat-num {
	font-family: 'Syne', sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1;
	margin-bottom: 4px;
}
.stat-num em {
	color: var(--sky);
	font-style: normal;
}
.stat-desc {
	font-size: 13px;
	color: var(--text-sec);
}

/* ── TESTIMONIALS / CLIENTS ── */
.testimonials-section {
	background: var(--navy);
	color: #fff;
}
.testimonials-section .section-tag {
	color: var(--accent);
}
.testimonials-section .section-title {
	color: #fff;
}

.client-logos {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin: 36px 0;
}
.client-logo {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	padding: 14px 22px;
	font-family: 'Syne', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.05em;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.testimonial-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	padding: 24px;
	min-width: 0;
}
.quote-mark {
	font-family: 'Syne', sans-serif;
	font-size: 40px;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 12px;
	opacity: 0.8;
}
.testimonial-text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.7;
	margin-bottom: 20px;
	font-style: italic;
}
.testimonial-author {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 16px;
}
.testimonial-name {
	font-weight: 600;
	font-size: 14px;
	color: #fff;
}
.testimonial-co {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 2px;
}
.testimonial-industry {
	display: inline-block;
	font-size: 11px;
	padding: 2px 8px;
	background: rgba(245, 166, 35, 0.15);
	color: var(--accent);
	border-radius: 4px;
	margin-top: 6px;
}

/* ── FAQ ── */
.faq-list {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 1px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	width: 100%;
}
.faq-item {
	background: var(--surface);
}
.faq-btn {
	width: 100%;
	text-align: left;
	padding: 20px 24px;
	font-family: 'Syne', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: var(--navy);
	background: none;
	border: none;
	border-bottom: 1px solid var(--border);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.15s;
}
.faq-item:last-child .faq-btn {
	border-bottom: none;
}
.faq-item.open .faq-btn {
	border-bottom: 1px solid var(--border);
}
.faq-btn:hover {
	background: var(--surface-2);
}
.faq-arrow {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform 0.25s;
}
.faq-item.open .faq-arrow {
	transform: rotate(180deg);
}
.faq-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s;
	padding: 0 24px;
	font-size: 15px;
	color: var(--text-sec);
	line-height: 1.7;
}
.faq-item.open .faq-body {
	max-height: 400px;
	padding: 20px 24px;
}

/* ── CTA ── */
.cta-section {
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
	color: #fff;
	text-align: center;
	padding: 96px 0;
}
.cta-eyebrow {
	color: var(--accent);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
	margin-bottom: 16px;
}
.cta-title {
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
}
.cta-desc {
	color: rgba(255, 255, 255, 0.65);
	font-size: 17px;
	max-width: 520px;
	margin: 0 auto 36px;
}
.cta-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.hero-visual {
		order: -1;
	}
	.intro-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.expertise-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.apps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.tech-compare {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero-stats {
		grid-template-columns: 1fr;
	}
	.hero-stat {
		padding: 16px;
	}
	.hero-panel-card {
		padding: 20px;
	}
	.screen-nits {
		font-size: 36px;
	}
	.apps-grid {
		grid-template-columns: 1fr;
	}
	.products-grid {
		grid-template-columns: 1fr;
	}
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	.stats-grid {
		grid-template-columns: 1fr;
	}
	.nits-table {
		min-width: 600px;
		font-size: 12px;
	}
	.nits-table th,
	.nits-table td {
		padding: 12px 10px;
	}
	.faq-btn {
		font-size: 15px;
		padding: 16px 20px;
	}
	.cta-section {
		padding: 64px 0;
	}
	.hero {
		padding: 60px 0 48px;
	}
	.section {
		padding: 56px 0;
	}
	.section-sm {
		padding: 48px 0;
	}
	.trust-inner {
		gap: 24px;
	}
	.trust-divider {
		display: none;
	}
	.client-logos {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}
	h1.hero-title {
		font-size: 28px;
	}
	.hero-desc {
		font-size: 15px;
	}
	.hero-actions {
		flex-direction: column;
	}
	.hero-actions .btn-primary,
	.hero-actions .btn-ghost {
		width: 100%;
		text-align: center;
	}
	.hero-stat-num {
		font-size: 24px;
	}
	.hero-panel-card {
		padding: 16px;
	}
	.panel-meta {
		grid-template-columns: 1fr;
	}
	.app-nits-badge {
		font-size: 10px;
		padding: 3px 8px;
	}
	.feature-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.faq-btn {
		font-size: 14px;
		padding: 14px 16px;
	}
	.cta-title {
		font-size: 24px;
	}
	.cta-desc {
		font-size: 15px;
	}
	.cta-actions {
		flex-direction: column;
		align-items: center;
	}
	.btn-primary,
	.btn-ghost,
	.btn-outline {
		width: 100%;
		max-width: 300px;
		text-align: center;
		justify-content: center;
	}
	.tech-card {
		padding: 20px;
	}
}