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

	body {
		font-family: 'Inter', sans-serif;
	}

	/* ── Hero ── */
	.hero-section {
		background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
		min-height: calc(100vh - 72px);
		display: flex;
		align-items: center;
		position: relative;
		overflow: hidden;
	}

	.hero-section::before {
		content: '';
		position: absolute;
		top: -20%;
		right: -10%;
		width: 600px;
		height: 600px;
		background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
		pointer-events: none;
	}

	.hero-section::after {
		content: '';
		position: absolute;
		bottom: -10%;
		left: -10%;
		width: 400px;
		height: 400px;
		background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
		pointer-events: none;
	}

	.badge-pill {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: rgba(99, 102, 241, 0.15);
		border: 1px solid rgba(99, 102, 241, 0.4);
		color: #a5b4fc;
		padding: 6px 16px;
		border-radius: 9999px;
		font-size: 0.8rem;
		font-weight: 600;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		margin-bottom: 24px;
	}

	.badge-dot {
		width: 7px;
		height: 7px;
		background: #6366f1;
		border-radius: 50%;
		animation: pulse-dot 1.8s ease-in-out infinite;
	}

	@keyframes pulse-dot {

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

		50% {
			opacity: 0.5;
			transform: scale(1.4);
		}
	}

	.hero-headline {
		font-size: clamp(2.2rem, 5vw, 4rem);
		font-weight: 900;
		color: #f1f5f9;
		line-height: 1.1;
		letter-spacing: -0.02em;
		margin-bottom: 1.5rem;
	}

	.hero-headline span {
		background: linear-gradient(90deg, #818cf8, #c084fc);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.hero-sub {
		font-size: 1.15rem;
		color: #94a3b8;
		max-width: 560px;
		line-height: 1.75;
		margin-bottom: 2.5rem;
	}

	.hero-cta-primary {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		background: #6366f1;
		color: #fff;
		font-weight: 700;
		font-size: 1rem;
		padding: 14px 28px;
		border-radius: 10px;
		text-decoration: none;
		transition: background 0.2s, transform 0.2s;
	}

	.hero-cta-primary:hover {
		background: #4f46e5;
		transform: translateY(-2px);
	}

	.hero-cta-secondary {
		display: inline-flex;
		align-items: center;
		color: #94a3b8;
		font-weight: 600;
		font-size: 0.95rem;
		text-decoration: none;
		gap: 6px;
		transition: color 0.2s;
	}

	.hero-cta-secondary:hover {
		color: #f1f5f9;
	}

	.hero-trust {
		display: flex;
		align-items: center;
		gap: 8px;
		color: #64748b;
		font-size: 0.8rem;
		font-weight: 500;
		margin-top: 1.75rem;
	}

	/* QR mock card */
	.qr-card {
		background: #1e293b;
		border: 1px solid #334155;
		border-radius: 20px;
		padding: 28px;
		position: relative;
	}

	.qr-card-header {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-bottom: 20px;
	}

	.qr-dot {
		width: 10px;
		height: 10px;
		border-radius: 50%;
	}

	.qr-mock {
		display: grid;
		grid-template-columns: repeat(7, 1fr);
		gap: 4px;
		width: 196px;
		margin: 0 auto 20px;
	}

	.qr-cell {
		width: 24px;
		height: 24px;
		border-radius: 3px;
	}

	.qr-stat-row {
		display: flex;
		justify-content: space-between;
		background: #0f172a;
		border-radius: 10px;
		padding: 12px 16px;
		margin-top: 8px;
	}

	.qr-stat-label {
		font-size: 0.72rem;
		color: #64748b;
	}

	.qr-stat-value {
		font-size: 1.1rem;
		font-weight: 700;
		color: #f1f5f9;
		margin-top: 2px;
	}

	/* ── Section titles ── */
	.section-eyebrow {
		display: inline-block;
		font-size: 0.75rem;
		font-weight: 700;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: #6366f1;
		margin-bottom: 12px;
	}

	.section-title {
		font-size: clamp(1.8rem, 3.5vw, 2.8rem);
		font-weight: 800;
		color: #0f172a;
		letter-spacing: -0.02em;
		line-height: 1.15;
		margin-bottom: 1rem;
	}

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

	/* ── Use case cards ── */
	.use-case-card {
		background: #fff;
		border: 1px solid #e2e8f0;
		border-radius: 16px;
		padding: 28px;
		transition: box-shadow 0.25s, transform 0.25s;
	}

	.use-case-card:hover {
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
		transform: translateY(-3px);
	}

	.use-case-icon {
		width: 52px;
		height: 52px;
		border-radius: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 18px;
		font-size: 1.5rem;
	}

	.use-case-title {
		font-size: 1.1rem;
		font-weight: 700;
		color: #0f172a;
		margin-bottom: 8px;
	}

	.use-case-desc {
		font-size: 0.9rem;
		color: #64748b;
		line-height: 1.65;
	}

	.use-case-tag {
		display: inline-flex;
		align-items: center;
		gap: 5px;
		margin-top: 14px;
		font-size: 0.75rem;
		font-weight: 600;
		color: #6366f1;
		background: #eef2ff;
		padding: 4px 10px;
		border-radius: 9999px;
	}

	/* ── 3-step process ── */
	.step-card {
		display: flex;
		gap: 20px;
		align-items: flex-start;
	}

	.step-number {
		flex-shrink: 0;
		width: 44px;
		height: 44px;
		background: #6366f1;
		color: #fff;
		font-weight: 800;
		font-size: 1.1rem;
		border-radius: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.step-title {
		font-size: 1.05rem;
		font-weight: 700;
		color: #0f172a;
		margin-bottom: 6px;
	}

	.step-desc {
		font-size: 0.9rem;
		color: #64748b;
		line-height: 1.65;
	}

	/* ── Industry solutions ── */
	.industry-card {
		border-radius: 16px;
		padding: 32px;
		border: 1px solid transparent;
		transition: box-shadow 0.25s, transform 0.25s;
	}

	.industry-card:hover {
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
		transform: translateY(-3px);
	}

	/* ── Why Us ── */
	.why-us-card {
		background: #fff;
		border: 1px solid #e2e8f0;
		border-radius: 14px;
		padding: 24px 28px;
		display: flex;
		gap: 16px;
		align-items: flex-start;
		transition: box-shadow 0.2s;
	}

	.why-us-card:hover {
		box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
	}

	.why-icon {
		font-size: 1.6rem;
		flex-shrink: 0;
	}

	/* ── Pricing ── */
	.plan-card {
		border-radius: 20px;
		padding: 36px;
		display: flex;
		flex-direction: column;
	}

	.plan-price {
		font-size: 3rem;
		font-weight: 900;
	}

	.plan-feature {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		font-size: 0.9rem;
		color: #374151;
	}

	.plan-check {
		color: #6366f1;
		flex-shrink: 0;
		margin-top: 2px;
	}

	/* ── CTA banner ── */
	.cta-banner {
		background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
		border-radius: 24px;
		padding: 64px 48px;
		text-align: center;
		position: relative;
		overflow: hidden;
	}

	.cta-banner::before {
		content: '';
		position: absolute;
		inset: 0;
		background: radial-gradient(ellipse at 60% 0%, rgba(99, 102, 241, 0.3) 0%, transparent 60%);
	}

	/* ── Nav ── */
	.nav-link {
		font-size: 0.875rem;
		font-weight: 500;
		color: #64748b;
		text-decoration: none;
		transition: color 0.15s;
	}

	.nav-link:hover {
		color: #0f172a;
	}
</style>
