﻿:root {
	--nl-bg: #f4f7fb;
	--nl-surface: #ffffff;
	--nl-surface-soft: #f8fafc;
	--nl-border: #dbe4ee;
	--nl-border-soft: #e8eef5;
	--nl-text: #102033;
	--nl-muted: #617086;
	--nl-muted-2: #8a98aa;
	--nl-primary: #164b7d;
	--nl-primary-dark: #0f355c;
	--nl-primary-soft: #e9f3ff;
	--nl-green: #0b8f72;
	--nl-red: #d92d20;
	--nl-shadow: 0 1px 2px rgba(15, 23, 42, 0.08), 0 16px 42px rgba(15, 23, 42, 0.08);
	--nl-radius: 6px;
	--nl-font: "Inter", "Segoe UI", Arial, sans-serif;
}

body {
	background: var(--nl-bg);
}

.nl-page {
	min-height: 100vh;
	background: radial-gradient(circle at 84% 14%, rgba(22, 75, 125, 0.13), rgba(22, 75, 125, 0) 28%), linear-gradient(180deg, #eef3f8 0%, #f7fafc 360px, #f4f7fb 100%);
	color: var(--nl-text);
	font-family: var(--nl-font);
	padding: 34px 18px 48px;
}

.nl-shell {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

.nl-hero {
	display: grid;
	grid-template-columns: minmax(0, 640px) minmax(360px, 1fr);
	gap: 28px;
	align-items: stretch;
}

.nl-hero__left,
.nl-hero__right {
	min-width: 0;
}

.nl-panel {
	background: var(--nl-surface);
	border: 1px solid var(--nl-border);
	border-radius: var(--nl-radius);
	box-shadow: var(--nl-shadow);
	padding: 30px;
	position: relative;
	overflow: hidden;
}

	.nl-panel::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 5px;
		background: linear-gradient(90deg, var(--nl-primary), var(--nl-green));
	}

.nl-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--nl-muted-2);
	font-size: 12px;
	font-weight: 750;
	margin-bottom: 18px;
}

	.nl-breadcrumb a {
		color: var(--nl-primary);
		text-decoration: none;
	}

		.nl-breadcrumb a:hover {
			text-decoration: underline;
		}

.nl-title {
	margin: 0;
	color: var(--nl-text);
	font-size: 38px;
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: -0.045em;
}

.nl-intro {
	margin: 14px 0 24px;
	max-width: 580px;
	color: var(--nl-muted);
	font-size: 15px;
	line-height: 1.7;
	font-weight: 500;
}

.nl-alert {
	display: none;
	margin-top: 18px;
	padding: 13px 14px;
	border-radius: var(--nl-radius);
	border: 1px solid transparent;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.5;
}

	.nl-alert:not(:empty) {
		display: block;
	}

.nl-alert--success {
	color: #067647;
	background: #e9fbf1;
	border-color: #bfead4;
}

.nl-alert--error {
	color: #b42318;
	background: #fff0ee;
	border-color: #ffd1cb;
}

.nl-form {
	display: grid;
	gap: 15px;
}

.nl-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.nl-field {
	display: grid;
	gap: 7px;
}

	.nl-field label {
		color: #334155;
		font-size: 12px;
		font-weight: 850;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}

		.nl-field label em {
			color: var(--nl-red);
			font-style: normal;
		}

	.nl-field input,
	.nl-field select {
		width: 100%;
		height: 46px;
		border: 1px solid #cbd6e2;
		border-radius: var(--nl-radius);
		background: #ffffff;
		color: var(--nl-text);
		padding: 0 13px;
		font-size: 14px;
		font-weight: 600;
		outline: none;
		box-shadow: none;
		transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
	}

		.nl-field input::placeholder {
			color: #98a6b8;
			font-weight: 500;
		}

	.nl-field select {
		appearance: none;
		background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
		background-position: calc(100% - 18px) 19px, calc(100% - 12px) 19px;
		background-size: 6px 6px, 6px 6px;
		background-repeat: no-repeat;
		padding-right: 36px;
	}

		.nl-field input:focus,
		.nl-field select:focus {
			border-color: var(--nl-primary);
			background: #fbfdff;
			box-shadow: 0 0 0 3px rgba(22, 75, 125, 0.12);
		}

.nl-honeypot {
	position: absolute !important;
	left: -99999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.nl-recaptcha-box {
	width: 100%;
	max-width: 330px;
	min-height: 78px;
	display: grid;
	grid-template-columns: 34px 1fr 78px;
	align-items: center;
	gap: 12px;
	background: #f8fafc;
	border: 1px solid #d5dde8;
	border-radius: 4px;
	padding: 12px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.nl-recaptcha-check {
	width: 28px;
	height: 28px;
	border: 2px solid #9aa7b6;
	background: #ffffff;
	border-radius: 2px;
}

.nl-recaptcha-text {
	color: #1f2937;
	font-size: 14px;
	font-weight: 700;
}

.nl-recaptcha-brand {
	display: grid;
	justify-items: center;
	gap: 3px;
	color: #6b7280;
	font-size: 10px;
}

.nl-recaptcha-brand__icon {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--nl-primary);
	color: #ffffff;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 900;
}

.nl-consent {
	margin: 2px 0 0;
	color: var(--nl-muted);
	font-size: 13px;
	line-height: 1.65;
}

	.nl-consent a {
		color: var(--nl-primary);
		font-weight: 800;
		text-decoration: none;
	}

		.nl-consent a:hover {
			text-decoration: underline;
		}

.nl-actions,
.nl-unsubscribe-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 4px;
}

.nl-required {
	color: var(--nl-muted-2);
	font-size: 12px;
	font-weight: 750;
}

.nl-btn {
	min-width: 150px;
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--nl-primary);
	border-radius: var(--nl-radius);
	background: var(--nl-primary);
	color: #ffffff;
	padding: 0 22px;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(22, 75, 125, 0.18);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

	.nl-btn:hover {
		background: var(--nl-primary-dark);
		border-color: var(--nl-primary-dark);
		transform: translateY(-1px);
		box-shadow: 0 12px 26px rgba(22, 75, 125, 0.23);
	}

	.nl-btn:disabled {
		opacity: 0.62;
		cursor: not-allowed;
		transform: none;
		box-shadow: none;
	}

.nl-btn--outline {
	background: #ffffff;
	color: var(--nl-primary);
	box-shadow: none;
}

	.nl-btn--outline:hover {
		background: var(--nl-primary);
		color: #ffffff;
	}

.nl-visual {
	min-height: 100%;
	background: linear-gradient(135deg, rgba(16, 32, 51, 0.92), rgba(22, 75, 125, 0.92)), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22), transparent 30%);
	border: 1px solid rgba(22, 75, 125, 0.28);
	border-radius: var(--nl-radius);
	box-shadow: var(--nl-shadow);
	position: relative;
	overflow: hidden;
	padding: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.nl-visual::before {
		content: "";
		position: absolute;
		inset: 18px;
		border: 1px solid rgba(255, 255, 255, 0.12);
		pointer-events: none;
	}

	.nl-visual::after {
		content: "";
		position: absolute;
		right: -80px;
		top: -70px;
		width: 260px;
		height: 260px;
		background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
		pointer-events: none;
	}

.nl-visual__phone {
	width: min(340px, 76%);
	min-height: 520px;
	background: #0b1728;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 28px;
	padding: 18px;
	box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
	position: relative;
	z-index: 2;
	transform: rotate(-4deg);
}

	.nl-visual__phone::before {
		content: "";
		position: absolute;
		top: 11px;
		left: 50%;
		width: 78px;
		height: 6px;
		transform: translateX(-50%);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.18);
	}

.nl-visual__screen {
	height: 100%;
	min-height: 484px;
	border-radius: 20px;
	background: linear-gradient(180deg, #f8fbff 0%, #e9f2fb 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 28px;
	text-align: center;
}

.nl-visual__mail-icon {
	width: 128px;
	height: 96px;
	color: var(--nl-primary);
}

	.nl-visual__mail-icon svg {
		width: 100%;
		height: 100%;
		fill: none;
		stroke: currentColor;
		stroke-width: 5;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

.nl-visual__screen-title {
	color: var(--nl-text);
	font-size: 28px;
	font-weight: 950;
	letter-spacing: -0.04em;
}

.nl-visual__screen-text {
	max-width: 230px;
	color: var(--nl-muted);
	font-size: 14px;
	line-height: 1.6;
	font-weight: 650;
}

.nl-visual__ring {
	position: absolute;
	left: 44px;
	top: 72px;
	width: 130px;
	height: 130px;
	border: 18px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	z-index: 1;
}

.nl-visual__cup {
	position: absolute;
	right: 60px;
	bottom: 80px;
	width: 82px;
	height: 96px;
	border-radius: 0 0 20px 20px;
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.18);
	z-index: 1;
}

	.nl-visual__cup::before {
		content: "";
		position: absolute;
		top: 20px;
		right: -24px;
		width: 34px;
		height: 34px;
		border: 8px solid rgba(255, 255, 255, 0.13);
		border-left: 0;
		border-radius: 0 999px 999px 0;
	}

.nl-visual__card {
	position: absolute;
	left: 34px;
	bottom: 34px;
	width: min(330px, calc(100% - 68px));
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: var(--nl-radius);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
	padding: 17px;
	z-index: 3;
	backdrop-filter: blur(8px);
}

.nl-visual__card-label {
	color: var(--nl-primary);
	font-size: 11px;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 7px;
}

.nl-visual__card strong {
	display: block;
	color: var(--nl-text);
	font-size: 17px;
	line-height: 1.28;
	font-weight: 900;
	letter-spacing: -0.025em;
}

.nl-visual__card p {
	margin: 8px 0 0;
	color: var(--nl-muted);
	font-size: 13px;
	line-height: 1.55;
	font-weight: 600;
}

.nl-unsubscribe-wrap {
	margin-top: 22px;
}

.nl-unsubscribe-card {
	background: var(--nl-surface);
	border: 1px solid var(--nl-border);
	border-radius: var(--nl-radius);
	box-shadow: var(--nl-shadow);
	padding: 24px 26px;
	display: grid;
	grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	position: relative;
	overflow: hidden;
}

	.nl-unsubscribe-card::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 5px;
		height: 100%;
		background: linear-gradient(180deg, var(--nl-red), var(--nl-primary));
	}

.nl-unsubscribe-card__head h2 {
	margin: 0;
	color: var(--nl-text);
	font-size: 23px;
	font-weight: 900;
	letter-spacing: -0.035em;
}

.nl-unsubscribe-card__head p {
	margin: 8px 0 0;
	color: var(--nl-muted);
	font-size: 14px;
	line-height: 1.55;
	font-weight: 600;
}

.nl-unsubscribe-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
}

@media (max-width: 1100px) {
	.nl-hero {
		grid-template-columns: 1fr;
	}

	.nl-visual {
		min-height: 520px;
	}

	.nl-visual__phone {
		min-height: 420px;
	}

	.nl-visual__screen {
		min-height: 384px;
	}
}

@media (max-width: 760px) {
	.nl-page {
		padding: 20px 12px 34px;
	}

	.nl-panel {
		padding: 22px 18px;
	}

	.nl-title {
		font-size: 31px;
	}

	.nl-grid {
		grid-template-columns: 1fr;
	}

	.nl-actions,
	.nl-unsubscribe-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.nl-btn {
		width: 100%;
	}

	.nl-recaptcha-box {
		max-width: 100%;
	}

	.nl-visual {
		padding: 22px;
		min-height: 430px;
	}

	.nl-visual__phone {
		width: min(300px, 86%);
		min-height: 360px;
	}

	.nl-visual__screen {
		min-height: 324px;
	}

	.nl-visual__card {
		left: 18px;
		bottom: 18px;
		width: calc(100% - 36px);
	}

	.nl-visual__ring,
	.nl-visual__cup {
		display: none;
	}

	.nl-unsubscribe-card {
		grid-template-columns: 1fr;
		padding: 22px 18px;
		gap: 18px;
	}
}

@media (max-width: 460px) {
	.nl-breadcrumb {
		font-size: 11px;
	}

	.nl-title {
		font-size: 28px;
	}

	.nl-intro {
		font-size: 14px;
	}

	.nl-visual__phone {
		width: 100%;
		transform: none;
	}

	.nl-visual__screen-title {
		font-size: 24px;
	}
}

.nl-recaptcha-v3-note {
	margin-top: 2px;
	padding: 12px 14px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #f8fafc;
	border: 1px solid #dbe4ee;
	border-radius: 6px;
	color: #64748b;
	font-size: 12px;
	font-weight: 650;
	line-height: 1.55;
}

.nl-recaptcha-v3-note__icon {
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e9f3ff;
	border: 1px solid #d7e8fa;
	border-radius: 50%;
	color: #164b7d;
	font-size: 12px;
}

.nl-recaptcha-real {
	margin-top: 2px;
	padding: 14px;
	background: #f8fafc;
	border: 1px solid #dbe4ee;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	max-width: 100%;
}

@media (max-width: 420px) {
	.nl-recaptcha-real {
		width: 100%;
		overflow-x: auto;
	}
}