:root {
	--nv-navy-950: #07172d;
	--nv-navy-900: #0b1f3a;
	--nv-navy-800: #102a56;
	--nv-blue-700: #1f4f9b;
	--nv-blue-600: #2f65bd;
	--nv-gold-500: #f2b43c;
	--nv-gold-400: #ffc857;
	--nv-cream: #f8f5ed;
	--nv-paper: #fffdf8;
	--nv-ink: #17243a;
	--nv-muted: #617087;
	--nv-line: #dfe5ee;
	--nv-shadow: 0 24px 70px rgba(8, 30, 58, 0.12);
}

html {
	scroll-behavior: smooth;
}

body.novasis-one-click-page {
	margin: 0;
	background: var(--nv-paper);
	color: var(--nv-ink);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

.novasis-one-click-page *,
.novasis-one-click-page *::before,
.novasis-one-click-page *::after {
	box-sizing: border-box;
}

.novasis-one-click-page a {
	color: inherit;
	text-decoration: none;
}

.nv-site {
	min-height: 100vh;
	background: var(--nv-paper);
}

.nv-container {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.nv-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 99999;
	padding: 10px 16px;
	background: #fff;
	color: var(--nv-navy-900);
	transform: translateY(-150%);
	transition: transform 0.2s ease;
}

.nv-skip-link:focus {
	transform: translateY(0);
}

.nv-topbar {
	background: var(--nv-navy-950);
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	letter-spacing: 0.03em;
}

.nv-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
}

.nv-topbar a {
	color: var(--nv-gold-400);
	font-weight: 700;
}

.nv-topbar a span {
	display: inline-block;
	margin-left: 4px;
	transition: transform 0.2s ease;
}

.nv-topbar a:hover span {
	transform: translateX(3px);
}

.nv-header {
	position: sticky;
	top: var(--wp-admin--admin-bar--height, 0);
	z-index: 60;
	background: rgba(255, 253, 248, 0.94);
	border-bottom: 1px solid rgba(11, 31, 58, 0.08);
	box-shadow: 0 8px 30px rgba(7, 23, 45, 0.04);
	backdrop-filter: blur(16px);
}

.nv-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 30px;
	min-height: 78px;
}

.nv-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	flex: 0 0 auto;
}

.nv-brand__image {
	display: block;
	width: 70px;
	max-width: none;
	height: 70px;
	object-fit: contain;
	transform: scale(1.28);
}

.nv-brand__logo-wrap {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	overflow: hidden;
	border-radius: 10px;
	background: #fff;
}

.nv-brand__mark {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-items: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--nv-gold-500);
	box-shadow: 0 9px 22px rgba(242, 180, 60, 0.3);
	color: var(--nv-navy-950);
	font-size: 17px;
	font-weight: 900;
	line-height: 1;
}

.nv-brand__mark i {
	position: absolute;
	top: 9px;
	bottom: 9px;
	left: 50%;
	width: 1px;
	background: rgba(7, 23, 45, 0.35);
	transform: rotate(13deg);
}

.nv-brand__type {
	display: flex;
	flex-direction: column;
	color: var(--nv-navy-900);
	line-height: 1;
}

.nv-brand__type strong {
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.nv-brand__type small {
	margin-top: 6px;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.42em;
}

.nv-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(14px, 2vw, 28px);
	margin-left: auto;
}

.nv-menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	padding: 0 15px;
	border: 1px solid rgba(11, 31, 58, 0.12);
	border-radius: 10px;
	background: #fff;
	color: var(--nv-navy-900);
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.nv-menu-toggle i,
.nv-menu-toggle i::before,
.nv-menu-toggle i::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	content: "";
	transition: transform 0.2s ease;
}

.nv-menu-toggle i {
	position: relative;
}

.nv-menu-toggle i::before {
	position: absolute;
	top: -6px;
}

.nv-menu-toggle i::after {
	position: absolute;
	top: 6px;
}

.nv-menu-toggle[aria-expanded="true"] i {
	background: transparent;
}

.nv-menu-toggle[aria-expanded="true"] i::before {
	top: 0;
	transform: rotate(45deg);
}

.nv-menu-toggle[aria-expanded="true"] i::after {
	top: 0;
	transform: rotate(-45deg);
}

.nv-nav a {
	position: relative;
	color: #33445f;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.nv-nav a::after {
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 2px;
	background: var(--nv-gold-500);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.22s ease;
}

.nv-nav a:hover::after,
.nv-nav a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nv-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 52px;
	padding: 0 25px;
	border: 1px solid var(--nv-gold-500);
	border-radius: 12px;
	background: var(--nv-gold-500);
	box-shadow: 0 12px 28px rgba(242, 180, 60, 0.24);
	color: var(--nv-navy-950);
	font-size: 13px;
	font-weight: 800;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nv-button:hover,
.nv-button:focus-visible {
	background: var(--nv-gold-400);
	box-shadow: 0 16px 34px rgba(242, 180, 60, 0.34);
	transform: translateY(-2px);
}

.nv-button--small {
	min-height: 42px;
	padding-inline: 19px;
	border-radius: 10px;
}

.nv-button--ghost {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: none;
	color: #fff;
}

.nv-button--ghost:hover,
.nv-button--ghost:focus-visible {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: none;
}

.nv-hero {
	position: relative;
	min-height: 690px;
	overflow: hidden;
	background:
		linear-gradient(105deg, rgba(5, 19, 39, 0.98) 0%, rgba(9, 31, 61, 0.98) 53%, rgba(15, 46, 88, 0.97) 100%);
	color: #fff;
}

.nv-hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 48px 48px;
	content: "";
	mask-image: linear-gradient(to right, black, transparent 82%);
}

.nv-hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(8px);
	pointer-events: none;
}

.nv-hero__glow--one {
	top: -180px;
	right: 5%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(50, 105, 196, 0.32), transparent 65%);
}

.nv-hero__glow--two {
	bottom: -300px;
	left: -10%;
	width: 620px;
	height: 620px;
	background: radial-gradient(circle, rgba(242, 180, 60, 0.12), transparent 65%);
}

.nv-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
	align-items: center;
	gap: 58px;
	min-height: 690px;
	padding-block: 78px;
}

.nv-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--nv-blue-700);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.nv-eyebrow > span {
	display: inline-block;
	width: 24px;
	height: 3px;
	border-radius: 2px;
	background: var(--nv-gold-500);
}

.nv-hero .nv-eyebrow {
	color: var(--nv-gold-400);
}

.nv-hero__content h1 {
	max-width: 670px;
	margin: 18px 0 24px;
	color: #fff;
	font-size: clamp(46px, 5.5vw, 76px);
	font-weight: 850;
	letter-spacing: -0.052em;
	line-height: 0.99;
}

.nv-hero__content h1 em,
.nv-section-heading h2 em,
.nv-program h2 em,
.nv-why h2 em {
	color: var(--nv-gold-400);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
}

.nv-hero__content h1 em {
	display: block;
	font-size: 0.78em;
	letter-spacing: -0.045em;
	white-space: nowrap;
}

.nv-hero__content > p {
	max-width: 610px;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 17px;
	line-height: 1.8;
}

.nv-hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 34px;
}

.nv-trust {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 36px;
}

.nv-trust__avatars {
	display: flex;
}

.nv-trust__avatars span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-left: -8px;
	border: 2px solid var(--nv-navy-900);
	border-radius: 50%;
	background: var(--nv-blue-600);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
}

.nv-trust__avatars span:first-child {
	margin-left: 0;
	background: var(--nv-gold-500);
	color: var(--nv-navy-950);
}

.nv-trust__avatars span:nth-child(3) {
	background: #2f8d83;
}

.nv-trust__avatars span:nth-child(4) {
	background: #8054a6;
}

.nv-trust p {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 11px;
	line-height: 1.4;
}

.nv-trust strong {
	color: #fff;
	font-size: 12px;
}

.nv-hero__visual {
	position: relative;
	min-height: 510px;
	perspective: 1200px;
}

.nv-hero__managed-image {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
}

.nv-hero__managed-image::after {
	position: absolute;
	right: 8%;
	bottom: 3%;
	left: 8%;
	height: 12%;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.28);
	filter: blur(24px);
	content: "";
}

.nv-hero__managed-image img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	max-height: 510px;
	object-fit: contain;
	filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.3));
}

.nv-orbit {
	position: absolute;
	top: 50%;
	left: 53%;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 50%;
	transform: translate(-50%, -50%) rotate(-12deg);
}

.nv-orbit--one {
	width: 500px;
	height: 280px;
}

.nv-orbit--two {
	width: 380px;
	height: 520px;
}

.nv-orbit::after {
	position: absolute;
	top: -5px;
	left: 50%;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--nv-gold-500);
	box-shadow: 0 0 20px rgba(242, 180, 60, 0.8);
	content: "";
}

.nv-book {
	position: absolute;
	left: 50%;
	display: flex;
	flex-direction: column;
	width: 268px;
	height: 376px;
	padding: 34px 28px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 8px 18px 18px 8px;
	box-shadow: 24px 30px 55px rgba(0, 0, 0, 0.28);
	transform-style: preserve-3d;
}

.nv-book::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 16px;
	width: 1px;
	background: rgba(255, 255, 255, 0.25);
	content: "";
}

.nv-book::after {
	position: absolute;
	right: 10px;
	bottom: -9px;
	left: 10px;
	height: 9px;
	border-radius: 0 0 8px 8px;
	background: repeating-linear-gradient(to bottom, #fff 0, #fff 1px, #dedede 2px, #fff 3px);
	content: "";
	transform: skewX(-35deg);
	transform-origin: left top;
}

.nv-book > span,
.nv-book__brand {
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.18em;
}

.nv-book > strong {
	margin-top: 8px;
	font-size: 25px;
	letter-spacing: -0.03em;
	line-height: 1.03;
}

.nv-book > small {
	margin-top: auto;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.nv-book--back {
	top: 42px;
	margin-left: -10px;
	background: linear-gradient(145deg, #e8edf4, #b9c7d8);
	color: var(--nv-navy-900);
	transform: rotateY(-16deg) rotateZ(10deg) translateX(80px);
}

.nv-book--middle {
	top: 70px;
	margin-left: -220px;
	background: linear-gradient(145deg, #2b63ac, #15396d);
	color: #fff;
	transform: rotateY(13deg) rotateZ(-8deg);
}

.nv-book--front {
	top: 86px;
	margin-left: -112px;
	background:
		radial-gradient(circle at 80% 14%, rgba(255, 255, 255, 0.2), transparent 25%),
		linear-gradient(145deg, #f8c14f, #dc951c);
	color: var(--nv-navy-950);
	transform: rotateY(-4deg) rotateZ(1deg) translateZ(70px);
}

.nv-book--front .nv-book__brand {
	margin-bottom: 64px;
}

.nv-book--front > span {
	opacity: 0.76;
}

.nv-book--front > strong {
	font-size: 32px;
}

.nv-float-card {
	position: absolute;
	z-index: 8;
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 190px;
	padding: 13px 16px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	color: var(--nv-navy-900);
	backdrop-filter: blur(12px);
}

.nv-float-card b {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--nv-gold-500);
	font-size: 15px;
}

.nv-float-card span {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.nv-float-card strong {
	font-size: 12px;
}

.nv-float-card small {
	margin-top: 3px;
	color: var(--nv-muted);
	font-size: 9px;
}

.nv-float-card--score {
	top: 18px;
	right: -5px;
}

.nv-float-card--video {
	bottom: 8px;
	left: 6px;
}

.nv-float-card--video b {
	background: var(--nv-blue-600);
	color: #fff;
}

.nv-metrics {
	position: relative;
	z-index: 4;
	margin-top: -1px;
	background: #fff;
	border-bottom: 1px solid var(--nv-line);
}

.nv-metrics__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding-block: 28px;
}

.nv-metrics__grid > div {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 52px;
	padding-inline: 26px;
	border-right: 1px solid var(--nv-line);
}

.nv-metrics__grid > div:first-child {
	padding-left: 0;
}

.nv-metrics__grid > div:last-child {
	padding-right: 0;
	border-right: 0;
}

.nv-metrics strong {
	color: var(--nv-blue-700);
	font-size: 27px;
	letter-spacing: -0.04em;
}

.nv-metrics span {
	max-width: 120px;
	color: var(--nv-muted);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.35;
}

.nv-section {
	padding-block: 96px;
}

.nv-ecosystem {
	background:
		radial-gradient(circle at 10% 15%, rgba(242, 180, 60, 0.08), transparent 22%),
		var(--nv-paper);
}

.nv-section-heading {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	align-items: end;
	gap: 60px;
	margin-bottom: 54px;
}

.nv-section-heading h2,
.nv-program h2,
.nv-why h2 {
	margin: 14px 0 0;
	color: var(--nv-navy-900);
	font-size: clamp(35px, 4vw, 52px);
	font-weight: 850;
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.nv-section-heading h2 em,
.nv-why h2 em {
	color: var(--nv-blue-700);
}

.nv-section-heading > p {
	margin: 0 0 6px;
	color: var(--nv-muted);
	font-size: 15px;
	line-height: 1.8;
}

.nv-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.nv-feature-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 315px;
	padding: 30px;
	overflow: hidden;
	border: 1px solid rgba(11, 31, 58, 0.08);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 14px 40px rgba(11, 31, 58, 0.055);
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.nv-feature-card::after {
	position: absolute;
	top: -60px;
	right: -60px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: var(--card-tint, rgba(242, 180, 60, 0.12));
	content: "";
	transition: transform 0.3s ease;
}

.nv-feature-card:hover,
.nv-feature-card:focus-visible {
	border-color: rgba(31, 79, 155, 0.24);
	box-shadow: 0 22px 50px rgba(11, 31, 58, 0.11);
	transform: translateY(-6px);
}

.nv-feature-card:hover::after {
	transform: scale(1.2);
}

.nv-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 25px;
	border-radius: 14px;
	background: var(--card-accent, var(--nv-gold-500));
	box-shadow: 0 10px 24px var(--card-shadow, rgba(242, 180, 60, 0.2));
	color: var(--card-icon, var(--nv-navy-950));
	font-size: 22px;
	font-weight: 900;
}

.nv-feature-card__image {
	position: relative;
	z-index: 1;
	display: block;
	width: calc(100% + 60px);
	height: 168px;
	margin: -30px -30px 24px;
	background: #eef2f7;
	object-fit: cover;
}

.nv-feature-card > small {
	color: var(--card-accent, var(--nv-blue-700));
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.15em;
}

.nv-feature-card h3 {
	margin: 7px 0 10px;
	color: var(--nv-navy-900);
	font-size: 21px;
	line-height: 1.2;
}

.nv-feature-card p {
	margin: 0;
	color: var(--nv-muted);
	font-size: 13px;
	line-height: 1.7;
}

.nv-feature-card > b {
	margin-top: auto;
	padding-top: 22px;
	color: var(--nv-navy-900);
	font-size: 11px;
}

.nv-feature-card > b span {
	display: inline-block;
	margin-left: 5px;
	color: var(--card-accent, var(--nv-gold-500));
	transition: transform 0.2s ease;
}

.nv-feature-card:hover > b span {
	transform: translateX(4px);
}

.nv-feature-card--gold {
	--card-accent: #f2b43c;
	--card-tint: rgba(242, 180, 60, 0.13);
	--card-shadow: rgba(242, 180, 60, 0.22);
}

.nv-feature-card--blue {
	--card-accent: #3974cd;
	--card-tint: rgba(57, 116, 205, 0.11);
	--card-shadow: rgba(57, 116, 205, 0.2);
	--card-icon: #fff;
}

.nv-feature-card--navy {
	--card-accent: #15365f;
	--card-tint: rgba(21, 54, 95, 0.1);
	--card-shadow: rgba(21, 54, 95, 0.18);
	--card-icon: #fff;
}

.nv-feature-card--mint {
	--card-accent: #3d9d91;
	--card-tint: rgba(61, 157, 145, 0.11);
	--card-shadow: rgba(61, 157, 145, 0.18);
	--card-icon: #fff;
}

.nv-feature-card--violet {
	--card-accent: #8057a6;
	--card-tint: rgba(128, 87, 166, 0.1);
	--card-shadow: rgba(128, 87, 166, 0.18);
	--card-icon: #fff;
}

.nv-feature-card--coral {
	--card-accent: #d76d51;
	--card-tint: rgba(215, 109, 81, 0.1);
	--card-shadow: rgba(215, 109, 81, 0.18);
	--card-icon: #fff;
}

.nv-program {
	position: relative;
	overflow: hidden;
	background: var(--nv-navy-900);
	color: #fff;
}

.nv-program::before {
	position: absolute;
	top: -45%;
	right: -10%;
	width: 720px;
	height: 720px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.02), 0 0 0 160px rgba(255, 255, 255, 0.012);
	content: "";
}

.nv-program__grid {
	position: relative;
	display: grid;
	grid-template-columns: 0.75fr 1.25fr;
	gap: 95px;
	align-items: center;
}

.nv-eyebrow--light {
	color: var(--nv-gold-400);
}

.nv-program h2 {
	color: #fff;
}

.nv-program__intro > p {
	max-width: 430px;
	margin: 24px 0 28px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 15px;
	line-height: 1.8;
}

.nv-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(242, 180, 60, 0.5);
	color: var(--nv-gold-400);
	font-size: 12px;
	font-weight: 800;
}

.nv-text-link span {
	transition: transform 0.2s ease;
}

.nv-text-link:hover span {
	transform: translateX(4px);
}

.nv-steps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	margin: 0;
	padding: 1px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.12);
	list-style: none;
}

.nv-steps li {
	display: flex;
	gap: 18px;
	min-height: 170px;
	padding: 28px;
	background: #112d54;
}

.nv-steps li:first-child {
	border-radius: 19px 0 0;
}

.nv-steps li:nth-child(2) {
	border-radius: 0 19px 0 0;
}

.nv-steps li:nth-child(3) {
	border-radius: 0 0 0 19px;
}

.nv-steps li:last-child {
	border-radius: 0 0 19px;
}

.nv-steps li > span {
	color: var(--nv-gold-400);
	font-family: Georgia, serif;
	font-size: 18px;
	font-weight: 700;
}

.nv-steps strong {
	display: block;
	margin: 1px 0 9px;
	color: #fff;
	font-size: 19px;
}

.nv-steps p {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 12px;
	line-height: 1.7;
}

.nv-products {
	background: #f3f6fa;
}

.nv-section-heading--compact {
	grid-template-columns: 1fr auto;
	align-items: end;
}

.nv-section-heading--compact h2 {
	font-size: clamp(34px, 3.5vw, 46px);
}

.nv-text-link--dark {
	color: var(--nv-blue-700);
}

.nv-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.nv-product-card {
	overflow: hidden;
	border: 1px solid rgba(11, 31, 58, 0.08);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(11, 31, 58, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nv-product-card:hover {
	box-shadow: 0 20px 44px rgba(11, 31, 58, 0.12);
	transform: translateY(-5px);
}

.nv-product-card__image {
	display: grid;
	place-items: center;
	height: 260px;
	padding: 24px;
	background:
		linear-gradient(135deg, rgba(242, 180, 60, 0.09), rgba(31, 79, 155, 0.1)),
		#f8fafc;
}

.nv-product-card__image img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 16px 18px rgba(11, 31, 58, 0.18));
}

.nv-product-card__image > span {
	display: grid;
	place-items: center;
	width: 110px;
	height: 150px;
	border-radius: 5px 12px 12px 5px;
	background: var(--nv-navy-800);
	box-shadow: 14px 16px 25px rgba(11, 31, 58, 0.18);
	color: var(--nv-gold-400);
	font-size: 32px;
	font-weight: 900;
}

.nv-product-card__body {
	padding: 22px 24px 25px;
}

.nv-product-card__body small {
	color: var(--nv-blue-700);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.nv-product-card__body h3 {
	margin: 6px 0 0;
	color: var(--nv-navy-900);
	font-size: 17px;
	line-height: 1.35;
}

.nv-product-card__price {
	margin-top: 10px;
	color: var(--nv-blue-700);
	font-size: 14px;
	font-weight: 800;
}

.nv-why {
	background: #fff;
}

.nv-why__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 90px;
	align-items: center;
}

.nv-why__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 470px;
	padding: 46px;
	overflow: hidden;
	border-radius: 26px;
	background:
		linear-gradient(145deg, rgba(242, 180, 60, 0.97), rgba(230, 152, 26, 0.97));
	box-shadow: var(--nv-shadow);
	color: var(--nv-navy-950);
}

.nv-why__panel::before {
	position: absolute;
	top: 55px;
	right: 45px;
	width: 110px;
	height: 150px;
	border: 2px solid rgba(7, 23, 45, 0.2);
	border-radius: 5px 14px 14px 5px;
	box-shadow: -14px 14px 0 rgba(7, 23, 45, 0.07), -28px 28px 0 rgba(7, 23, 45, 0.05);
	content: "";
	transform: rotate(8deg);
}

.nv-why__panel.has-managed-image {
	background-position: center;
	background-size: cover;
	color: #fff;
}

.nv-why__panel.has-managed-image::before,
.nv-why__panel.has-managed-image .nv-why__rings {
	display: none;
}

.nv-why__panel.has-managed-image > * {
	z-index: 1;
}

.nv-why__rings {
	position: absolute;
	top: -150px;
	left: -130px;
	width: 390px;
	height: 390px;
	border: 1px solid rgba(7, 23, 45, 0.14);
	border-radius: 50%;
	box-shadow: 0 0 0 55px rgba(7, 23, 45, 0.04), 0 0 0 110px rgba(7, 23, 45, 0.025);
}

.nv-why__panel > span {
	position: relative;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.nv-why__panel > strong {
	position: relative;
	max-width: 370px;
	margin-top: 9px;
	font-size: clamp(28px, 3vw, 39px);
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.nv-why__panel > p {
	position: relative;
	max-width: 380px;
	margin: 19px 0 0;
	font-size: 13px;
	line-height: 1.7;
}

.nv-why__content ul {
	display: grid;
	gap: 9px;
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.nv-why__content li {
	display: flex;
	gap: 15px;
	padding: 18px 20px;
	border: 1px solid var(--nv-line);
	border-radius: 14px;
	background: #fff;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.nv-why__content li:hover {
	border-color: rgba(31, 79, 155, 0.3);
	transform: translateX(4px);
}

.nv-why__content li > b {
	display: grid;
	place-items: center;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(242, 180, 60, 0.17);
	color: #b87300;
	font-size: 12px;
}

.nv-why__content li > span {
	display: flex;
	flex-direction: column;
}

.nv-why__content li strong {
	color: var(--nv-navy-900);
	font-size: 14px;
}

.nv-why__content li small {
	margin-top: 3px;
	color: var(--nv-muted);
	font-size: 11px;
	line-height: 1.55;
}

.nv-cta {
	padding-block: 0 90px;
	background: #fff;
}

.nv-cta__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 45px;
	padding: 56px 62px;
	overflow: hidden;
	border-radius: 24px;
	background:
		radial-gradient(circle at 88% 10%, rgba(75, 127, 212, 0.48), transparent 27%),
		linear-gradient(120deg, var(--nv-navy-950), var(--nv-blue-700));
	box-shadow: var(--nv-shadow);
	color: #fff;
}

.nv-cta__inner::after {
	position: absolute;
	top: -100px;
	right: 8%;
	width: 310px;
	height: 310px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025), 0 0 0 90px rgba(255, 255, 255, 0.02);
	content: "";
}

.nv-cta__inner > * {
	position: relative;
	z-index: 2;
}

.nv-cta__inner > div > span {
	color: var(--nv-gold-400);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.18em;
}

.nv-cta h2 {
	margin: 8px 0 8px;
	font-size: clamp(29px, 3vw, 42px);
	letter-spacing: -0.04em;
	line-height: 1.12;
}

.nv-cta p {
	max-width: 690px;
	margin: 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
}

.nv-button--light {
	flex: 0 0 auto;
	border-color: #fff;
	background: #fff;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
	color: var(--nv-navy-900);
}

.nv-button--light:hover,
.nv-button--light:focus-visible {
	border-color: var(--nv-gold-400);
	background: var(--nv-gold-400);
}

.nv-footer {
	background: var(--nv-navy-950);
	color: rgba(255, 255, 255, 0.62);
}

.nv-footer__top {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 60px;
	padding-block: 68px 58px;
}

.nv-brand--footer .nv-brand__type {
	color: #fff;
}

.nv-footer__brand p {
	margin: 17px 0 0;
	color: rgba(255, 255, 255, 0.48);
	font-family: Georgia, serif;
	font-size: 14px;
	font-style: italic;
}

.nv-footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nv-footer__links strong {
	margin-bottom: 5px;
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.05em;
}

.nv-footer__links a {
	font-size: 11px;
	transition: color 0.2s ease, transform 0.2s ease;
}

.nv-footer__links a:hover {
	color: var(--nv-gold-400);
	transform: translateX(3px);
}

.nv-footer__bottom {
	display: flex;
	justify-content: space-between;
	padding-block: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 9px;
	letter-spacing: 0.04em;
}

@media (max-width: 1060px) {
	.nv-header__inner {
		gap: 18px;
	}

	.nv-nav {
		gap: 15px;
	}

	.nv-nav a {
		font-size: 11px;
	}

	.nv-header .nv-button--small {
		display: none;
	}

	.nv-hero__grid {
		grid-template-columns: 1fr 0.82fr;
		gap: 20px;
	}

	.nv-book {
		transform: scale(0.88);
	}

	.nv-book--back {
		transform: rotateY(-16deg) rotateZ(10deg) translateX(50px) scale(0.88);
	}

	.nv-book--middle {
		margin-left: -190px;
		transform: rotateY(13deg) rotateZ(-8deg) scale(0.88);
	}

	.nv-book--front {
		margin-left: -100px;
		transform: rotateY(-4deg) rotateZ(1deg) translateZ(70px) scale(0.88);
	}

	.nv-card-grid,
	.nv-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nv-program__grid {
		gap: 55px;
	}

	.nv-why__grid {
		gap: 55px;
	}

	.nv-footer__top {
		gap: 30px;
	}
}

@media (max-width: 820px) {
	.nv-container {
		width: min(100% - 34px, 680px);
	}

	.nv-topbar__inner {
		justify-content: center;
	}

	.nv-topbar__inner > span {
		display: none;
	}

	.nv-header__inner {
		justify-content: space-between;
		padding-block: 10px;
	}

	.nv-brand {
		margin-right: 0;
	}

	.nv-menu-toggle {
		display: inline-flex;
	}

	.nv-nav {
		position: absolute;
		top: calc(100% - 1px);
		right: 0;
		left: 0;
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		width: 100%;
		padding: 10px;
		border: 1px solid rgba(11, 31, 58, 0.1);
		border-radius: 0 0 14px 14px;
		background: rgba(255, 253, 248, 0.99);
		box-shadow: 0 22px 45px rgba(7, 23, 45, 0.15);
	}

	.nv-nav.is-open {
		display: flex;
	}

	.nv-nav a {
		padding: 11px 12px;
		border-radius: 8px;
		font-size: 13px;
	}

	.nv-nav a:hover,
	.nv-nav a:focus-visible {
		background: rgba(242, 180, 60, 0.12);
	}

	.nv-nav a::after {
		display: none;
	}

	.nv-hero,
	.nv-hero__grid {
		min-height: auto;
	}

	.nv-hero__grid {
		grid-template-columns: 1fr;
		padding-block: 75px 25px;
	}

	.nv-hero__content {
		max-width: 650px;
	}

	.nv-hero__content h1 em {
		font-size: 0.9em;
		white-space: normal;
	}

	.nv-hero__visual {
		min-height: 500px;
		transform: scale(0.9);
		transform-origin: center top;
	}

	.nv-metrics__grid {
		grid-template-columns: 1fr 1fr;
	}

	.nv-metrics__grid > div {
		padding: 16px 22px;
		border-bottom: 1px solid var(--nv-line);
	}

	.nv-metrics__grid > div:nth-child(2) {
		border-right: 0;
	}

	.nv-metrics__grid > div:nth-child(3),
	.nv-metrics__grid > div:nth-child(4) {
		border-bottom: 0;
	}

	.nv-metrics__grid > div:first-child,
	.nv-metrics__grid > div:last-child {
		padding-inline: 22px;
	}

	.nv-section {
		padding-block: 82px;
	}

	.nv-section-heading {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.nv-section-heading > p {
		max-width: 570px;
	}

	.nv-program__grid,
	.nv-why__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.nv-program__intro {
		max-width: 580px;
	}

	.nv-why__panel {
		min-height: 420px;
	}

	.nv-cta__inner {
		align-items: flex-start;
		flex-direction: column;
		padding: 44px;
	}

	.nv-footer__top {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.nv-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 580px) {
	.nv-container {
		width: min(100% - 26px, 520px);
	}

	.nv-brand__image {
		width: 62px;
		height: 62px;
	}

	.nv-brand__logo-wrap {
		width: 50px;
		height: 50px;
	}

	.nv-brand__mark {
		width: 42px;
		height: 42px;
		border-radius: 12px;
	}

	.nv-brand__type strong {
		font-size: 15px;
	}

	.nv-brand__type small {
		font-size: 7px;
		letter-spacing: 0.32em;
	}

	.nv-header__inner {
		align-items: center;
	}

	.nv-nav {
		gap: 18px;
	}

	.nv-hero__grid {
		padding-top: 58px;
	}

	.nv-hero__content h1 {
		font-size: clamp(42px, 13vw, 58px);
	}

	.nv-hero__content > p {
		font-size: 15px;
	}

	.nv-hero__actions {
		flex-direction: column;
	}

	.nv-hero__actions .nv-button {
		width: 100%;
	}

	.nv-hero__visual {
		min-height: 410px;
		margin: 15px -42px -20px;
		transform: scale(0.68);
		transform-origin: center top;
	}

	.nv-metrics__grid {
		grid-template-columns: 1fr;
		padding-block: 12px;
	}

	.nv-metrics__grid > div,
	.nv-metrics__grid > div:first-child,
	.nv-metrics__grid > div:last-child {
		padding: 15px 4px;
		border-right: 0;
		border-bottom: 1px solid var(--nv-line);
	}

	.nv-metrics__grid > div:last-child {
		border-bottom: 0;
	}

	.nv-metrics span {
		max-width: none;
	}

	.nv-section {
		padding-block: 68px;
	}

	.nv-section-heading {
		margin-bottom: 36px;
	}

	.nv-section-heading h2,
	.nv-program h2,
	.nv-why h2 {
		font-size: 35px;
	}

	.nv-card-grid,
	.nv-product-grid,
	.nv-steps {
		grid-template-columns: 1fr;
	}

	.nv-feature-card {
		min-height: 285px;
	}

	.nv-steps li,
	.nv-steps li:first-child,
	.nv-steps li:nth-child(2),
	.nv-steps li:nth-child(3),
	.nv-steps li:last-child {
		min-height: 145px;
		border-radius: 0;
	}

	.nv-steps li:first-child {
		border-radius: 19px 19px 0 0;
	}

	.nv-steps li:last-child {
		border-radius: 0 0 19px 19px;
	}

	.nv-product-card__image {
		height: 235px;
	}

	.nv-why__panel {
		min-height: 390px;
		padding: 34px;
	}

	.nv-cta {
		padding-bottom: 55px;
	}

	.nv-cta__inner {
		padding: 35px 28px;
		border-radius: 19px;
	}

	.nv-button--light {
		width: 100%;
	}

	.nv-footer__top {
		grid-template-columns: 1fr 1fr;
		gap: 38px 28px;
		padding-block: 52px 42px;
	}

	.nv-footer__brand {
		grid-column: 1 / -1;
	}

	.nv-footer__bottom {
		gap: 8px;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.novasis-one-click-page *,
	.novasis-one-click-page *::before,
	.novasis-one-click-page *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}


/* Novasis Ortaokul ve Lise kayar yayın alanları */
.nv-slider {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.nv-slider__viewport {
	position: relative;
	height: 100%;
	min-height: inherit;
}

.nv-slider__slide {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateX(34px) scale(.985);
	transition: opacity .6s ease, transform .65s ease, visibility .65s;
	pointer-events: none;
}

.nv-slider__slide.is-active {
	z-index: 1;
	opacity: 1;
	visibility: visible;
	transform: translateX(0) scale(1);
	pointer-events: auto;
}

.nv-slider--hero {
	min-height: 510px;
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(14,42,79,.72), rgba(5,19,38,.28));
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 28px 70px rgba(0,0,0,.18);
}

.nv-slider--hero .nv-slider__image {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 46px 10px 34px;
}

.nv-slider--hero .nv-slider__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 28px 34px rgba(0,0,0,.32));
}

.nv-slider__area-label {
	position: absolute;
	top: 16px;
	left: 18px;
	z-index: 4;
	color: rgba(255,255,255,.78);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
}

.nv-slider__badge {
	position: absolute;
	top: 46px;
	right: 16px;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: calc(100% - 32px);
	padding: 8px 12px;
	border: 1px solid rgba(255,255,255,.5);
	border-radius: 999px;
	background: rgba(7,23,45,.82);
	box-shadow: 0 10px 28px rgba(0,0,0,.22);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
	backdrop-filter: blur(10px);
}

.nv-slider__caption {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 4;
	display: flex;
	align-items: baseline;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 14px;
	background: rgba(7,23,45,.82);
	color: #fff;
	box-shadow: 0 12px 30px rgba(0,0,0,.22);
	backdrop-filter: blur(10px);
}

.nv-slider__caption small {
	color: var(--nv-gold-400);
	font-weight: 800;
	letter-spacing: .06em;
}

.nv-slider__caption strong {
	font-size: 20px;
}

.nv-slider__caption span {
	color: rgba(255,255,255,.78);
	font-size: 13px;
}

.nv-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 6;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255,255,255,.34);
	border-radius: 50%;
	background: rgba(7,23,45,.64);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	backdrop-filter: blur(8px);
	transition: background .2s ease, transform .2s ease;
}

.nv-slider__arrow:hover,
.nv-slider__arrow:focus-visible {
	background: var(--nv-gold-500);
	color: var(--nv-navy-950);
	transform: translateY(-50%) scale(1.06);
}

.nv-slider__arrow--prev { left: 12px; }
.nv-slider__arrow--next { right: 12px; }

.nv-slider__dots {
	position: absolute;
	right: 18px;
	bottom: 20px;
	z-index: 6;
	display: flex;
	gap: 7px;
}

.nv-slider__dots button {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255,255,255,.42);
	cursor: pointer;
	transition: width .25s ease, background .25s ease;
}

.nv-slider__dots button.is-active {
	width: 24px;
	background: var(--nv-gold-400);
}

.nv-high-school {
	background: linear-gradient(180deg, #f5f8fc 0%, #fff 100%);
}

.nv-slider--high {
	min-height: 410px;
	margin-top: 36px;
	border-radius: 30px;
	background: var(--nv-navy-950);
	box-shadow: 0 26px 70px rgba(7,23,45,.2);
}

.nv-high-card {
	display: grid;
	grid-template-columns: minmax(210px, .75fr) 1.25fr;
	align-items: center;
	overflow: hidden;
	padding: 46px 9%;
	background:
		radial-gradient(circle at 18% 42%, rgba(47,101,189,.48), transparent 34%),
		linear-gradient(135deg, #07172d 0%, #102a56 60%, #0b1f3a 100%);
	color: #fff;
}

.nv-high-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.055) 20.5%, transparent 21%);
	content: "";
	pointer-events: none;
}

.nv-high-card__number {
	position: relative;
	z-index: 1;
	color: rgba(255,255,255,.08);
	font-size: clamp(180px, 24vw, 340px);
	font-weight: 900;
	line-height: .78;
	letter-spacing: -.1em;
	text-align: center;
	-webkit-text-stroke: 1px rgba(255,255,255,.12);
}

.nv-high-card__content {
	position: relative;
	z-index: 2;
	max-width: 620px;
}

.nv-high-card__content .nv-slider__badge--static {
	position: static;
	width: fit-content;
	margin-bottom: 24px;
}

.nv-high-card__content > small {
	color: var(--nv-gold-400);
	font-weight: 800;
	letter-spacing: .12em;
}

.nv-high-card__content h3 {
	margin: 10px 0 12px;
	color: #fff;
	font-size: clamp(34px, 5vw, 60px);
	line-height: 1;
}

.nv-high-card__content p {
	max-width: 560px;
	margin: 0 0 24px;
	color: rgba(255,255,255,.76);
	font-size: 17px;
}

.nv-slider--high .nv-slider__dots {
	left: 50%;
	right: auto;
	transform: translateX(-50%);
}

@media (max-width: 900px) {
	.nv-hero__visual.nv-slider--hero {
		min-height: 460px;
		margin: 0;
		transform: none;
	}
	.nv-high-card {
		grid-template-columns: 150px 1fr;
		padding: 38px 7%;
	}
	.nv-high-card__number {
		font-size: 170px;
	}
}

@media (max-width: 620px) {
	.nv-hero__visual.nv-slider--hero {
		min-height: 400px;
		margin: 8px 0 0;
		transform: none;
		border-radius: 22px;
	}
	.nv-slider__badge {
		top: 42px;
		font-size: 9px;
	}
	.nv-slider__caption {
		right: 16px;
		left: 16px;
		flex-wrap: wrap;
	}
	.nv-slider__caption strong {
		font-size: 17px;
	}
	.nv-slider__arrow {
		width: 36px;
		height: 36px;
	}
	.nv-slider__dots {
		right: 16px;
		bottom: 76px;
	}
	.nv-slider--high {
		min-height: 460px;
	}
	.nv-high-card {
		display: block;
		padding: 42px 34px 72px;
	}
	.nv-high-card__number {
		position: absolute;
		right: -5px;
		bottom: -8px;
		font-size: 210px;
	}
	.nv-high-card__content {
		max-width: 92%;
	}
	.nv-slider--high .nv-slider__dots {
		bottom: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nv-slider__slide {
		transition: none;
	}
}
