.ndr-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 99999;
	align-items: center;
	justify-content: center;
}

.ndr-overlay.ndr-open {
	display: flex;
}

.ndr-modal {
	background: #fff;
	border-radius: 6px;
	max-width: 480px;
	width: 92%;
	padding: 36px 36px 32px;
	position: relative;
	box-shadow: 0 8px 40px rgba(0,0,0,0.18);
	font-family: 'open_sans', Arial, sans-serif;
}

.ndr-close {
	position: absolute;
	top: 14px;
	right: 18px;
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	color: #999;
	cursor: pointer;
	padding: 0;
}

.ndr-close:hover {
	color: #333;
}

.ndr-modal-header h2 {
	font-size: 1.35rem;
	color: #70afd8;
	margin: 0 0 10px;
	font-family: 'Arquitecta-Book', 'open_sans', Arial, sans-serif;
}

.ndr-divider {
	width: 60px;
	height: 3px;
	background: #ffcd5b;
	margin-bottom: 20px;
}

.ndr-intro {
	font-size: 0.9rem;
	color: #666;
	margin: 0 0 20px;
}

.ndr-field {
	margin-bottom: 16px;
}

.ndr-field label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.ndr-required {
	color: #e05050;
}

.ndr-field input,
.ndr-field select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	font-size: 0.95rem;
	font-family: 'open_sans', Arial, sans-serif;
	color: #333;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s;
}

.ndr-field input:focus,
.ndr-field select:focus {
	outline: none;
	border-color: #70afd8;
	box-shadow: 0 0 0 2px rgba(112,175,216,0.15);
}

.ndr-field input[readonly] {
	background: #f5f7f9;
	color: #555;
	cursor: default;
}

.ndr-field input[readonly]:focus {
	border-color: #e5e5e5;
	box-shadow: none;
}

.ndr-submit {
	width: 100%;
	margin-top: 8px;
	padding: 12px;
	font-size: 1rem;
	cursor: pointer;
	background: #ffcd5b;
	color: #333;
	border: none;
	border-radius: 4px;
	font-family: 'open_sans', Arial, sans-serif;
	font-weight: 700;
	transition: background 0.2s;
}

.ndr-submit:hover {
	background: #f5c040;
}

.ndr-submit:disabled {
	opacity: 0.75;
	cursor: not-allowed;
}

.ndr-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(51,51,51,0.25);
	border-top-color: #333;
	border-radius: 50%;
	animation: ndr-spin 0.7s linear infinite;
	vertical-align: middle;
	margin-right: 8px;
	flex-shrink: 0;
}

@keyframes ndr-spin {
	to { transform: rotate(360deg); }
}

.ndr-message {
	text-align: center;
	padding: 8px 0 4px;
	font-size: 0.95rem;
	color: #333;
	line-height: 1.6;
}

.ndr-message.ndr-error {
	color: #b00020;
}

.ndr-success-box {
	background: #f0f8f0;
	border: 1px solid #b8ddb8;
	border-radius: 6px;
	padding: 28px 24px 24px;
	text-align: center;
}

.ndr-success-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: #70afd8;
	border-radius: 50%;
	margin-bottom: 16px;
}

.ndr-success-icon svg {
	width: 26px;
	height: 26px;
}

.ndr-success-box h3 {
	font-family: 'Arquitecta-Book', 'open_sans', Arial, sans-serif;
	font-size: 1.15rem;
	color: #2c455b;
	margin: 0 0 10px;
}

.ndr-success-box p {
	font-size: 0.9rem;
	color: #555;
	margin: 0;
	line-height: 1.6;
}

@media screen and (max-width: 480px) {
	.ndr-modal {
		padding: 28px 20px 24px;
	}
}

/* ── Regulatory notice inside the download form ── */
.ndr-reg-notice {
	background: #fffbf0;
	border: 1px solid #ffe082;
	border-left: 4px solid #ffcd5b;
	border-radius: 4px;
	padding: 14px 16px;
	margin-bottom: 16px;
	transition: background 180ms, border-color 180ms;
}

.ndr-reg-notice.ndr-reg-error {
	background: #fff8f8;
	border-color: #f5c6c6;
	border-left-color: #e05050;
}

.ndr-reg-notice__title {
	font-family: 'Arquitecta-Bold', 'open_sans', Arial, sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #7a5c00;
	margin: 0 0 6px;
}

.ndr-reg-notice.ndr-reg-error .ndr-reg-notice__title {
	color: #b00020;
}

.ndr-reg-notice__body {
	font-size: 0.85rem;
	color: #555;
	margin: 0 0 12px;
	line-height: 1.5;
}

.ndr-reg-notice__check {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	cursor: pointer;
	user-select: none;
}

.ndr-reg-notice__check input[type="checkbox"] {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 2px;
	cursor: pointer;
	accent-color: #2c455b;
}

.ndr-reg-notice__check span {
	font-size: 0.85rem;
	color: #333;
	line-height: 1.5;
}
