@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: #f8fafc;
	color: #1e293b;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.npi-heading-1 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 3.5rem;
	line-height: 1.2;
	color: #1e293b;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.npi-heading-2 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 2.75rem;
	line-height: 1.3;
	color: #1e293b;
	margin-bottom: 1.25rem;
	letter-spacing: -0.01em;
}

.npi-heading-3 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.4;
	color: #1e293b;
	margin-bottom: 1rem;
}

.npi-heading-4 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.4;
	color: #1e293b;
	margin-bottom: 0.875rem;
}

.npi-heading-5 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.5;
	color: #1e293b;
	margin-bottom: 0.75rem;
}

.npi-paragraph {
	font-size: 1.125rem;
	line-height: 1.75;
	color: #64748b;
	margin-bottom: 1.5rem;
}

.npi-paragraph-small {
	font-size: 1rem;
	line-height: 1.6;
	color: #64748b;
	margin-bottom: 1rem;
}

.npi-text-accent {
	color: #3b82f6;
	font-weight: 600;
}

.npi-text-accent-green {
	color: #10b981;
	font-weight: 600;
}

.npi-text-accent-gold {
	color: #f59e0b;
	font-weight: 600;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.npi-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.npi-container-fluid {
	width: 100%;
	padding: 0 2rem;
}

.npi-section {
	padding: 5rem 0;
	position: relative;
}

.npi-section-alt {
	background-color: #ffffff;
	padding: 5rem 0;
}

/* ============================================
   HEADER
   ============================================ */
.npi-header {
	background: linear-gradient(90deg, #ffffff 0%, #f8fafc 100%);
	padding: 1.25rem 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.35s ease-in-out;
	border-bottom: 1px solid transparent;
}

.npi-header.npi-scrolled {
	box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
	border-bottom: 1px solid #e2e8f0;
}

.npi-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.npi-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: transform 0.35s ease-in-out;
}

.npi-logo:hover {
	transform: translateY(-2px);
}

.npi-logo-icon {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.5rem;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.npi-logo-text {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: #1e293b;
	letter-spacing: -0.01em;
}

.npi-nav {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.npi-nav-link {
	font-size: 1rem;
	font-weight: 500;
	color: #64748b;
	text-decoration: none;
	position: relative;
	transition: color 0.35s ease-in-out;
	padding-bottom: 0.25rem;
}

.npi-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #3b82f6;
	transition: width 0.35s ease-in-out;
}

.npi-nav-link:hover,
.npi-nav-link.npi-active {
	color: #3b82f6;
}

.npi-nav-link:hover::after,
.npi-nav-link.npi-active::after {
	width: 100%;
}

.npi-header-info {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.9rem;
	color: #64748b;
	padding: 0.5rem 1rem;
	background: rgba(59, 130, 246, 0.05);
	border-radius: 8px;
}

.npi-header-info i {
	color: #3b82f6;
}

/* ============================================
   HERO SECTION
   ============================================ */
.npi-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	padding-top: 5rem;
}

.npi-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/npi-hero.webp') center/cover;
	opacity: 0.4;
	z-index: 0;
}

.npi-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 30% 50%,
			rgba(59, 130, 246, 0.08) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 50%,
			rgba(16, 185, 129, 0.08) 0%,
			transparent 50%
		);
	z-index: 1;
}

.npi-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
}

.npi-hero-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 4rem;
	line-height: 1.15;
	color: #1e293b;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	animation: npi-fade-up 0.8s ease-out;
}

.npi-hero-subtitle {
	font-size: 1.375rem;
	line-height: 1.7;
	color: #64748b;
	margin-bottom: 2.5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	animation: npi-fade-up 0.8s ease-out 0.2s backwards;
}

.npi-hero-cta {
	animation: npi-fade-up 0.8s ease-out 0.4s backwards;
}

/* ============================================
   BUTTONS
   ============================================ */
.npi-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1rem 2.25rem;
	font-family: 'Inter', sans-serif;
	font-size: 1.0625rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 12px;
	transition: all 0.35s ease-in-out;
	cursor: pointer;
	border: none;
	position: relative;
	overflow: hidden;
}

.npi-btn-primary {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.npi-btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s ease-in-out;
}

.npi-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}

.npi-btn-primary:hover::before {
	left: 100%;
}

.npi-btn-secondary {
	background: #ffffff;
	color: #3b82f6;
	border: 2px solid #3b82f6;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.npi-btn-secondary:hover {
	background: #3b82f6;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

/* ============================================
   CARDS - NEOMORPHIC STYLE
   ============================================ */
.npi-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.35s ease-in-out;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 16px rgba(30, 41, 59, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	position: relative;
	overflow: hidden;
}

.npi-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #10b981);
	opacity: 0;
	transition: opacity 0.35s ease-in-out;
}

.npi-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	border-color: rgba(59, 130, 246, 0.3);
}

.npi-card:hover::before {
	opacity: 1;
}

.npi-card-icon {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
	transition: transform 0.35s ease-in-out;
}

.npi-card:hover .npi-card-icon {
	transform: scale(1.1) rotate(5deg);
}

.npi-card-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #1e293b;
	margin-bottom: 1rem;
}

.npi-card-text {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: #64748b;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.npi-grid {
	display: grid;
	gap: 2rem;
}

.npi-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.npi-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.npi-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   TEAM CARDS
   ============================================ */
.npi-team-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	transition: all 0.35s ease-in-out;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 16px rgba(30, 41, 59, 0.04);
}

.npi-team-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 48px rgba(59, 130, 246, 0.2);
	border-color: #3b82f6;
}

.npi-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #3b82f6, #10b981);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
	transition: transform 0.35s ease-in-out;
}

.npi-team-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.npi-team-card:hover .npi-team-avatar {
	transform: scale(1.1);
}

.npi-team-name {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.375rem;
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.npi-team-role {
	font-size: 1.0625rem;
	color: #3b82f6;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.npi-team-location {
	font-size: 0.9375rem;
	color: #64748b;
}

/* ============================================
   FORM STYLES
   ============================================ */
.npi-form {
	background: #ffffff;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 8px 32px rgba(30, 41, 59, 0.08);
	border: 1px solid #e2e8f0;
}

.npi-form-group {
	margin-bottom: 1.75rem;
}

.npi-form-label {
	display: block;
	font-weight: 600;
	font-size: 0.9375rem;
	color: #1e293b;
	margin-bottom: 0.625rem;
	letter-spacing: 0.01em;
}

.npi-form-input,
.npi-form-textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	color: #1e293b;
	background: #f8fafc;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	transition: all 0.35s ease-in-out;
	outline: none;
}

.npi-form-input:focus,
.npi-form-textarea:focus {
	background: #ffffff;
	border-color: #3b82f6;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.npi-form-input.npi-error,
.npi-form-textarea.npi-error {
	border-color: #ef4444;
}

.npi-form-error-message {
	display: none;
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

.npi-form-error-message.npi-visible {
	display: block;
}

.npi-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.npi-form-submit {
	width: 100%;
	padding: 1.125rem;
	font-size: 1.0625rem;
	font-weight: 600;
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: #ffffff;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.35s ease-in-out;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.npi-form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}

/* ============================================
   CHARTS
   ============================================ */
.npi-chart-container {
	background: #ffffff;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 16px rgba(30, 41, 59, 0.04);
	border: 1px solid #e2e8f0;
	margin-bottom: 2rem;
}

.npi-chart-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	color: #1e293b;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.npi-chart-title i {
	color: #3b82f6;
}

.npi-chart-wrapper {
	position: relative;
	height: 350px;
}

.npi-chart-wrapper canvas {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

.npi-chart-description {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e2e8f0;
	font-size: 0.9375rem;
	color: #64748b;
	line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.npi-footer {
	background: #f1f5f9;
	padding: 4rem 0 2rem;
	border-top: 1px solid #e2e8f0;
}

.npi-footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.npi-footer-column h4 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.125rem;
	color: #1e293b;
	margin-bottom: 1.25rem;
}

.npi-footer-text {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #64748b;
	margin-bottom: 1.5rem;
}

.npi-footer-contact {
	list-style: none;
}

.npi-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 0.9375rem;
	color: #64748b;
}

.npi-footer-contact i {
	color: #3b82f6;
	margin-top: 0.25rem;
	min-width: 20px;
}

.npi-footer-links {
	list-style: none;
}

.npi-footer-links li {
	margin-bottom: 0.875rem;
}

.npi-footer-links a {
	color: #64748b;
	text-decoration: none;
	font-size: 0.9375rem;
	transition: all 0.35s ease-in-out;
	display: inline-block;
}

.npi-footer-links a:hover {
	color: #3b82f6;
	transform: translateX(4px);
}

.npi-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #e2e8f0;
	color: #64748b;
	font-size: 0.875rem;
}

/* ============================================
   COOKIE POPUP
   ============================================ */
.npi-cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	max-width: 500px;
	background: #ffffff;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 20px 60px rgba(30, 41, 59, 0.2);
	border: 1px solid #e2e8f0;
	z-index: 9999;
	transform: translateY(150%);
	transition: transform 0.5s ease-in-out;
}

.npi-cookie-popup.npi-visible {
	transform: translateY(0);
}

.npi-cookie-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.125rem;
	color: #1e293b;
	margin-bottom: 0.75rem;
}

.npi-cookie-text {
	font-size: 0.9375rem;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.npi-cookie-link {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
}

.npi-cookie-link:hover {
	text-decoration: underline;
}

.npi-cookie-actions {
	display: flex;
	gap: 1rem;
}

.npi-cookie-btn {
	flex: 1;
	padding: 0.875rem 1.5rem;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.35s ease-in-out;
}

.npi-cookie-accept {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.npi-cookie-accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes npi-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes npi-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes npi-zoom-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes npi-slide-right {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.npi-animate-fade-up {
	animation: npi-fade-up 0.8s ease-out;
}

.npi-animate-fade-in {
	animation: npi-fade-in 0.8s ease-out;
}

.npi-animate-zoom-in {
	animation: npi-zoom-in 0.8s ease-out;
}

.npi-animate-slide-right {
	animation: npi-slide-right 0.8s ease-out;
}

/* Scroll animations */
.npi-scroll-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.npi-scroll-animate.npi-in-view {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.npi-section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.npi-section-label {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	background: rgba(59, 130, 246, 0.1);
	color: #3b82f6;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}

.npi-two-column {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 4rem;
}

.npi-content-box {
	background: #ffffff;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 8px 32px rgba(30, 41, 59, 0.06);
	border: 1px solid #e2e8f0;
}

.npi-image-collage {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.npi-image-placeholder {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
	font-size: 0.875rem;
}

/* ============================================
   MAP STYLES
   ============================================ */
.npi-map-container {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(30, 41, 59, 0.08);
	border: 1px solid #e2e8f0;
}

.npi-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.npi-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.npi-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.npi-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0.5rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ============================================
   ACCORDION / TABS
   ============================================ */
.npi-tabs {
	margin-bottom: 2rem;
}

.npi-tab-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	border-bottom: 2px solid #e2e8f0;
}

.npi-tab-button {
	padding: 1rem 2rem;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #64748b;
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	cursor: pointer;
	transition: all 0.35s ease-in-out;
	position: relative;
	margin-bottom: -2px;
}

.npi-tab-button:hover {
	color: #3b82f6;
}

.npi-tab-button.npi-active {
	color: #3b82f6;
	border-bottom-color: #3b82f6;
}

.npi-tab-content {
	display: none;
}

.npi-tab-content.npi-active {
	display: block;
	animation: npi-fade-in 0.5s ease-out;
}

/* ============================================
   LIST STYLES
   ============================================ */
.npi-list {
	list-style: none;
	margin-bottom: 2rem;
}

.npi-list-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.25rem;
	padding: 1.25rem;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	transition: all 0.35s ease-in-out;
}

.npi-list-item:hover {
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
	transform: translateX(8px);
}

.npi-list-icon {
	min-width: 40px;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, #3b82f6, #10b981);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
}

.npi-list-content h4 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.125rem;
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.npi-list-content p {
	font-size: 0.9375rem;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   STATS / METRICS
   ============================================ */
.npi-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin: 3rem 0;
}

.npi-stat-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 16px rgba(30, 41, 59, 0.04);
	transition: all 0.35s ease-in-out;
}

.npi-stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.npi-stat-number {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 3rem;
	background: linear-gradient(135deg, #3b82f6, #10b981);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.npi-stat-label {
	font-size: 1rem;
	color: #64748b;
	font-weight: 500;
}

/* ============================================
   BADGES
   ============================================ */
.npi-badge {
	display: inline-block;
	padding: 0.375rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
}

.npi-badge-blue {
	background: rgba(59, 130, 246, 0.1);
	color: #3b82f6;
}

.npi-badge-green {
	background: rgba(16, 185, 129, 0.1);
	color: #10b981;
}

.npi-badge-gold {
	background: rgba(245, 158, 11, 0.1);
	color: #f59e0b;
}

/* ============================================
   TIMELINE
   ============================================ */
.npi-timeline {
	position: relative;
	padding-left: 3rem;
	margin: 3rem 0;
}

.npi-timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #3b82f6, #10b981);
	border-radius: 2px;
}

.npi-timeline-item {
	position: relative;
	margin-bottom: 3rem;
}

.npi-timeline-marker {
	position: absolute;
	left: -57px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #3b82f6;
	border: 4px solid #f8fafc;
	box-shadow: 0 0 0 4px #3b82f6;
}

.npi-timeline-content {
	background: #ffffff;
	border-radius: 12px;
	padding: 1.75rem;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 16px rgba(30, 41, 59, 0.04);
}

.npi-timeline-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	color: #1e293b;
	margin-bottom: 0.75rem;
}

.npi-timeline-text {
	font-size: 0.9375rem;
	color: #64748b;
	line-height: 1.6;
}

/* ============================================
   FEATURE BOXES
   ============================================ */
.npi-feature-box {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 1.5rem;
	padding: 2rem;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	margin-bottom: 1.5rem;
	transition: all 0.35s ease-in-out;
}

.npi-feature-box:hover {
	transform: translateX(10px);
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
}

.npi-feature-icon-large {
	width: 80px;
	height: 80px;
	border-radius: 16px;
	background: linear-gradient(135deg, #3b82f6, #10b981);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.npi-feature-content h3 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.375rem;
	color: #1e293b;
	margin-bottom: 0.75rem;
}

.npi-feature-content p {
	font-size: 1rem;
	color: #64748b;
	line-height: 1.7;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.npi-table {
	width: 100%;
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(30, 41, 59, 0.04);
	border: 1px solid #e2e8f0;
}

.npi-table thead {
	background: linear-gradient(135deg, #3b82f6, #10b981);
	color: #ffffff;
}

.npi-table th {
	padding: 1.25rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-align: left;
}

.npi-table td {
	padding: 1.25rem;
	border-bottom: 1px solid #e2e8f0;
	font-size: 0.9375rem;
	color: #64748b;
}

.npi-table tbody tr:hover {
	background: #f8fafc;
}

.npi-table tbody tr:last-child td {
	border-bottom: none;
}

/* ============================================
   QUOTE / CALLOUT
   ============================================ */
.npi-quote {
	background: linear-gradient(
		135deg,
		rgba(59, 130, 246, 0.05),
		rgba(16, 185, 129, 0.05)
	);
	border-left: 4px solid #3b82f6;
	border-radius: 12px;
	padding: 2rem 2.5rem;
	margin: 2.5rem 0;
	position: relative;
}

.npi-quote::before {
	content: '"';
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-size: 4rem;
	color: rgba(59, 130, 246, 0.2);
	font-family: 'Georgia', serif;
	line-height: 1;
}

.npi-quote-text {
	font-size: 1.25rem;
	line-height: 1.7;
	color: #1e293b;
	font-style: italic;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.npi-quote-author {
	font-size: 1rem;
	color: #3b82f6;
	font-weight: 600;
}

/* ============================================
   VIDEO CONTAINER
   ============================================ */
.npi-video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 */
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(30, 41, 59, 0.15);
	margin: 2rem 0;
}

.npi-video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.npi-breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 0;
	font-size: 0.9375rem;
}

.npi-breadcrumb a {
	color: #64748b;
	text-decoration: none;
	transition: color 0.35s ease-in-out;
}

.npi-breadcrumb a:hover {
	color: #3b82f6;
}

.npi-breadcrumb span {
	color: #1e293b;
	font-weight: 600;
}

.npi-breadcrumb i {
	color: #cbd5e1;
	font-size: 0.75rem;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.npi-progress {
	width: 100%;
	height: 8px;
	background: #e2e8f0;
	border-radius: 10px;
	overflow: hidden;
	margin: 1rem 0;
}

.npi-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #3b82f6, #10b981);
	border-radius: 10px;
	transition: width 0.5s ease-in-out;
}

/* ============================================
   ALERT / INFO BOX
   ============================================ */
.npi-alert {
	padding: 1.5rem;
	border-radius: 12px;
	margin: 1.5rem 0;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.npi-alert-info {
	background: rgba(59, 130, 246, 0.1);
	border-left: 4px solid #3b82f6;
}

.npi-alert-success {
	background: rgba(16, 185, 129, 0.1);
	border-left: 4px solid #10b981;
}

.npi-alert-warning {
	background: rgba(245, 158, 11, 0.1);
	border-left: 4px solid #f59e0b;
}

.npi-alert i {
	font-size: 1.5rem;
	margin-top: 0.125rem;
}

.npi-alert-info i {
	color: #3b82f6;
}

.npi-alert-success i {
	color: #10b981;
}

.npi-alert-warning i {
	color: #f59e0b;
}

.npi-alert-content p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #1e293b;
}

/* ============================================
   SPACERS
   ============================================ */
.npi-spacer-sm {
	height: 2rem;
}

.npi-spacer-md {
	height: 4rem;
}

.npi-spacer-lg {
	height: 6rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.npi-text-center {
	text-align: center;
}

.npi-text-left {
	text-align: left;
}

.npi-text-right {
	text-align: right;
}

.npi-mb-1 {
	margin-bottom: 1rem;
}

.npi-mb-2 {
	margin-bottom: 2rem;
}

.npi-mb-3 {
	margin-bottom: 3rem;
}

.npi-mt-1 {
	margin-top: 1rem;
}

.npi-mt-2 {
	margin-top: 2rem;
}

.npi-mt-3 {
	margin-top: 3rem;
}

.npi-hidden {
	display: none;
}

.npi-visible {
	display: block;
}

.npi-mobile-toggle {
	display: none;
	background: transparent;
	border: none;
	color: #000;
	font-size: 1.5rem;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}

.npi-mobile-toggle:hover {
	color: #000;
	text-shadow: var(--lfa-glow-cyan);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
	.npi-heading-1 {
		font-size: 3rem;
	}

	.npi-heading-2 {
		font-size: 2.25rem;
	}

	.npi-hero-title {
		font-size: 3.25rem;
	}

	.npi-grid-3,
	.npi-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.npi-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.npi-two-column {
		gap: 3rem;
	}

	.npi-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.npi-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background: #fff;
		flex-direction: column;
		padding: 6rem 2rem 2rem;
		gap: 1.5rem;
		align-items: flex-start;
		transition: var(--lfa-transition);
		z-index: 999;
		border-right: 1px solid var(--lfa-border);
	}

	.npi-nav.npi-open {
		left: 0;
	}

	.npi-mobile-toggle {
		display: block;
	}
}

@media (max-width: 768px) {
	.npi-container,
	.npi-container-fluid {
		padding: 0 1.5rem;
	}

	.npi-section {
		padding: 3.5rem 0;
	}

	.npi-heading-1 {
		font-size: 2.25rem;
	}

	.npi-heading-2 {
		font-size: 1.875rem;
	}

	.npi-hero-title {
		font-size: 2.5rem;
	}

	.npi-hero-subtitle {
		font-size: 1.125rem;
	}

	.npi-header-info {
		font-size: 0.8125rem;
		padding: 0.375rem 0.75rem;
	}

	.npi-grid-2,
	.npi-grid-3,
	.npi-grid-4 {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.npi-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.npi-two-column {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.npi-cookie-popup {
		left: 1rem;
		right: 1rem;
	}

	.npi-stats-grid {
		grid-template-columns: 1fr !important;
	}

	.npi-tab-buttons {
		flex-wrap: wrap;
	}

	.npi-tab-button {
		padding: 0.75rem 1.25rem;
		font-size: 0.9375rem;
	}

	.npi-timeline {
		padding-left: 2rem;
	}

	.npi-timeline-marker {
		left: -2.625rem;
	}

	.npi-feature-box {
		grid-template-columns: 1fr;
		text-align: center;
		justify-items: center;
	}

	.npi-header-info {
		display: none;
	}
}

.npi-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 120px 24px;
	animation: npi-legal-fadeIn 0.6s ease-out;
}

@keyframes npi-legal-fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Header Section */
.npi-legal-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 40px 32px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04),
		0 4px 12px rgba(15, 23, 42, 0.02);
	border: 1px solid #e2e8f0;
}

.npi-legal-title {
	font-size: 42px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.npi-legal-subtitle {
	font-size: 18px;
	color: #64748b;
	margin-bottom: 16px;
	font-weight: 500;
}

.npi-legal-date {
	font-size: 14px;
	color: #94a3b8;
	font-weight: 500;
	padding: 8px 16px;
	background: #f1f5f9;
	border-radius: 20px;
	display: inline-block;
	margin-top: 8px;
}

/* Content Area */
.npi-legal-content {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Section Styles */
.npi-legal-section {
	background: #ffffff;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04),
		0 4px 12px rgba(15, 23, 42, 0.02);
	border: 1px solid #e2e8f0;
	position: relative;
	transition: all 0.3s ease;
}

.npi-legal-section:hover {
	box-shadow: 0 4px 6px rgba(15, 23, 42, 0.06),
		0 12px 24px rgba(15, 23, 42, 0.04);
	border-color: #cbd5e1;
	transform: translateY(-2px);
}

.npi-legal-section-number {
	position: absolute;
	top: -16px;
	left: 32px;
	background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	padding: 8px 20px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
	letter-spacing: 0.05em;
}

.npi-legal-section-title {
	font-size: 28px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 20px;
	margin-top: 8px;
	letter-spacing: -0.01em;
}

.npi-legal-subsection {
	font-size: 18px;
	font-weight: 600;
	color: #334155;
	margin-bottom: 12px;
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.npi-legal-subsection::before {
	content: '';
	width: 4px;
	height: 20px;
	background: linear-gradient(180deg, #3b82f6 0%, #10b981 100%);
	border-radius: 2px;
}

/* Text Styles */
.npi-legal-text {
	font-size: 16px;
	line-height: 1.8;
	color: #475569;
	margin-bottom: 16px;
}

.npi-legal-text:last-child {
	margin-bottom: 0;
}

.npi-legal-text strong {
	color: #1e293b;
	font-weight: 600;
	word-wrap: break-word;
}

/* Lists */
.npi-legal-list {
	list-style: none;
	margin: 20px 0;
	padding: 0;
}

.npi-legal-list li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 16px;
	line-height: 1.8;
	color: #475569;
}

.npi-legal-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	background: #3b82f6;
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.npi-legal-list li strong {
	color: #1e293b;
	font-weight: 600;
}

/* Card Components */
.npi-legal-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	margin: 20px 0;
	transition: all 0.3s ease;
}

.npi-legal-card:hover {
	background: #f1f5f9;
	border-color: #cbd5e1;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

/* Highlight Boxes */
.npi-legal-highlight {
	background: linear-gradient(
		135deg,
		rgba(59, 130, 246, 0.05) 0%,
		rgba(16, 185, 129, 0.05) 100%
	);
	border-left: 4px solid #3b82f6;
	border-radius: 8px;
	padding: 24px;
	margin: 24px 0;
}

.npi-legal-highlight .npi-legal-subsection {
	margin-top: 0;
}

/* Contact Section */
.npi-legal-contact {
	margin-top: 32px;
	padding-top: 32px;
	border-top: 2px solid #e2e8f0;
}

.npi-legal-contact-info {
	background: linear-gradient(
		135deg,
		rgba(59, 130, 246, 0.08) 0%,
		rgba(16, 185, 129, 0.08) 100%
	);
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	margin: 20px 0;
}

.npi-legal-contact-info p {
	margin: 8px 0;
	font-size: 15px;
	color: #475569;
}

.npi-legal-contact-info p:first-child {
	font-weight: 600;
	color: #1e293b;
	font-size: 18px;
	margin-bottom: 12px;
}

/* Links */
.npi-legal-link {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	transition: all 0.2s ease;
}

.npi-legal-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
	transition: width 0.3s ease;
}

.npi-legal-link:hover {
	color: #2563eb;
}

.npi-legal-link:hover::after {
	width: 100%;
}

/* Footer */
.npi-legal-footer {
	margin-top: 80px;
	padding: 32px 0;
	text-align: center;
	border-top: 1px solid #e2e8f0;
}

.npi-legal-footer-text {
	color: #94a3b8;
	font-size: 14px;
	margin: 8px 0;
}

.npi-legal-footer-text:first-child {
	font-weight: 600;
	color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
	.npi-legal-header {
		padding: 32px 20px;
		margin-bottom: 40px;
	}

	.npi-legal-title {
		font-size: 2rem;
	}

	.npi-legal-subtitle {
		font-size: 16px;
	}

	.npi-legal-section {
		padding: 28px 20px;
	}

	.npi-legal-section-number {
		top: -14px;
		left: 20px;
		font-size: 12px;
		padding: 6px 16px;
	}

	.npi-legal-section-title {
		font-size: 22px;
	}

	.npi-legal-subsection {
		font-size: 16px;
	}

	.npi-legal-text {
		font-size: 15px;
	}

	.npi-legal-card,
	.npi-legal-highlight {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.npi-heading-1 {
		font-size: 1.875rem;
	}
	.npi-legal-title {
		font-size: 1.3rem;
	}

	.npi-hero-title {
		font-size: 2rem;
	}

	.npi-btn {
		padding: 0.875rem 1.75rem;
		font-size: 0.9375rem;
	}

	.npi-card {
		padding: 1.5rem;
	}

	.npi-form {
		padding: 1.75rem;
	}

	.npi-cookie-actions {
		flex-direction: column;
	}

	.npi-image-collage {
		grid-template-columns: 1fr;
	}

	.npi-header-inner {
		padding: 0 20px;
	}

	.npi-logo .npi-logo-text {
		font-size: 1.1rem;
	}

	.npi-list-item {
		flex-direction: column;
	}

	.npi-content-box {
		padding: 2rem;
	}
	.npi-heading-3 {
		font-size: 1.5rem;
	}

	.npi-two-column,
	.npi-grid-2,
	.npi-grid-3,
	.npi-grid-4 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
	}

	.npi-grid-small {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
	}

	.npi-quote-text {
		font-size: 1rem;
	}

	.npi-feature-content h3 {
		font-size: 1rem;
	}
}
