/**
 * Certified Preceptor Program Page Styles
 * Modern, Professional Design
 * 
 * @package CARE-INF
 * @since 1.0.0
 */

/* =====================================================
   CSS VARIABLES
   ===================================================== */

:root {
	--pp-primary: #1a3a5f;
	--pp-primary-dark: #0d1f35;
	--pp-accent: #d4af37;
	--pp-accent-dark: #b8942e;
	--pp-text-dark: #1a3a5f;
	--pp-text-light: #4b5563;
	--pp-bg-light: #f5f7fa;
	--pp-bg-white: #ffffff;
	--pp-border: #e2e8f0;
	--pp-success: #10b981;
	--pp-info: #3b82f6;
	--pp-radius: 14px;
	--pp-radius-lg: 20px;
	--pp-shadow: 0 2px 16px rgba(26, 58, 95, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
	--pp-shadow-hover: 0 12px 40px rgba(26, 58, 95, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04);
	--pp-border-subtle: rgba(13, 31, 53, 0.08);
}

/* =====================================================
   PAGE WRAPPER
   ===================================================== */

.site-main.page-preceptor-program {
	max-width: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
}

/* =====================================================
   CONTAINERS
   ===================================================== */

.pp-container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
}

.pp-container--narrow {
	max-width: 900px;
}

.pp-container--wide {
	max-width: 1300px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.pp-hero {
	background: linear-gradient(135deg, var(--pp-primary) 0%, #2d5a8c 100%);
	color: #ffffff;
	padding: 10rem 0 9rem;
	position: relative;
	overflow: hidden;
	text-align: center;
	margin-top: -90px;
}

.pp-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="heroGrid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(212,175,55,0.08)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23heroGrid)" /></svg>');
	opacity: 0.4;
	animation: gridPulse 20s ease-in-out infinite;
}

@keyframes gridPulse {
	0%, 100% { opacity: 0.4; }
	50% { opacity: 0.6; }
}

.pp-hero__content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.pp-hero__eyebrow {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--pp-accent);
	margin-bottom: 1rem;
	padding: 0.4rem 1rem;
	background: rgba(212, 175, 55, 0.15);
	border-radius: 30px;
	border: 1px solid rgba(212, 175, 55, 0.3);
}

.pp-hero__title {
	font-family: var(--care-inf-heading-font, 'Merriweather', Georgia, serif);
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	font-weight: 700;
	margin: 0 0 1.5rem;
	line-height: 1.2;
	color: #ffffff;
}

.pp-hero__subtitle {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 2rem;
	font-weight: 400;
}

.pp-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--pp-accent);
	color: #ffffff;
	padding: 1rem 2.5rem;
	border-radius: 8px;
	font-size: 1.05rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.pp-hero__cta:hover {
	background: var(--pp-accent-dark);
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
	color: #ffffff;
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */

.pp-benefits {
	padding: 5rem 0;
	background: #ffffff;
}

.pp-benefits__header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.pp-eyebrow {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--pp-accent);
	margin-bottom: 0.75rem;
}

.pp-section-heading {
	font-family: var(--care-inf-heading-font, 'Merriweather', Georgia, serif);
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: var(--pp-text-dark);
	margin: 0 0 1rem;
	line-height: 1.3;
}

.pp-benefits__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.pp-benefit-card {
	background: #ffffff;
	border: 1px solid var(--pp-border);
	border-radius: 12px;
	padding: 2.5rem 2rem;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
}

.pp-benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--pp-accent) 0%, rgba(212, 175, 55, 0.3) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pp-benefit-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(26, 58, 95, 0.15);
	border-color: rgba(212, 175, 55, 0.3);
}

.pp-benefit-card:hover::before {
	transform: scaleX(1);
}

.pp-benefit-card__icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--pp-accent) 0%, var(--pp-accent-dark) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: transform 0.3s ease;
}

.pp-benefit-card:hover .pp-benefit-card__icon {
	transform: scale(1.1);
}

.pp-benefit-card__icon svg {
	width: 28px;
	height: 28px;
	stroke: #ffffff;
}

.pp-benefit-card__title {
	font-family: var(--care-inf-heading-font, 'Merriweather', Georgia, serif);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--pp-text-dark);
	margin: 0 0 1rem;
	line-height: 1.4;
}

.pp-benefit-card__desc {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--pp-text-light);
	margin: 0;
}

/* =====================================================
   TIERS SECTION
   ===================================================== */

.pp-tiers {
	background: linear-gradient(135deg, var(--pp-primary) 0%, #2d5a8c 100%);
	color: #ffffff;
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

.pp-tiers::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="tierGrid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23tierGrid)" /></svg>');
	opacity: 0.3;
	pointer-events: none;
}

.pp-tiers__header {
	text-align: center;
	margin-bottom: 3.5rem;
	position: relative;
	z-index: 1;
}

.pp-tiers__header .pp-eyebrow {
	color: var(--pp-accent);
}

.pp-tiers__header .pp-section-heading {
	color: #ffffff;
}

.pp-tiers__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.pp-tier-card {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.25);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
}

.pp-tier-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(212, 175, 55, 0.08);
	transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: -1;
}

.pp-tier-card:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(212, 175, 55, 0.5);
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.pp-tier-card:hover::before {
	left: 0;
}

.pp-tier-card__badge {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--pp-accent) 0%, var(--pp-accent-dark) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	transition: transform 0.3s ease;
}

.pp-tier-card:hover .pp-tier-card__badge {
	transform: scale(1.15) rotate(10deg);
}

.pp-tier-card__title {
	font-family: var(--care-inf-heading-font, 'Merriweather', Georgia, serif);
	font-size: 1.4rem;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 0.75rem;
}

.pp-tier-card__desc {
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */

.pp-process {
	padding: 5rem 0;
	background: var(--pp-bg-light);
}

.pp-process__header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.pp-process__steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	position: relative;
}

.pp-step {
	background: #ffffff;
	border-radius: 12px;
	padding: 2.5rem 2rem;
	position: relative;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.pp-step:hover {
	border-color: var(--pp-accent);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.pp-step__number {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--pp-accent) 0%, var(--pp-accent-dark) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1.5rem;
	transition: transform 0.3s ease;
}

.pp-step:hover .pp-step__number {
	transform: scale(1.15);
}

.pp-step__title {
	font-family: var(--care-inf-heading-font, 'Merriweather', Georgia, serif);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--pp-text-dark);
	margin: 0 0 1rem;
}

.pp-step__desc {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--pp-text-light);
	margin: 0;
}

/* =====================================================
   RECOGNITION SECTION
   ===================================================== */

.pp-recognition {
	padding: 5rem 0;
	background: #ffffff;
}

.pp-recognition__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.pp-recognition__text h2 {
	font-family: var(--care-inf-heading-font, 'Merriweather', Georgia, serif);
	font-size: clamp(1.8rem, 3vw, 2.3rem);
	font-weight: 700;
	color: var(--pp-text-dark);
	margin: 0 0 1.5rem;
	line-height: 1.3;
}

.pp-recognition__text p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--pp-text-light);
	margin: 0 0 1.5rem;
}

.pp-recognition__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pp-recognition__list li {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--pp-text-light);
	margin-bottom: 0.75rem;
	padding-left: 2em;
	position: relative;
}

.pp-recognition__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--pp-success);
	font-weight: 700;
	font-size: 1.2rem;
}

.pp-recognition__visual {
	background: linear-gradient(135deg, var(--pp-primary) 0%, #2d5a8c 100%);
	border-radius: 16px;
	padding: 3rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(26, 58, 95, 0.2);
}

.pp-recognition__visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="recGrid" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(212,175,55,0.2)"/></pattern></defs><rect width="400" height="400" fill="url(%23recGrid)" /></svg>');
	opacity: 0.4;
}

.pp-recognition__badge-display {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #ffffff;
}

.pp-recognition__badge-icon {
	font-size: 5rem;
	margin-bottom: 1rem;
	display: inline-block;
	animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.pp-recognition__badge-text {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */

.pp-faq {
	padding: 5rem 0;
	background: var(--pp-bg-light);
}

.pp-faq__header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.pp-faq__list {
	max-width: 900px;
	margin: 0 auto;
}

.pp-faq__item {
	background: #ffffff;
	border-radius: 12px;
	padding: 2rem 2.5rem;
	margin-bottom: 1.5rem;
	border: 1px solid var(--pp-border);
	transition: all 0.3s ease;
}

.pp-faq__item:hover {
	box-shadow: 0 8px 25px rgba(26, 58, 95, 0.08);
	border-color: rgba(212, 175, 55, 0.3);
}

.pp-faq__question {
	font-family: var(--care-inf-heading-font, 'Merriweather', Georgia, serif);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--pp-text-dark);
	margin: 0 0 0.75rem;
	display: block;
}

.pp-faq__answer {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--pp-text-light);
	margin: 0;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.pp-cta {
	background: linear-gradient(135deg, var(--pp-primary) 0%, #2d5a8c 100%);
	color: #ffffff;
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.pp-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="ctaGrid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(212,175,55,0.08)" stroke-width="1"/></pattern></defs><rect width="1200" height="400" fill="url(%23ctaGrid)" /></svg>');
	opacity: 0.3;
}

.pp-cta__content {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
}

.pp-cta__title {
	font-family: var(--care-inf-heading-font, 'Merriweather', Georgia, serif);
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 700;
	margin: 0 0 1.5rem;
	line-height: 1.3;
	color: #ffffff;
}

.pp-cta__text {
	font-size: 1.15rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 2.5rem;
}

.pp-cta__buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.pp-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	border-radius: 8px;
	font-size: 1.05rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
}

.pp-btn--primary {
	background: var(--pp-accent);
	color: #ffffff;
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.pp-btn--primary:hover {
	background: var(--pp-accent-dark);
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
	color: #ffffff;
}

.pp-btn--secondary {
	background: transparent;
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.5);
}

.pp-btn--secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
	color: #ffffff;
}

/* =====================================================
   SECTION DIVIDER
   ===================================================== */

.pp-section-divider {
	border: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--pp-border) 50%, transparent 100%);
	margin: 0;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 900px) {
	.pp-hero {
		padding: 4rem 0 3.5rem;
	}

	.pp-benefits,
	.pp-tiers,
	.pp-process,
	.pp-recognition,
	.pp-faq,
	.pp-cta {
		padding: 3.5rem 0;
	}

	.pp-recognition__content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.pp-benefits__grid,
	.pp-tiers__grid,
	.pp-process__steps {
		grid-template-columns: 1fr;
	}

	.pp-cta__buttons {
		flex-direction: column;
		align-items: center;
	}

	.pp-btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
}

@media (max-width: 600px) {
	.pp-container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.pp-hero {
		padding: 3rem 0 2.5rem;
	}

	.pp-hero__title {
		font-size: 2rem;
	}

	.pp-benefits,
	.pp-tiers,
	.pp-process,
	.pp-recognition,
	.pp-faq,
	.pp-cta {
		padding: 2.5rem 0;
	}

	.pp-benefit-card,
	.pp-tier-card,
	.pp-step,
	.pp-faq__item {
		padding: 2rem 1.5rem;
	}

	.pp-recognition__visual {
		padding: 2rem 1.5rem;
	}
}


/* =====================================================================
   ██████████████████████████████████████████████████████████████████████
   NCP — NATIONAL CERTIFIED PRECEPTOR PROGRAM STYLES
   New class prefix: ncp-
   ██████████████████████████████████████████████████████████████████████
   ===================================================================== */

/* ─────────────────────────────────────────────────────
   NCP SHARED UTILITIES
   ───────────────────────────────────────────────────── */

.ncp-container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
}

.ncp-container--narrow { max-width: 1300px; }
.ncp-container--wide   { max-width: 1300px; }

.ncp-eyebrow {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--pp-accent);
	margin-bottom: 0.65rem;
}

.ncp-eyebrow--light { color: rgba(212, 175, 55, 0.95); }

.ncp-section-header { margin-bottom: 3rem; }
.ncp-section-header--center { text-align: center; }

.ncp-section-title {
	font-size: clamp(1.75rem, 3.5vw, 2.4rem);
	font-weight: 800;
	color: var(--pp-primary);
	line-height: 1.25;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

.ncp-section-title--light { color: #ffffff; }

.ncp-section-desc {
	font-size: 1.02rem;
	color: var(--pp-text-light);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.65;
}

/* NCP Check List */
.ncp-check-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ncp-check-list li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.5rem;
	font-size: 0.92rem;
	color: var(--pp-text-dark);
	line-height: 1.55;
}

.ncp-check-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0.05em;
	color: var(--pp-accent);
	font-weight: 700;
	font-size: 0.85em;
}

.ncp-check-list--secondary li::before {
	color: var(--pp-info, #3b82f6);
}

/* NCP Buttons */
.ncp-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.75rem;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.25s ease;
	cursor: pointer;
	border: 2px solid transparent;
	line-height: 1;
}

.ncp-btn--gold {
	background: var(--pp-accent);
	color: var(--pp-primary);
	border-color: var(--pp-accent);
}

.ncp-btn--gold:hover {
	background: var(--pp-accent-dark);
	border-color: var(--pp-accent-dark);
	color: var(--pp-primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.ncp-btn--outline-white {
	background: transparent;
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.6);
}

.ncp-btn--outline-white:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
	color: #ffffff;
}

.ncp-btn--outline-dark {
	background: transparent;
	color: var(--pp-primary);
	border-color: var(--pp-primary);
}

.ncp-btn--outline-dark:hover {
	background: var(--pp-primary);
	color: #ffffff;
}

.ncp-btn--lg  { padding: 0.9rem 2.25rem; font-size: 1rem; }
.ncp-btn--xl  { padding: 1.1rem 2.75rem; font-size: 1.05rem; border-radius: 8px; }


/* ─────────────────────────────────────────────────────
   SECTION 1: FOUNDING DECLARATION (Redesign)
   ───────────────────────────────────────────────────── */

.ncp-declaration {
	background: linear-gradient(165deg, var(--pp-primary-dark) 0%, var(--pp-primary) 45%, #1e4976 100%);
	min-height: 72vh;
	padding: 6rem 2rem 5rem;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.ncp-declaration::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(ellipse 80% 50% at 20% 30%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
		radial-gradient(ellipse 60% 60% at 85% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.ncp-declaration__inner {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 3.5rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.ncp-declaration__seal {
	flex-shrink: 0;
}

.ncp-declaration__seal svg {
	width: 180px;
	height: 180px;
	filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.25));
	transition: transform 0.3s ease;
}

.ncp-declaration__seal:hover svg {
	transform: scale(1.03);
}

.ncp-declaration__label {
	display: inline-block;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--pp-accent);
	border: 1px solid rgba(212, 175, 55, 0.5);
	padding: 0.4rem 1rem;
	border-radius: 100px;
	margin-bottom: 1rem;
}

.ncp-declaration__announcement {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 0.6rem;
}

.ncp-declaration__title {
	font-size: clamp(2rem, 4.2vw, 3rem);
	font-weight: 900;
	color: #ffffff;
	line-height: 1.1;
	margin: 0 0 1rem;
	letter-spacing: -0.03em;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.ncp-declaration__tagline {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 1.25rem;
	max-width: 36em;
}

.ncp-declaration__lead,
.ncp-declaration__body {
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.02rem;
	line-height: 1.75;
	margin-bottom: 1rem;
}

.ncp-declaration__callout {
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.35);
	border-radius: var(--pp-radius);
	padding: 1.75rem 2rem;
	margin: 1.75rem 0;
}

.ncp-declaration__callout p {
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 0.5rem;
	font-size: 1rem;
}

.ncp-declaration__founding-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--pp-accent);
	margin: 0 0 0.5rem;
	letter-spacing: -0.01em;
}

.ncp-declaration__note {
	font-size: 0.85rem !important;
	color: rgba(255, 255, 255, 0.65) !important;
	font-style: italic;
}

.ncp-declaration__pricing-strip {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: var(--pp-radius);
	padding: 1.5rem 2rem;
	margin: 1.5rem 0;
	backdrop-filter: blur(8px);
}

.ncp-declaration__price-item { text-align: center; flex: 1; }

.ncp-declaration__price-label {
	display: block;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 0.35rem;
}

.ncp-declaration__price-amount {
	display: block;
	font-size: 2.75rem;
	font-weight: 900;
	color: var(--pp-accent);
	line-height: 1;
	letter-spacing: -0.02em;
}

.ncp-declaration__price-divider {
	width: 1px;
	height: 56px;
	background: rgba(212, 175, 55, 0.35);
}

.ncp-declaration__registry-note {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	font-style: italic;
	margin: 0 0 1rem;
}

.ncp-declaration__affirmation {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0 0 1.75rem;
}

.ncp-declaration__no-login {
	margin-bottom: 1rem;
	font-size: 0.95rem;
	opacity: 0.95;
}

.ncp-declaration__restricted-msg {
	color: #c0392b;
	font-weight: 600;
	opacity: 1;
}

.ncp-declaration__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
}

.ncp-declaration__actions .ncp-btn--gold {
	box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
}

.ncp-declaration__actions .ncp-btn--gold:hover {
	box-shadow: 0 12px 36px rgba(212, 175, 55, 0.45);
}


/* ─────────────────────────────────────────────────────
   PRECEPTOR IMPACT FUND & STUDENT-LED CAMPAIGN
   ───────────────────────────────────────────────────── */

.ncp-impact-fund {
	padding: 5.5rem 2rem;
	background: var(--pp-bg-white);
}

.ncp-impact-fund__content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.ncp-impact-fund__block {
	background: var(--pp-bg-white);
	border: 1px solid var(--pp-border-subtle);
	border-radius: var(--pp-radius);
	padding: 2rem 1.75rem;
	box-shadow: var(--pp-shadow);
	transition: box-shadow 0.3s ease, border-color 0.25s ease;
}

.ncp-impact-fund__block:hover {
	box-shadow: var(--pp-shadow-hover);
	border-color: rgba(212, 175, 55, 0.22);
}

.ncp-impact-fund__block--highlight {
	border-left: 4px solid var(--pp-accent);
	background: linear-gradient(to right, rgba(212, 175, 55, 0.06), var(--pp-bg-white));
}

.ncp-impact-fund__block p,
.ncp-impact-fund__advantages p {
	margin: 0 0 0.75rem;
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--pp-text-dark);
}

.ncp-impact-fund__block p:last-child,
.ncp-impact-fund__advantages .ncp-check-list {
	margin-bottom: 0;
}

.ncp-impact-fund__subtitle {
	font-size: 1rem;
	font-weight: 700;
	color: var(--pp-primary);
	margin: 0 0 0.75rem;
	letter-spacing: 0.02em;
}

.ncp-impact-fund__advantages {
	grid-column: 1 / -1;
	background: var(--pp-bg-white);
	border: 1px solid var(--pp-border-subtle);
	border-radius: var(--pp-radius);
	padding: 2rem 2.25rem;
	box-shadow: var(--pp-shadow);
}

.ncp-impact-fund__note {
	grid-column: 1 / -1;
	padding: 1.5rem 1.75rem;
	background: rgba(26, 58, 95, 0.04);
	border-radius: var(--pp-radius);
	border: 1px solid rgba(26, 58, 95, 0.08);
}

.ncp-impact-fund__note p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--pp-text-light);
}


/* ─────────────────────────────────────────────────────
   SECTION 2: ELIGIBILITY
   ───────────────────────────────────────────────────── */

.ncp-eligibility {
	padding: 5.5rem 2rem;
	background: var(--pp-bg-light);
}

.ncp-eligibility__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.ncp-eligible-card {
	background: var(--pp-bg-white);
	border: 1px solid var(--pp-border-subtle);
	border-radius: var(--pp-radius);
	padding: 2rem 1.5rem;
	text-align: center;
	transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.25s ease;
	box-shadow: var(--pp-shadow);
}

.ncp-eligible-card:hover {
	border-color: rgba(212, 175, 55, 0.3);
	box-shadow: var(--pp-shadow-hover);
	transform: translateY(-3px);
}

.ncp-eligible-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 1rem;
	background: rgba(212, 175, 55, 0.12);
	border-radius: 14px;
}

.ncp-eligible-card__icon svg {
	width: 26px;
	height: 26px;
	stroke: var(--pp-primary);
}

.ncp-eligible-card__label {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--pp-primary);
	margin: 0;
	line-height: 1.4;
}


/* ─────────────────────────────────────────────────────
   SECTION 3: WHY CERTIFICATION MATTERS
   ───────────────────────────────────────────────────── */

.ncp-why {
	padding: 5.5rem 2rem;
	background: var(--pp-bg-white);
}

.ncp-why__inner {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.ncp-why__compare {
	font-size: 1.08rem;
	color: var(--pp-text-dark);
	line-height: 1.75;
	background: var(--pp-bg-light);
	border-left: 4px solid var(--pp-accent);
	padding: 1.25rem 1.5rem;
	border-radius: 0 var(--pp-radius) var(--pp-radius) 0;
	margin: 1.5rem 0 1.25rem;
	box-shadow: var(--pp-shadow);
}

.ncp-why__subtitle {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--pp-primary);
	margin: 0 0 0.75rem;
}

.ncp-why__pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.ncp-pillar-card {
	background: var(--pp-bg-white);
	border: 1px solid var(--pp-border-subtle);
	border-radius: var(--pp-radius);
	padding: 1.75rem 1.5rem;
	transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.25s ease;
	box-shadow: var(--pp-shadow);
}

.ncp-pillar-card:hover {
	box-shadow: var(--pp-shadow-hover);
	border-color: rgba(212, 175, 55, 0.28);
	transform: translateY(-2px);
}

.ncp-pillar-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(212, 175, 55, 0.12);
	border-radius: 12px;
	color: var(--pp-accent);
	margin-bottom: 1rem;
}

.ncp-pillar-card__icon svg {
	width: 24px;
	height: 24px;
}

.ncp-pillar-card__title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--pp-primary);
	margin: 0 0 0.5rem;
}

.ncp-pillar-card__desc {
	font-size: 0.9rem;
	color: var(--pp-text-light);
	margin: 0;
	line-height: 1.65;
}


/* ─────────────────────────────────────────────────────
   SECTION 4: FOUNDING COHORT OFFER
   ───────────────────────────────────────────────────── */

.ncp-founding-offer {
	padding: 5.5rem 2rem;
	background: linear-gradient(165deg, var(--pp-primary-dark) 0%, var(--pp-primary) 50%, #1a4270 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ncp-founding-offer::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
	pointer-events: none;
}

.ncp-founding-offer__badge-row {
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.ncp-founding-badge {
	display: inline-block;
	background: var(--pp-accent);
	color: var(--pp-primary);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 0.5rem 1.25rem;
	border-radius: 100px;
	box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.ncp-founding-offer__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin: 2.5rem 0;
	text-align: left;
	position: relative;
	z-index: 1;
}

.ncp-offer-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--pp-radius);
	padding: 2.25rem 2rem;
	transition: all 0.25s ease;
	backdrop-filter: blur(8px);
}

.ncp-offer-card:hover {
	border-color: rgba(212, 175, 55, 0.4);
	background: rgba(255, 255, 255, 0.1);
}

.ncp-offer-card--highlight {
	background: rgba(212, 175, 55, 0.12);
	border-color: rgba(212, 175, 55, 0.45);
}

.ncp-offer-card__step {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--pp-primary);
	background: var(--pp-accent);
	padding: 0.35rem 0.85rem;
	border-radius: 100px;
	margin-bottom: 1rem;
}

.ncp-offer-card__title {
	font-size: 1.2rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 0.5rem;
}

.ncp-offer-card__price {
	font-size: 3.25rem;
	font-weight: 900;
	color: var(--pp-accent);
	line-height: 1;
	margin: 0.75rem 0;
	letter-spacing: -0.02em;
}

.ncp-offer-card__desc {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.65;
	margin-bottom: 1.25rem;
}

.ncp-offer-card__features {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 1.25rem;
}

.ncp-offer-card__features li {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.8);
	padding: 0.35rem 0 0.35rem 1.5rem;
	position: relative;
}

.ncp-offer-card__features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--pp-accent);
	font-weight: 700;
}

.ncp-founding-offer__cta {
	margin-top: 1.5rem;
	position: relative;
	z-index: 1;
}

.ncp-founding-offer__cta .ncp-btn--gold {
	box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
}

.ncp-founding-offer__restricted {
	margin: 0;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.95);
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.ncp-founding-offer__disclaimer {
	margin-top: 1.5rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	font-style: italic;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}


/* ─────────────────────────────────────────────────────
   SECTION 5: CURRICULUM
   ───────────────────────────────────────────────────── */

.ncp-curriculum {
	padding: 5.5rem 2rem;
	background: var(--pp-bg-light);
}

.ncp-curriculum__ld-cta {
	margin-top: 2rem;
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ncp-curriculum__ld-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.ncp-curriculum__ld-note {
	margin-top: 0.75rem;
	font-size: 0.9rem;
	opacity: 0.9;
}

.ncp-curriculum__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.ncp-curriculum-item {
	background: var(--pp-bg-white);
	border: 1px solid var(--pp-border-subtle);
	border-radius: var(--pp-radius);
	padding: 2rem 1.75rem;
	transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.25s ease;
	box-shadow: var(--pp-shadow);
}

.ncp-curriculum-item:hover {
	border-color: rgba(212, 175, 55, 0.28);
	box-shadow: var(--pp-shadow-hover);
	transform: translateY(-3px);
}

.ncp-curriculum-item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: rgba(212, 175, 55, 0.1);
	border-radius: 14px;
	margin-bottom: 1.25rem;
}

.ncp-curriculum-item__icon svg {
	width: 28px;
	height: 28px;
	stroke: var(--pp-primary);
}

.ncp-curriculum-item__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--pp-primary);
	margin: 0 0 0.5rem;
}

.ncp-curriculum-item__desc {
	font-size: 0.92rem;
	color: var(--pp-text-light);
	margin: 0;
	line-height: 1.65;
}


/* ─────────────────────────────────────────────────────
   SECTION 6: NATIONAL REGISTRY
   ───────────────────────────────────────────────────── */

.ncp-registry {
	padding: 6rem 2rem;
	background: linear-gradient(180deg, #f8fafc 0%, var(--pp-bg-white) 100%);
}

.ncp-registry__inner {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 4rem;
	align-items: start;
}

.ncp-registry__intro {
	font-size: 1.05rem;
	color: var(--pp-text-light);
	margin: 0 0 2rem;
	line-height: 1.7;
}

.ncp-registry__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.ncp-registry__id-note {
	font-size: 0.95rem;
	color: var(--pp-text-light);
	margin: 1.5rem 0 0;
	line-height: 1.6;
}

.ncp-registry__cta-wrap {
	margin: 1.5rem 0 0;
}

.ncp-registry__col-title {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--pp-primary);
	margin: 0 0 0.75rem;
}

/* Registry Sample Card — modern professional profile */
.ncp-registry-card {
	background: var(--pp-bg-white);
	border: 1px solid rgba(13, 31, 53, 0.08);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(26, 58, 95, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.3s ease, transform 0.25s ease, border-color 0.25s ease;
}

.ncp-registry-card:hover {
	box-shadow: 0 20px 56px rgba(26, 58, 95, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
	border-color: rgba(13, 31, 53, 0.12);
}

.ncp-registry-card__header {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	background: linear-gradient(135deg, var(--pp-primary) 0%, #1e4976 100%);
	padding: 1rem 1.5rem;
	border-bottom: 3px solid var(--pp-accent);
}

.ncp-registry-card__header-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pp-accent);
	opacity: 0.95;
}

.ncp-registry-card__header-icon svg {
	width: 18px;
	height: 18px;
}

.ncp-registry-card__label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
}

.ncp-registry-card__body {
	padding: 2rem 1.75rem;
	text-align: center;
}

.ncp-registry-card__avatar {
	width: 80px;
	height: 80px;
	background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
	border: 2px solid rgba(13, 31, 53, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	color: var(--pp-primary);
	opacity: 0.9;
}

.ncp-registry-card__avatar svg {
	width: 40px;
	height: 40px;
}

.ncp-registry-card__name {
	font-size: 1.12rem;
	font-weight: 700;
	color: var(--pp-primary);
	margin: 0 0 0.3rem;
	letter-spacing: -0.01em;
}

.ncp-registry-card__state {
	font-size: 0.88rem;
	color: var(--pp-text-light);
	margin: 0 0 1.25rem;
	line-height: 1.4;
}

.ncp-registry-card__badges {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 1.25rem;
}

.ncp-registry-card__status {
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.4rem 0.85rem;
	border-radius: 100px;
	letter-spacing: 0.04em;
}

.ncp-registry-card__status--active {
	background: rgba(16, 185, 129, 0.1);
	color: #059669;
	border: 1px solid rgba(16, 185, 129, 0.25);
}

.ncp-registry-card__status--founding {
	background: rgba(212, 175, 55, 0.1);
	color: var(--pp-accent-dark);
	border: 1px solid rgba(212, 175, 55, 0.3);
}

.ncp-registry-card__status--expired {
	background: rgba(107, 114, 128, 0.12);
	color: #6b7280;
	border: 1px solid rgba(107, 114, 128, 0.25);
}

.ncp-registry-card__id {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	background: #f8fafc;
	border: 1px solid rgba(13, 31, 53, 0.06);
	border-radius: 12px;
	padding: 0.85rem 1rem;
	margin-bottom: 0.85rem;
}

.ncp-registry-card__id-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--pp-text-light);
}

.ncp-registry-card__id-value {
	font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
	font-weight: 700;
	font-size: 1rem;
	color: var(--pp-primary);
	background: none;
	letter-spacing: 0.05em;
}

.ncp-registry-card__valid {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	color: var(--pp-text-light);
}

.ncp-registry-card__valid-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #10b981;
	flex-shrink: 0;
}

/* Registry search block (on Program page and Registry page) */
.ncp-registry__search-block {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--pp-border-subtle);
}

.ncp-registry__search-intro {
	font-size: 1.05rem;
	color: var(--pp-text-dark);
	margin: 0 0 1.25rem;
	line-height: 1.5;
}

.page-preceptor-registry .ncp-registry--search-page .ncp-registry__header-block {
	margin-bottom: 2rem;
	text-align: center;
}

.ncp-registry-search {
	background: var(--pp-bg-white);
	border: 1px solid var(--pp-border-subtle);
	border-radius: var(--pp-radius);
	padding: 2rem;
	margin-bottom: 2.5rem;
	box-shadow: var(--pp-shadow);
}

.ncp-registry-search__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem 1.5rem;
	margin-bottom: 1.5rem;
}

.ncp-registry-search__field label {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--pp-primary);
	margin-bottom: 0.35rem;
}

.ncp-registry-search__field input,
.ncp-registry-search__field select {
	width: 100%;
	padding: 0.6rem 0.75rem;
	border: 1px solid var(--pp-border-subtle);
	border-radius: 8px;
	font-size: 0.95rem;
}

.ncp-registry-search__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.ncp-registry-results__count {
	font-size: 1rem;
	color: var(--pp-text-dark);
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.ncp-registry-results__hint {
	font-size: 1rem;
	color: var(--pp-text-light);
	margin: 0;
}

.ncp-registry-results__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
}

.ncp-registry-card-wrap {
	min-width: 0;
}

.ncp-registry-pagination {
	margin-top: 2.5rem;
	text-align: center;
}

.ncp-registry-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ncp-registry-pagination a,
.ncp-registry-pagination span {
	display: inline-block;
	padding: 0.5rem 0.85rem;
	border: 1px solid var(--pp-border-subtle);
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--pp-primary);
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s;
}

.ncp-registry-pagination a:hover {
	border-color: var(--pp-accent);
	background: rgba(212, 175, 55, 0.08);
}

.ncp-registry-pagination .current {
	background: var(--pp-primary);
	color: #fff;
	border-color: var(--pp-primary);
}

/* Apply for Certification form */
.ncp-apply {
	padding: 5rem 2rem 6rem;
	background: var(--pp-bg-white);
}

.ncp-apply__header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.ncp-apply__intro {
	font-size: 1.05rem;
	color: var(--pp-text-dark);
	max-width: 640px;
	margin: 1rem auto 0;
	line-height: 1.6;
}

.ncp-apply__message {
	padding: 2rem;
	border-radius: var(--pp-radius);
	margin-bottom: 2rem;
	text-align: center;
}

.ncp-apply__message--success {
	background: rgba(16, 185, 129, 0.08);
	border: 1px solid rgba(16, 185, 129, 0.25);
}

.ncp-apply__message--success h2 {
	margin: 0 0 0.75rem;
	font-size: 1.5rem;
	color: var(--pp-primary);
}

.ncp-apply__message--error {
	background: rgba(239, 68, 68, 0.08);
	border: 1px solid rgba(239, 68, 68, 0.25);
	color: #b91c1c;
}

.ncp-apply__form {
	background: #fff;
	border: 1px solid var(--pp-border-subtle);
	border-radius: var(--pp-radius);
	padding: 2.5rem;
	max-width: 720px;
	margin: 0 auto;
	box-shadow: var(--pp-shadow);
}

.ncp-apply__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem 1.5rem;
	margin-bottom: 2rem;
}

.ncp-apply__field--full {
	grid-column: 1 / -1;
}

.ncp-apply__field label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--pp-primary);
	margin-bottom: 0.35rem;
}

.ncp-apply__field label.hint,
.ncp-apply__field .hint {
	font-weight: 400;
	color: var(--pp-text-light);
	font-size: 0.85rem;
}

.ncp-apply__field input[type="text"],
.ncp-apply__field input[type="email"],
.ncp-apply__field input[type="tel"],
.ncp-apply__field select {
	width: 100%;
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--pp-border-subtle);
	border-radius: 8px;
	font-size: 1rem;
}

.ncp-apply__checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-weight: 500;
	color: var(--pp-text-dark);
	font-size: 0.95rem;
	line-height: 1.5;
	cursor: pointer;
}

.ncp-apply__checkbox-label input {
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.ncp-apply__agree {
	margin-top: 0.5rem;
}

.ncp-apply__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.5rem;
}

.ncp-apply__actions .ncp-btn--lg {
	padding: 0.75rem 1.5rem;
}

@media (max-width: 768px) {
	.ncp-apply__grid { grid-template-columns: 1fr; }
	.ncp-apply__form { padding: 1.5rem; }
}

/* Apply modal (popup on Program page) */
.ncp-apply-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.2s, opacity 0.2s;
}

.ncp-apply-modal.is-open {
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
}

body.ncp-modal-open {
	overflow: hidden;
}

.ncp-apply-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(13, 31, 53, 0.6);
	cursor: pointer;
}

.ncp-apply-modal__box {
	position: relative;
	width: 100%;
	max-width: 640px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: var(--pp-radius);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
	padding: 2rem 2rem 2.5rem;
}

.ncp-apply-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
	font-size: 1.75rem;
	line-height: 1;
	color: var(--pp-text-light);
	cursor: pointer;
	transition: color 0.2s;
}

.ncp-apply-modal__close:hover {
	color: var(--pp-primary);
}

.ncp-apply-modal__title {
	margin: 0 0 0.5rem;
	font-size: 1.5rem;
	color: var(--pp-primary);
}

.ncp-apply-modal__intro {
	font-size: 0.95rem;
	color: var(--pp-text-dark);
	margin: 0 0 1.25rem;
	line-height: 1.5;
}

.ncp-apply-modal__error {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #b91c1c;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.ncp-apply-modal__success {
	text-align: center;
	padding: 0.5rem 0;
}

.ncp-apply-modal__success .ncp-apply-modal__title {
	margin-bottom: 0.75rem;
}

.ncp-apply-modal__success p {
	margin: 0 0 1rem;
	color: var(--pp-text-dark);
	line-height: 1.6;
}

.ncp-apply-modal__pay-wrap {
	margin: 1.25rem 0 0.5rem !important;
}

.ncp-apply-modal__pay-wrap .ncp-preceptor-pay-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.ncp-apply-modal__pay-note {
	font-size: 0.9rem !important;
	color: var(--pp-text-light) !important;
	margin-bottom: 1rem !important;
}

.ncp-apply-modal__form .ncp-apply__grid {
	margin-bottom: 1.5rem;
}

.ncp-apply-modal__form .ncp-apply__actions {
	margin-top: 1rem;
}


/* ─────────────────────────────────────────────────────
   SECTION 7: RECERTIFICATION
   ───────────────────────────────────────────────────── */

.ncp-recert {
	padding: 5.5rem 2rem;
	background: var(--pp-bg-light);
}

.ncp-recert__options-heading {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--pp-primary);
	text-align: center;
	margin: 0 0 1rem;
	letter-spacing: 0.02em;
}

.ncp-recert__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
	margin-top: 0.5rem;
}

.ncp-recert-option {
	background: var(--pp-bg-white);
	border: 1px solid var(--pp-border-subtle);
	border-radius: var(--pp-radius);
	padding: 2rem 1.75rem;
	position: relative;
	box-shadow: var(--pp-shadow);
	transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.ncp-recert-option:hover {
	box-shadow: var(--pp-shadow-hover);
	border-color: rgba(212, 175, 55, 0.22);
	transform: translateY(-2px);
}

.ncp-recert-option--future {
	border-style: dashed;
	opacity: 0.9;
}

.ncp-recert-option__label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	background: rgba(212, 175, 55, 0.15);
	color: var(--pp-primary);
	border-radius: 10px;
	padding: 0.4rem 0.9rem;
	margin-bottom: 1rem;
}

.ncp-recert-option__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--pp-primary);
	margin: 0 0 0.5rem;
}

.ncp-recert-option__desc {
	font-size: 0.9rem;
	color: var(--pp-text-light);
	margin: 0;
	line-height: 1.65;
}

.ncp-recert-option__tag {
	display: inline-block;
	background: rgba(59, 130, 246, 0.1);
	color: #3b82f6;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.3rem 0.7rem;
	border-radius: 100px;
	margin-top: 0.75rem;
	border: 1px solid rgba(59, 130, 246, 0.25);
}

.ncp-recert__fee {
	text-align: center;
}

.ncp-recert__fee-box {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	background: var(--pp-bg-white);
	border: 2px solid var(--pp-accent);
	border-radius: var(--pp-radius);
	padding: 1.75rem 3.5rem;
	box-shadow: var(--pp-shadow);
}

.ncp-recert__fee-label {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--pp-text-light);
}

.ncp-recert__fee-amount {
	font-size: 2.25rem;
	font-weight: 900;
	color: var(--pp-primary);
}

.ncp-recert__fee-note {
	font-size: 0.85rem;
	color: var(--pp-text-light);
}


/* ─────────────────────────────────────────────────────
   SECTION 8: HONORARIUM POLICY
   ───────────────────────────────────────────────────── */

.ncp-honorarium {
	padding: 6rem 2rem;
	background: linear-gradient(180deg, #f8fafc 0%, var(--pp-bg-white) 100%);
}

.ncp-honorarium .ncp-section-desc {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.ncp-honorarium__criteria {
	background: var(--pp-bg-white);
	border: 1px solid rgba(13, 31, 53, 0.08);
	border-radius: 16px;
	padding: 2.5rem 2.75rem;
	margin-top: 2rem;
	text-align: center;
	box-shadow: 0 4px 24px rgba(26, 58, 95, 0.06);
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.ncp-honorarium__intro {
	font-size: 1.05rem;
	color: var(--pp-text-dark);
	font-weight: 500;
	margin: 0 0 1.75rem;
	line-height: 1.5;
}

.ncp-honorarium__conditions {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-bottom: 1.75rem;
}

.ncp-honorarium__condition {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: #fafbfc;
	border: 1px solid rgba(13, 31, 53, 0.08);
	border-radius: 14px;
	padding: 1.5rem 1.75rem;
	max-width: 280px;
	text-align: left;
	box-shadow: 0 2px 12px rgba(26, 58, 95, 0.04);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
	position: relative;
	overflow: hidden;
}

.ncp-honorarium__condition::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--pp-accent), var(--pp-accent-dark));
	opacity: 0;
	transition: opacity 0.25s ease;
}

.ncp-honorarium__condition:hover {
	border-color: rgba(212, 175, 55, 0.25);
	box-shadow: 0 8px 32px rgba(26, 58, 95, 0.08);
	transform: translateY(-2px);
}

.ncp-honorarium__condition:hover::before {
	opacity: 1;
}

.ncp-honorarium__condition p {
	font-size: 0.95rem;
	color: var(--pp-text-dark);
	margin: 0;
	line-height: 1.55;
}

.ncp-honorarium__condition-check {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(16, 185, 129, 0.12);
	border-radius: 50%;
	color: #059669;
}

.ncp-honorarium__condition-check svg {
	width: 14px;
	height: 14px;
	stroke: #059669;
	display: block;
}

.ncp-honorarium__and {
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--pp-primary);
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.35);
	padding: 0.5rem 1rem;
	border-radius: 8px;
	align-self: center;
}

.ncp-honorarium__note {
	font-size: 0.88rem;
	color: var(--pp-text-light);
	font-style: italic;
	margin: 0;
	line-height: 1.5;
}

.ncp-honorarium__structure-p {
	font-size: 0.9rem;
	color: var(--pp-text-light);
	margin: 1rem 0 0;
	line-height: 1.55;
}

.ncp-honorarium__structure {
	background: #ffffff;
	border: 1px solid var(--pp-border);
	border-radius: 16px;
	padding: 2rem 2.5rem;
	text-align: center;
}

.ncp-honorarium__structure-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--pp-primary);
	margin: 0 0 1.25rem;
}

.ncp-honorarium__structure-grid {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.ncp-honorarium__structure-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
}

.ncp-honorarium__structure-item span {
	font-size: 1.75rem;
}

.ncp-honorarium__structure-item span svg {
	width: 1.5rem;
	height: 1.5rem;
	stroke: var(--pp-primary);
}

.ncp-honorarium__structure-item p {
	font-size: 0.85rem;
	color: var(--pp-text-light);
	margin: 0;
}


/* ─────────────────────────────────────────────────────
   SECTION 9: CREDENTIALS — BADGE, PIN & CERTIFICATE
   Modern professional layout
   ───────────────────────────────────────────────────── */

.ncp-credentials {
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1rem;
	padding-right: 0rem;
	background: #f5f7fa;
}

.ncp-credentials__container {
	max-width: 1300px;
	margin: 0 auto;
	padding-left: 1rem;
	padding-right: 0rem;
}

.ncp-credentials__header {
	text-align: left;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--pp-border-subtle);
}

.ncp-credentials__title {
	font-size: clamp(1.85rem, 3.5vw, 2.4rem);
	font-weight: 800;
	color: var(--pp-primary);
	margin: 0 0 0.5rem;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.ncp-credentials__title::after {
	content: '';
	display: block;
	width: 64px;
	height: 4px;
	background: linear-gradient(90deg, var(--pp-accent), var(--pp-accent-dark));
	border-radius: 2px;
	margin: 1rem 0 0;
}

.ncp-credentials__subtitle {
	font-size: 1.05rem;
	color: var(--pp-text-light);
	margin: 0.75rem 0 0;
	max-width: 580px;
	line-height: 1.65;
}

/* Two-column: Left = Badge, Pin & Certificate | Right = Credentials */
.ncp-credentials__two-col {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 4rem;
	align-items: start;
	margin-top: 2rem;
}

.ncp-credentials__left,
.ncp-credentials__right {
	min-width: 0;
}

.ncp-credentials__left {
	padding-right: 1rem;
	border-right: 1px solid var(--pp-border-subtle);
}

.ncp-credentials__col-title {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--pp-primary);
	margin: 0 0 1rem;
}

.ncp-credentials__col-desc {
	font-size: 0.92rem;
	color: var(--pp-text-light);
	margin: 0 0 1.5rem;
	line-height: 1.6;
}

/* Credential cards — Badge & Pin (left column) */
.ncp-credentials__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.ncp-cred-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	text-align: left;
	gap: 1.5rem;
	background: var(--pp-bg-white);
	border: 1px solid var(--pp-border-subtle);
	border-radius: var(--pp-radius);
	padding: 1.75rem 2rem;
	transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.25s ease;
	position: relative;
	overflow: hidden;
	box-shadow: var(--pp-shadow);
}

.ncp-cred-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--pp-accent), var(--pp-accent-dark));
	opacity: 0;
	transition: opacity 0.25s ease;
}

.ncp-cred-card:hover {
	border-color: rgba(212, 175, 55, 0.28);
	box-shadow: var(--pp-shadow-hover);
	transform: translateY(-2px);
}

.ncp-cred-card:hover::before {
	opacity: 1;
}

.ncp-cred-card__visual {
	flex-shrink: 0;
	margin-bottom: 0;
}

.ncp-cred-card__graphic {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ncp-cred-card__graphic--badge {
	width: 100px;
	height: 100px;
	filter: drop-shadow(0 4px 16px rgba(26, 58, 95, 0.12));
}

.ncp-cred-card__graphic--badge svg {
	width: 100%;
	height: 100%;
}

.ncp-cred-card__graphic--pin {
	width: 88px;
	height: 88px;
	filter: drop-shadow(0 4px 14px rgba(26, 58, 95, 0.15));
}

.ncp-cred-card__graphic--pin svg {
	width: 100%;
	height: 100%;
}

.ncp-cred-card__content {
	flex: 1;
	min-width: 0;
	max-width: none;
}

.ncp-cred-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--pp-primary);
	margin: 0 0 0.35rem;
}

.ncp-cred-card__desc {
	font-size: 0.9rem;
	color: var(--pp-text-light);
	margin: 0;
	line-height: 1.55;
}

/* Right column: certificate preview */
.ncp-credentials__right .ncp-cert-preview {
	margin-top: 0;
}

/* Certificate template — professional certified design */
.ncp-cert-preview {
	position: relative;
	max-width: 600px;
	min-height: 520px;
	margin: 0 auto;
	background: #ffffff;
	border: none;
	border-radius: 0;
	box-shadow:
		0 0 0 1px #0d1f35,
		0 0 0 5px #ffffff,
		0 0 0 6px #0d1f35,
		0 20px 60px rgba(13, 31, 53, 0.12),
		inset 0 0 0 1px rgba(13, 31, 53, 0.04);
	overflow: visible;
}

.ncp-cert-preview__inner {
	padding: 3rem 2.75rem 3rem;
	min-height: 480px;
	text-align: center;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 0;
	background: #fcfbf9;
}

.ncp-cert-preview__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
}

.ncp-cert-preview__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
}

.ncp-cert-preview__logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.5rem;
}

.ncp-cert-preview__logo-img {
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.ncp-cert-preview__brand::after {
	content: '';
	display: block;
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--pp-accent), transparent);
	margin-top: 0.5rem;
	opacity: 0.8;
}

.ncp-cert-preview__org {
	font-size: 2.1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #0d1f35;
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	line-height: 1.2;
}

.ncp-cert-preview__tm {
	font-size: 0.4em;
	vertical-align: super;
	font-weight: 400;
	opacity: 0.85;
}

.ncp-cert-preview__program-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.ncp-cert-preview__program {
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #0d1f35;
	margin: 0;
	opacity: 0.85;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ncp-cert-preview__shield {
	color: #6b7280;
	flex-shrink: 0;
	opacity: 0.7;
}

.ncp-cert-preview__line {
	border: none;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, #0d1f35 15%, #0d1f35 85%, transparent 100%);
	opacity: 0.25;
	margin: 0 0 1.75rem;
}

.ncp-cert-preview__certifies {
	font-size: 0.85rem;
	color: #4b5563;
	font-style: italic;
	margin: 0 0 0.5rem;
	font-family: Georgia, 'Times New Roman', serif;
	letter-spacing: 0.02em;
}

.ncp-cert-preview__name {
	font-size: 2rem;
	font-weight: 500;
	color: #0d1f35;
	margin: 0 0 1.25rem;
	font-family: Georgia, 'Times New Roman', serif;
	letter-spacing: 0.04em;
	line-height: 1.25;
	border-bottom: 1px solid rgba(13, 31, 53, 0.15);
	display: inline-block;
	padding-bottom: 0.5rem;
}

.ncp-cert-preview__body {
	font-size: 0.8rem;
	color: #374151;
	line-height: 1.75;
	margin: 0 auto 1.75rem;
	font-style: italic;
	max-width: 40em;
	font-family: Georgia, serif;
}

.ncp-cert-preview__details {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	text-align: center;
	max-width: 400px;
	margin: 0 auto 2rem;
	padding: 1.25rem 1.5rem;
	background: rgba(13, 31, 53, 0.03);
	border-top: 1px solid rgba(13, 31, 53, 0.08);
	border-bottom: 1px solid rgba(13, 31, 53, 0.08);
}

.ncp-cert-preview__col {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	align-items: center;
}

.ncp-cert-preview__label {
	font-size: 0.56rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #6b7280;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ncp-cert-preview__value {
	font-size: 0.82rem;
	font-weight: 700;
	color: #0d1f35;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ncp-cert-preview__value--date {
	color: #0d9488;
	font-weight: 800;
}

.ncp-cert-preview__validity {
	font-size: 0.8rem;
	color: #4b5563;
	margin: 0.75rem 0 0;
	font-style: italic;
}

.ncp-cert-preview__footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
	margin-top: 1rem;
	position: relative;
	min-height: 96px;
}

.ncp-cert-preview__signature-block {
	text-align: left;
	max-width: 200px;
	margin: 0;
	padding: 0;
}

.ncp-cert-preview__signature-label {
	font-size: 0.72rem;
	color: #6b7280;
	font-style: italic;
	margin: 0 0 0.25rem;
	font-family: Georgia, 'Times New Roman', serif;
}

.ncp-cert-preview__signature-label::after {
	content: '';
	display: block;
	width: 120px;
	height: 1px;
	background: #0d1f35;
	opacity: 0.4;
	margin: 0.35rem 0 0.4rem;
}

.ncp-cert-preview__founder {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #0d1f35;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Certificate bottom: Credentials label + description */
.ncp-cert-preview__bottom {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(13, 31, 53, 0.1);
	text-align: center;
}

.ncp-cert-preview__bottom-title {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #0d1f35;
	margin: 0 0 0.35rem;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	opacity: 0.9;
}

.ncp-cert-preview__bottom-desc {
	font-size: 0.78rem;
	color: #6b7280;
	line-height: 1.5;
	margin: 0;
	max-width: 36em;
	margin-left: auto;
	margin-right: auto;
}

/* Seals — bottom right, overlapping, slightly outside border */
.ncp-cert-preview__seal-wrap {
	position: absolute;
	bottom: -6px;
	right: -6px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	pointer-events: none;
}

.ncp-cert-preview__seal--small {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: radial-gradient(145% 145% at 35% 25%, #f0ebe0 0%, #e2d9c8 50%, #d4c9b4 100%);
	border: 1px solid rgba(184, 160, 102, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.48rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: #374151;
	box-shadow: 0 2px 12px rgba(13, 31, 53, 0.08);
	position: relative;
	z-index: 2;
	margin-bottom: -14px;
	margin-right: 20px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ncp-cert-preview__seal--badge {
	width: 72px;
	height: 72px;
	filter: drop-shadow(0 6px 20px rgba(13, 31, 53, 0.25));
}

.ncp-cert-preview__seal--badge svg {
	width: 100%;
	height: 100%;
}


/* ─────────────────────────────────────────────────────
   SECTION 10: GOVERNANCE
   ───────────────────────────────────────────────────── */

.ncp-governance {
	padding: 5.5rem 2rem;
	background: var(--pp-bg-white);
}

.ncp-governance__subtitle {
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--pp-text-muted, #6b7280);
	margin: 0 0 0.75rem;
}

.ncp-governance__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.25rem;
	margin-bottom: 2.5rem;
	margin-top: 0;
}

.ncp-council-card {
	background: var(--pp-bg-light);
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius);
	padding: 1.75rem 1.25rem;
	text-align: center;
	transition: all 0.25s ease;
	box-shadow: var(--pp-shadow);
}

.ncp-council-card:hover {
	border-color: rgba(212, 175, 55, 0.35);
	box-shadow: var(--pp-shadow-hover);
	transform: translateY(-2px);
}

.ncp-council-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 auto 0.75rem;
	background: rgba(212, 175, 55, 0.1);
	border-radius: 12px;
}

.ncp-council-card__icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--pp-primary);
}

.ncp-council-card__role {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--pp-primary);
	margin: 0;
	line-height: 1.4;
}

.ncp-governance__responsibilities {
	background: var(--pp-bg-light);
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius);
	padding: 2rem 2.25rem;
	max-width: 520px;
	margin: 0 auto;
	box-shadow: var(--pp-shadow);
}

.ncp-governance__responsibilities h4 {
	font-size: 0.84rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--pp-primary);
	margin: 0 0 0.75rem;
}


/* ─────────────────────────────────────────────────────
   SECTION 11: ENTERPRISE
   ───────────────────────────────────────────────────── */

.ncp-enterprise {
	padding: 5.5rem 2rem;
	background: linear-gradient(165deg, var(--pp-primary-dark) 0%, var(--pp-primary) 50%, #1a3d62 100%);
	position: relative;
	overflow: hidden;
}

.ncp-enterprise::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

.ncp-enterprise__inner {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.ncp-enterprise__intro {
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.7;
	margin: 1rem 0 1.5rem;
}

.ncp-enterprise__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ncp-enterprise__list li {
	position: relative;
	padding-left: 1.6rem;
	margin-bottom: 0.6rem;
	font-size: 0.98rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.55;
}

.ncp-enterprise__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--pp-accent);
	font-weight: 700;
}

.ncp-enterprise-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--pp-radius-lg);
	padding: 2.25rem 2rem;
	text-align: center;
	backdrop-filter: blur(8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
	transition: all 0.25s ease;
}

.ncp-enterprise-card:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(212, 175, 55, 0.4);
}

.ncp-enterprise-card__title {
	font-size: 1.25rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 0.75rem;
}

.ncp-enterprise-card__desc {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.65;
	margin-bottom: 1.5rem;
}

.ncp-enterprise-card__note {
	margin-top: 1rem;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.55);
	font-style: italic;
}


/* ─────────────────────────────────────────────────────
   SECTION 12: FINAL CTA
   ───────────────────────────────────────────────────── */

.ncp-final-cta {
	padding: 6rem 2rem;
	background: linear-gradient(180deg, var(--pp-bg-light) 0%, var(--pp-primary) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
	background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&q=80&auto=format&fit=crop');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.ncp-final-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(13, 31, 53, 0.88) 0%, rgba(26, 58, 95, 0.85) 50%, rgba(26, 58, 95, 0.92) 100%);
	pointer-events: none;
}

.ncp-final-cta::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
	pointer-events: none;
}

.ncp-final-cta .ncp-container {
	position: relative;
	z-index: 1;
}

.ncp-final-cta__inner {
	max-width: 640px;
	margin: 0 auto;
	position: relative;
}

.ncp-final-cta__seal {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.75rem;
	opacity: 0.9;
}

.ncp-final-cta__seal svg { width: 100%; height: 100%; }

.ncp-final-cta__title {
	font-size: clamp(1.6rem, 3.8vw, 2.4rem);
	font-weight: 900;
	color: #ffffff;
	margin: 0 0 0.75rem;
	line-height: 1.2;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.ncp-final-cta__subtitle {
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	line-height: 1.65;
}

.ncp-final-cta__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.ncp-final-cta__actions .ncp-btn--gold {
	box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
}

.ncp-final-cta__restricted {
	margin: 0;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.95);
}

.ncp-final-cta__legal {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	font-style: italic;
}


/* ─────────────────────────────────────────────────────
   NCP RESPONSIVE
   ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.ncp-declaration__inner  { grid-template-columns: 160px 1fr; gap: 2.5rem; }
	.ncp-declaration__seal svg { width: 140px; height: 140px; }
	.ncp-why__inner          { grid-template-columns: 1fr; gap: 2.5rem; }
	.ncp-registry__inner     { grid-template-columns: 1fr; gap: 2.5rem; }
	.ncp-registry__card      { max-width: 380px; margin: 0 auto; }
	.ncp-registry-search__grid { grid-template-columns: 1fr 1fr; }
	.ncp-registry-results__grid { grid-template-columns: 1fr; }
	.ncp-enterprise__inner   { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
	.ncp-declaration { padding: 3.5rem 1.25rem; min-height: 0; }
	.ncp-declaration__inner  { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
	.ncp-declaration__seal   { display: none; }
	.ncp-declaration__actions { justify-content: center; }
	.ncp-declaration__pricing-strip { flex-direction: column; gap: 1rem; text-align: center; }
	.ncp-declaration__price-divider { width: 60px; height: 1px; }
	.ncp-eligibility__grid { grid-template-columns: 1fr 1fr; }
	.ncp-curriculum__grid { grid-template-columns: 1fr; }
	.ncp-recert__grid { grid-template-columns: 1fr; }
	.ncp-governance__grid { grid-template-columns: repeat(2, 1fr); }
	.ncp-impact-fund__content { grid-template-columns: 1fr; }
	.ncp-credentials__two-col { grid-template-columns: 1fr; gap: 2.5rem; }
	.ncp-credentials__left { padding-right: 0; border-right: none; padding-bottom: 2rem; border-bottom: 1px solid var(--pp-border-subtle); }
	.ncp-credentials__items { grid-template-columns: 1fr; }
	.ncp-cred-card { flex-direction: column; text-align: center; }
	.ncp-cert-preview { margin-left: 1rem; margin-right: 1rem; }
	.ncp-cert-preview__inner { padding: 1.5rem 1.25rem; }
	.ncp-cert-preview__org { font-size: 1.4rem; }
	.ncp-cert-preview__logo-img { max-height: 60px; }
	.ncp-cert-preview__name { font-size: 1.35rem; }
	.ncp-cert-preview__details { grid-template-columns: 1fr; }
	.ncp-cert-preview__footer { min-height: 72px; flex-wrap: wrap; }
	.ncp-cert-preview__seal--small { width: 36px; height: 36px; font-size: 0.45rem; margin-right: 14px; }
	.ncp-cert-preview__seal--badge { width: 56px; height: 56px; }

	.ncp-impact-fund,
	.ncp-eligibility,
	.ncp-why,
	.ncp-founding-offer,
	.ncp-curriculum,
	.ncp-registry,
	.ncp-recert,
	.ncp-honorarium,
	.ncp-credentials,
	.ncp-governance,
	.ncp-enterprise,
	.ncp-final-cta { padding: 3.5rem 1.25rem; }

	.ncp-why__pillars       { grid-template-columns: 1fr; }
	.ncp-founding-offer__cards { grid-template-columns: 1fr; }
	.ncp-registry__columns  { grid-template-columns: 1fr; }
	.ncp-honorarium__conditions { flex-direction: column; align-items: center; }
	.ncp-honorarium__condition { max-width: 100%; }
}

@media (max-width: 480px) {
	.ncp-section-title { font-size: 1.5rem; }
	.ncp-offer-card__price { font-size: 2.25rem; }
	.ncp-declaration__price-amount { font-size: 2rem; }
	.ncp-registry-search__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────
   NCP SPACING OVERRIDES (Requested)
   ───────────────────────────────────────────────────── */

.page-preceptor-program .ncp-declaration {
	margin-top: -90px;
	padding-top: 8rem;
	padding-bottom: 7rem;
}

.page-preceptor-program .ncp-impact-fund,
.page-preceptor-program .ncp-eligibility,
.page-preceptor-program .ncp-why,
.page-preceptor-program .ncp-founding-offer,
.page-preceptor-program .ncp-curriculum,
.page-preceptor-program .ncp-registry,
.page-preceptor-program .ncp-recert,
.page-preceptor-program .ncp-honorarium,
.page-preceptor-program .ncp-credentials,
.page-preceptor-program .ncp-governance,
.page-preceptor-program .ncp-enterprise,
.page-preceptor-program .ncp-final-cta {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

@media (max-width: 768px) {
	.page-preceptor-program .ncp-declaration {
		margin-top: -90px;
		padding-top: 7rem;
		padding-bottom: 5.5rem;
	}

	.page-preceptor-program .ncp-impact-fund,
	.page-preceptor-program .ncp-eligibility,
	.page-preceptor-program .ncp-why,
	.page-preceptor-program .ncp-founding-offer,
	.page-preceptor-program .ncp-curriculum,
	.page-preceptor-program .ncp-registry,
	.page-preceptor-program .ncp-recert,
	.page-preceptor-program .ncp-honorarium,
	.page-preceptor-program .ncp-credentials,
	.page-preceptor-program .ncp-governance,
	.page-preceptor-program .ncp-enterprise,
	.page-preceptor-program .ncp-final-cta {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
