/* ==========================================================================
   VTC Navy Van — main stylesheet
   ========================================================================== */

:root {
	--nv-primary: #0f172a;
	--nv-secondary: #2563eb;
	--nv-cta-hover: #1d4ed8;
	--nv-accent: #06b6d4;
	--nv-bg: #eef2f7;
	--nv-bg-alt: #e8eef6;
	--nv-text: #0f172a;
	--nv-text-muted: #475569;
	--nv-success: #16a34a;
	--nv-radius: 0.75rem;
	--nv-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.08);
	--nv-header-h: 4.5rem;
	--nv-sticky-h: 4rem;
	--nv-font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
	--nv-max: 1120px;
}

@font-face {
	font-family: "Plus Jakarta Sans";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/PlusJakartaSans-Variable.woff2") format("woff2");
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--nv-font);
	color: var(--nv-text);
	background-color: #e2e8f0;
	background-image:
		radial-gradient(ellipse 90% 55% at 8% -5%, rgba(37, 99, 235, 0.14), transparent 52%),
		radial-gradient(ellipse 70% 45% at 100% 5%, rgba(6, 182, 212, 0.12), transparent 48%),
		radial-gradient(ellipse 50% 40% at 50% 100%, rgba(15, 23, 42, 0.06), transparent 60%),
		linear-gradient(180deg, #e8eef6 0%, #dde5f0 35%, #eef2f7 70%, #e8eef6 100%);
	background-attachment: fixed;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--nv-secondary);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

a:hover {
	color: var(--nv-cta-hover);
}

:focus-visible {
	outline: 2px solid var(--nv-accent);
	outline-offset: 3px;
}

.nv-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 10000;
	background: var(--nv-primary);
	color: #fff;
	padding: 0.75rem 1rem;
}

.nv-skip-link:focus {
	left: 1rem;
	top: 1rem;
}

/* Layout */
.nv-wrap {
	width: min(100% - 2rem, var(--nv-max));
	margin-inline: auto;
}

.nv-section {
	padding: 4.5rem 0;
	position: relative;
}

.nv-section--alt,
.nv-section--soft {
	position: relative;
	background:
		radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.1), transparent 42%),
		radial-gradient(circle at 88% 100%, rgba(6, 182, 212, 0.08), transparent 40%),
		linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 -1px 0 rgba(15, 23, 42, 0.04);
}

.nv-section--texture {
	position: relative;
	background:
		radial-gradient(ellipse at 20% 10%, rgba(37, 99, 235, 0.09), transparent 45%),
		radial-gradient(ellipse at 80% 90%, rgba(6, 182, 212, 0.07), transparent 40%),
		linear-gradient(145deg, #f7f9fc 0%, #e9eef6 50%, #f4f7fb 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.nv-section--texture::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.45;
	background-image:
		repeating-linear-gradient(
			-14deg,
			transparent,
			transparent 10px,
			rgba(15, 23, 42, 0.028) 10px,
			rgba(15, 23, 42, 0.028) 11px
		);
}

.nv-section--navy {
	background:
		radial-gradient(ellipse at 30% 0%, rgba(37, 99, 235, 0.35), transparent 55%),
		linear-gradient(145deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
	color: #fff;
}

.nv-section--navy .nv-section__title,
.nv-section--navy .nv-trust__item strong {
	color: #fff;
}

.nv-section--navy .nv-trust__item span {
	color: rgba(248, 250, 252, 0.75);
}

.nv-section__title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.2;
	margin: 0 0 0.75rem;
	color: var(--nv-primary);
}

.nv-section__lead {
	color: var(--nv-text-muted);
	font-size: 1.125rem;
	max-width: 40rem;
	margin: 0 0 2rem;
}

/* Header */
.nv-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
	transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.nv-header.is-scrolled {
	box-shadow: var(--nv-shadow);
}

.nv-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--nv-header-h);
	width: min(100% - 2rem, var(--nv-max));
	margin-inline: auto;
}

.nv-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--nv-primary);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.02em;
}

.nv-logo img,
.nv-logo svg {
	width: 40px;
	height: 40px;
}

.nv-nav {
	display: none;
	align-items: center;
	gap: 1.5rem;
}

.nv-nav a {
	color: var(--nv-text);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
}

.nv-nav a:hover {
	color: var(--nv-secondary);
}

.nv-header__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.7rem 1.15rem;
	border-radius: var(--nv-radius);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	min-height: 44px;
}

.nv-btn--primary {
	background: var(--nv-secondary);
	color: #fff;
}

.nv-btn--primary:hover {
	background: var(--nv-cta-hover);
	color: #fff;
}

.nv-btn--ghost {
	background: transparent;
	color: var(--nv-primary);
	border-color: rgba(15, 23, 42, 0.15);
}

.nv-btn--ghost:hover {
	border-color: var(--nv-secondary);
	color: var(--nv-secondary);
}

.nv-btn--accent {
	background: var(--nv-accent);
	color: var(--nv-primary);
}

.nv-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: var(--nv-radius);
	background: #fff;
	cursor: pointer;
}

.nv-menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--nv-primary);
	position: relative;
}

.nv-menu-toggle span::before,
.nv-menu-toggle span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: var(--nv-primary);
}

.nv-menu-toggle span::before {
	top: -6px;
}

.nv-menu-toggle span::after {
	top: 6px;
}

.nv-nav-mobile {
	display: none;
	padding: 1rem 1rem 1.5rem;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
	background: #fff;
}

.nv-nav-mobile.is-open {
	display: block;
}

.nv-nav-mobile a {
	display: block;
	padding: 0.85rem 0;
	color: var(--nv-text);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

@media (min-width: 960px) {
	.nv-nav {
		display: flex;
	}
	.nv-menu-toggle {
		display: none;
	}
	.nv-nav-mobile {
		display: none !important;
	}
}

/* Hero */
.nv-hero {
	position: relative;
	min-height: min(92vh, 780px);
	display: flex;
	align-items: flex-end;
	padding: 5rem 0 4.5rem;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.nv-hero--photo .nv-hero__media {
	position: absolute;
	inset: 0;
	background-image: var(--nv-hero-image);
	background-size: cover;
	background-position: center 40%;
	transform: scale(1.04);
	z-index: 0;
}

.nv-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(105deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(15, 23, 42, 0.35) 72%, rgba(15, 23, 42, 0.55) 100%),
		linear-gradient(0deg, rgba(15, 23, 42, 0.75) 0%, transparent 45%);
}

.nv-hero__inner {
	position: relative;
	z-index: 2;
	width: min(100% - 2rem, var(--nv-max));
	margin-inline: auto;
}

.nv-hero__brand {
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	margin: 0 0 1rem;
	color: #fff;
}

.nv-hero h1 {
	font-size: clamp(1.75rem, 4.5vw, 3rem);
	line-height: 1.15;
	margin: 0 0 1rem;
	color: #fff;
	font-weight: 600;
	max-width: 18ch;
}

.nv-hero__text {
	font-size: 1.125rem;
	color: rgba(248, 250, 252, 0.88);
	max-width: 36rem;
	margin: 0 0 1.75rem;
}

.nv-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* Cards grid */
.nv-grid {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.nv-grid--2 {
		grid-template-columns: repeat(2, 1fr);
	}
	.nv-grid--3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 900px) {
	.nv-grid--4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

.nv-card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 0.85rem;
	padding: 1.5rem;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 2px 4px rgba(15, 23, 42, 0.04),
		0 14px 32px rgba(15, 23, 42, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	height: 100%;
	text-decoration: none;
	color: inherit;
	display: block;
}

.nv-card:hover {
	transform: translateY(-3px);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 8px 20px rgba(15, 23, 42, 0.1),
		0 20px 40px rgba(37, 99, 235, 0.08);
}

.nv-card__icon {
	width: 40px;
	height: 40px;
	border-radius: 0.5rem;
	background: rgba(37, 99, 235, 0.08);
	color: var(--nv-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.nv-card--center {
	text-align: center;
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.nv-card--center h3 {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	color: var(--nv-primary);
}

.nv-card--center p {
	margin: 0;
	color: var(--nv-text-muted);
	font-size: 0.95rem;
	max-width: 22rem;
}

.nv-card__icon-wrap {
	width: 72px;
	height: 72px;
	border-radius: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	background: linear-gradient(145deg, #3b82f6, #2563eb);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.nv-icon {
	display: flex;
	width: 40px;
	height: 40px;
}

.nv-icon svg {
	width: 100%;
	height: 100%;
}

.nv-card--on-dark {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.nv-card--on-dark h3 {
	color: #fff;
}

.nv-card--on-dark p {
	color: rgba(248, 250, 252, 0.75);
}

.nv-card--on-dark .nv-card__icon-wrap {
	background: linear-gradient(145deg, rgba(37, 99, 235, 0.35), rgba(6, 182, 212, 0.25));
	color: #67e8f9;
	box-shadow: none;
}

.nv-card--center:hover .nv-card__icon-wrap {
	transform: translateY(-2px);
	transition: transform 0.25s ease;
}

/* Why choose us — premium reasons band */
.nv-reasons {
	position: relative;
	padding: 5.5rem 0;
	overflow: hidden;
	background:
		radial-gradient(ellipse 70% 80% at 15% 20%, rgba(37, 99, 235, 0.28), transparent 55%),
		radial-gradient(ellipse 50% 60% at 90% 80%, rgba(6, 182, 212, 0.18), transparent 50%),
		linear-gradient(160deg, #0b1220 0%, #0f172a 45%, #111827 100%);
	color: #fff;
}

.nv-reasons::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		-18deg,
		transparent,
		transparent 14px,
		rgba(255, 255, 255, 0.015) 14px,
		rgba(255, 255, 255, 0.015) 15px
	);
	pointer-events: none;
}

.nv-reasons__header {
	position: relative;
	text-align: center;
	max-width: 36rem;
	margin: 0 auto 3rem;
}

.nv-reasons__eyebrow {
	margin: 0 0 0.85rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #67e8f9;
}

.nv-reasons__title {
	margin: 0 0 1rem;
	font-size: clamp(1.85rem, 3.5vw, 2.75rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: #fff;
}

.nv-reasons__title::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	margin: 1.1rem auto 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.nv-reasons__lead {
	margin: 1.15rem 0 0;
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(226, 232, 240, 0.78);
}

.nv-reasons__grid {
	position: relative;
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.nv-reasons__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.35rem;
	}
}

@media (min-width: 1024px) {
	.nv-reasons__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.25rem;
	}
}

.nv-reason {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1.4rem 2.15rem;
	border-radius: 1.15rem;
	background:
		linear-gradient(165deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.08) inset,
		0 18px 40px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(12px);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	min-height: 100%;
}

.nv-reason:hover {
	transform: translateY(-4px);
	border-color: rgba(103, 232, 249, 0.35);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.1) inset,
		0 22px 48px rgba(0, 0, 0, 0.35),
		0 0 0 1px rgba(37, 99, 235, 0.2);
}

.nv-reason__top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 1.25rem;
	width: 100%;
}

.nv-reason__index {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: rgba(103, 232, 249, 0.75);
}

.nv-reason__icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	background: linear-gradient(145deg, #3b82f6 0%, #2563eb 45%, #1d4ed8 100%);
	border: 2px solid rgba(255, 255, 255, 0.35);
	box-shadow:
		0 0 0 4px rgba(37, 99, 235, 0.25),
		0 10px 28px rgba(37, 99, 235, 0.55),
		0 2px 0 rgba(255, 255, 255, 0.25) inset;
}

.nv-reason__icon .nv-icon {
	width: 40px;
	height: 40px;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.nv-reason:hover .nv-reason__icon {
	background: linear-gradient(145deg, #22d3ee 0%, #06b6d4 50%, #0891b2 100%);
	box-shadow:
		0 0 0 4px rgba(6, 182, 212, 0.3),
		0 12px 32px rgba(6, 182, 212, 0.45),
		0 2px 0 rgba(255, 255, 255, 0.3) inset;
}

.nv-reason__title {
	margin: 0 0 0.65rem;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fff;
}

.nv-reason__text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: rgba(203, 213, 225, 0.88);
	max-width: 18rem;
}

.nv-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	color: var(--nv-primary);
}

.nv-card p {
	margin: 0;
	color: var(--nv-text-muted);
	font-size: 0.95rem;
}

/* Trust bar */
.nv-trust {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
	.nv-trust {
		grid-template-columns: repeat(4, 1fr);
	}
}

.nv-trust__item {
	text-align: center;
	padding: 1rem;
}

.nv-trust__item strong {
	display: block;
	font-size: 1.05rem;
	color: var(--nv-primary);
	margin-bottom: 0.25rem;
}

.nv-trust__item span {
	color: var(--nv-text-muted);
	font-size: 0.875rem;
}

/* FAQ */
.nv-faq details {
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	padding: 1rem 0;
}

.nv-faq summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--nv-primary);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	min-height: 44px;
}

.nv-faq summary::-webkit-details-marker {
	display: none;
}

.nv-faq summary::after {
	content: "+";
	font-size: 1.25rem;
	color: var(--nv-secondary);
}

.nv-faq details[open] summary::after {
	content: "−";
}

.nv-faq details p {
	margin: 0.75rem 0 0;
	color: var(--nv-text-muted);
}

/* CTA band */
.nv-cta-band {
	background: var(--nv-primary);
	color: #fff;
	padding: 3.5rem 0;
	text-align: center;
}

.nv-cta-band h2 {
	color: #fff;
	margin: 0 0 0.75rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.nv-cta-band p {
	color: rgba(248, 250, 252, 0.85);
	margin: 0 0 1.5rem;
}

.nv-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.nv-cta-band .nv-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
}

.nv-cta-band .nv-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: #fff;
}

.nv-split__content .nv-btn--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
}

/* Content prose */
.nv-prose {
	max-width: 720px;
	margin-inline: auto;
}

.nv-prose h2 {
	margin-top: 2.5rem;
}

.nv-prose h3 {
	margin-top: 1.75rem;
}

.nv-prose p,
.nv-prose li {
	color: var(--nv-text-muted);
}

.nv-prose ul {
	padding-left: 1.25rem;
}

.nv-page-hero {
	background: var(--nv-bg-alt);
	padding: 3rem 0 2rem;
	border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.nv-page-hero h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.nv-breadcrumb {
	font-size: 0.875rem;
	color: var(--nv-text-muted);
	margin-bottom: 1rem;
}

.nv-breadcrumb a {
	color: var(--nv-text-muted);
	text-decoration: none;
}

.nv-breadcrumb a:hover {
	color: var(--nv-secondary);
}

/* Footer */
.nv-footer {
	background: var(--nv-primary);
	color: rgba(248, 250, 252, 0.85);
	padding: 3.5rem 0 6rem;
}

@media (min-width: 960px) {
	.nv-footer {
		padding-bottom: 3.5rem;
	}
}

.nv-footer a {
	color: rgba(248, 250, 252, 0.9);
	text-decoration: none;
}

.nv-footer a:hover {
	color: var(--nv-accent);
}

.nv-footer__grid {
	display: grid;
	gap: 2rem;
}

@media (min-width: 768px) {
	.nv-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
	}
}

.nv-footer__brand {
	font-weight: 700;
	font-size: 1.15rem;
	color: #fff;
	margin-bottom: 0.75rem;
}

.nv-footer h3 {
	color: #fff;
	font-size: 0.95rem;
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.nv-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nv-footer li {
	margin-bottom: 0.5rem;
}

.nv-footer__bottom {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(248, 250, 252, 0.12);
	font-size: 0.875rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
}

/* Sticky mobile bar */
.nv-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	display: flex;
	background: #fff;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
	padding: 0.5rem;
	gap: 0.5rem;
	padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
}

.nv-sticky-bar .nv-btn {
	flex: 1;
}

@media (min-width: 960px) {
	.nv-sticky-bar {
		display: none;
	}
}

/* Forms */
.nv-form .wpcf7-form p {
	margin-bottom: 1rem;
}

.nv-form input[type="text"],
.nv-form input[type="email"],
.nv-form input[type="tel"],
.nv-form input[type="date"],
.nv-form input[type="number"],
.nv-form select,
.nv-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(15, 23, 42, 0.15);
	border-radius: var(--nv-radius);
	font: inherit;
	min-height: 48px;
	background: #fff;
}

.nv-form textarea {
	min-height: 120px;
}

.nv-form input[type="submit"],
.nv-form .wpcf7-submit {
	background: var(--nv-secondary);
	color: #fff;
	border: none;
	padding: 0.85rem 1.5rem;
	border-radius: var(--nv-radius);
	font-weight: 600;
	cursor: pointer;
	min-height: 48px;
	width: 100%;
}

@media (min-width: 640px) {
	.nv-form input[type="submit"],
	.nv-form .wpcf7-submit {
		width: auto;
	}
}

/* Reviews */
.nv-review {
	background: #fff;
	border-radius: 0.75rem;
	padding: 1.5rem;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.nv-review__stars {
	color: #f59e0b;
	letter-spacing: 0.1em;
	margin-bottom: 0.75rem;
}

.nv-review__author {
	font-weight: 600;
	margin-top: 1rem;
	color: var(--nv-primary);
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
	.nv-reveal {
		opacity: 0;
		transform: translateY(12px);
		transition: opacity 0.5s ease, transform 0.5s ease;
	}
	.nv-reveal.is-visible {
		opacity: 1;
		transform: none;
	}
}

/* WP content alignment */
.wp-site-blocks {
	padding: 0;
}

.entry-content > *.alignwide {
	max-width: var(--nv-max);
	margin-left: auto;
	margin-right: auto;
}

/* Media cards */
.nv-card--media {
	padding: 0;
	overflow: hidden;
}

.nv-card__img {
	height: 180px;
	background-size: cover;
	background-position: center;
}

.nv-card__body {
	padding: 1.25rem 1.4rem 1.5rem;
}

.nv-card__body--center {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.nv-card__body--center h3 {
	margin: 0 0 0.45rem;
}

.nv-card__body--center p {
	margin: 0;
}

.nv-card__icon-wrap--sm {
	width: 48px;
	height: 48px;
	border-radius: 0.75rem;
	margin-bottom: 0.85rem;
	background: linear-gradient(145deg, #3b82f6, #1d4ed8);
	color: #fff;
	box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
}

.nv-card__icon-wrap--sm .nv-icon {
	width: 26px;
	height: 26px;
	color: #fff;
}

.nv-card__body h3 {
	margin: 0 0 0.4rem;
}

.nv-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--nv-accent);
	margin: 0 0 0.75rem;
}

/* Split feature bands */
.nv-split {
	display: grid;
	min-height: 420px;
}

.nv-split__media {
	min-height: 280px;
	background-size: cover;
	background-position: center;
}

.nv-split__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 1.5rem;
	background:
		linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
	color: rgba(248, 250, 252, 0.9);
}

.nv-split__content h2 {
	color: #fff;
	margin: 0 0 1rem;
	font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.nv-split__content p {
	margin: 0 0 1.5rem;
	max-width: 36rem;
}

@media (min-width: 900px) {
	.nv-split {
		grid-template-columns: 1.1fr 1fr;
	}
	.nv-split--reverse .nv-split__media {
		order: 2;
	}
	.nv-split--reverse .nv-split__content {
		order: 1;
	}
	.nv-split__content {
		padding: 4rem 3.5rem;
	}
}

/* Page hero with photo */
.nv-page-hero--photo {
	position: relative;
	padding: 4rem 0 3rem;
	color: #fff;
	background:
		linear-gradient(120deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.55)),
		var(--nv-page-hero-image) center / cover no-repeat;
	border-bottom: none;
}

.nv-page-hero--photo h1 {
	color: #fff;
}

.nv-page-hero--photo .nv-breadcrumb,
.nv-page-hero--photo .nv-breadcrumb a {
	color: rgba(248, 250, 252, 0.8);
}

/* Contact layout */
.nv-contact-grid {
	display: grid;
	gap: 2rem;
}

@media (min-width: 900px) {
	.nv-contact-grid {
		grid-template-columns: 1fr 1.05fr;
		align-items: start;
	}
}

.nv-form-panel {
	background: #fff;
	border-radius: 1rem;
	padding: 1.75rem;
	box-shadow: var(--nv-shadow);
	border: 1px solid rgba(15, 23, 42, 0.06);
	position: sticky;
	top: calc(var(--nv-header-h) + 1rem);
}

.nv-form-panel h2 {
	margin: 0 0 0.35rem;
	font-size: 1.35rem;
}

.nv-form-panel__lead {
	margin: 0 0 1.25rem;
	color: var(--nv-text-muted);
	font-size: 0.95rem;
}

.nv-contact-card {
	margin-top: 1.5rem;
	padding: 1.25rem;
	border-radius: 0.75rem;
	background: rgba(37, 99, 235, 0.06);
	border: 1px solid rgba(37, 99, 235, 0.12);
}

.nv-form .wpcf7-form label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.35rem;
	color: var(--nv-primary);
}

.nv-form .wpcf7-form p {
	margin-bottom: 1rem;
}

.nv-form .wpcf7-not-valid-tip {
	font-size: 0.85rem;
}

.nv-form .wpcf7-response-output {
	margin: 1rem 0 0;
	border-radius: var(--nv-radius);
}

.nv-prose {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	backdrop-filter: blur(8px);
	padding: 1.85rem 1.75rem;
	border-radius: 1rem;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 2px 6px rgba(15, 23, 42, 0.04),
		0 16px 36px rgba(15, 23, 42, 0.08);
	max-width: none;
}

.nv-prose > *:first-child {
	margin-top: 0;
}

.nv-inline-figure {
	margin: 1.75rem 0;
	border-radius: 0.85rem;
	overflow: hidden;
	box-shadow: var(--nv-shadow);
	background: #0f172a;
}

.nv-inline-figure img {
	width: 100%;
	height: auto;
	display: block;
}

.nv-inline-figure figcaption {
	padding: 0.65rem 1rem;
	font-size: 0.85rem;
	color: rgba(248, 250, 252, 0.85);
	background: #0f172a;
}

.nv-card {
	background: rgba(255, 255, 255, 0.96);
}

.nv-review {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 10px 28px rgba(15, 23, 42, 0.07);
	border: 1px solid rgba(15, 23, 42, 0.08);
}
