:root {
	--nr-accent: #0b5fff;
	--nr-accent-dark: #0050c7;
	--nr-accent-soft: #eaf2ff;
	--nr-text: #1f2937;
	--nr-muted: #6b7280;
	--nr-border: #e5e7eb;
	--nr-border-strong: #d7dde7;
	--nr-surface: #ffffff;
	--nr-soft: #f3f6fa;
	--nr-page: #f7f9fc;
	--nr-green: #12805c;
	--nr-orange: #b45309;
	--nr-red: #b42318;
	--nr-shadow-sm: 0 10px 30px rgba(31, 41, 55, 0.07);
	--nr-shadow-md: 0 22px 55px rgba(31, 41, 55, 0.1);
	--nr-radius: 8px;
}

.nr-section-heading {
	max-width: 780px;
	margin: 0 auto 32px;
	text-align: center;
}

.nr-section-heading--compact {
	text-align: left;
	margin-left: 0;
}

.nr-eyebrow,
.nr-category {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 10px;
	color: var(--nr-accent);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.nr-section-heading h2,
.nr-contact-form h2 {
	margin: 0;
	color: var(--nr-text);
	line-height: 1.1;
}

.nr-section-heading p,
.nr-contact-intro {
	color: var(--nr-muted);
	margin: 12px 0 0;
}

.nr-reservation,
.nr-contact-form {
	background: var(--nr-surface);
	border: 1px solid var(--nr-border);
	border-radius: var(--nr-radius);
	box-shadow: var(--nr-shadow-md);
	padding: 34px;
}

.nr-form-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 24px;
}

.nr-form-trust span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	background: var(--nr-page);
	border: 1px solid var(--nr-border);
	border-radius: 999px;
	color: #374151;
	font-size: 0.85rem;
	font-weight: 800;
	padding: 7px 12px;
}

.nr-form {
	display: grid;
	gap: 20px;
}

.nr-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.nr-field {
	display: grid;
	gap: 8px;
}

.nr-field--full {
	grid-column: 1 / -1;
}

.nr-field label,
.nr-consent {
	color: var(--nr-text);
	font-size: 0.92rem;
	font-weight: 800;
}

.nr-field input,
.nr-field select,
.nr-field textarea {
	width: 100%;
	min-height: 52px;
	border: 1px solid var(--nr-border);
	border-radius: var(--nr-radius);
	background: #fff;
	color: var(--nr-text);
	font: inherit;
	padding: 12px 14px;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nr-field textarea {
	min-height: 118px;
	resize: vertical;
}

.nr-field input:focus,
.nr-field select:focus,
.nr-field textarea:focus {
	background: #fff;
	border-color: var(--nr-accent);
	box-shadow: 0 0 0 4px rgba(11, 95, 255, 0.12);
	outline: 0;
}

.nr-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.nr-calculation {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.nr-calculation div {
	background: var(--nr-page);
	border: 1px solid var(--nr-border);
	border-radius: var(--nr-radius);
	padding: 15px;
}

.nr-calculation span {
	display: block;
	color: var(--nr-muted);
	font-size: 0.78rem;
	font-weight: 800;
	margin-bottom: 4px;
}

.nr-calculation strong {
	color: var(--nr-text);
	font-size: 1.08rem;
}

.nr-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--nr-muted);
	font-weight: 650;
	line-height: 1.55;
}

.nr-consent input {
	width: 18px;
	height: 18px;
	margin-top: 4px;
	accent-color: var(--nr-accent);
}

.nr-form-note,
.nr-small-note {
	color: var(--nr-muted);
	font-size: 0.95rem;
	margin: 0;
}

.nr-form-note {
	background: var(--nr-accent-soft);
	border: 1px solid rgba(11, 95, 255, 0.18);
	border-radius: var(--nr-radius);
	color: #1e3a8a;
	font-weight: 800;
	padding: 12px 14px;
}

.nr-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	width: fit-content;
	border: 1px solid transparent;
	border-radius: var(--nr-radius);
	font-weight: 900;
	line-height: 1.1;
	padding: 14px 20px;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.nr-button:hover,
.nr-button:focus {
	transform: translateY(-1px);
	text-decoration: none;
}

.nr-button--primary {
	background: var(--nr-accent);
	color: #fff;
	box-shadow: 0 15px 30px rgba(11, 95, 255, 0.24);
}

.nr-button--primary:hover,
.nr-button--primary:focus {
	background: var(--nr-accent-dark);
	box-shadow: 0 18px 38px rgba(11, 95, 255, 0.3);
	color: #fff;
}

.nr-button--outline {
	border-color: var(--nr-border-strong);
	color: var(--nr-accent);
	background: #fff;
}

.nr-button--outline:hover,
.nr-button--outline:focus {
	border-color: rgba(11, 95, 255, 0.32);
	background: var(--nr-accent-soft);
	color: var(--nr-accent-dark);
}

.nr-button--soft {
	background: #fff;
	border-color: var(--nr-border);
	box-shadow: 0 10px 24px rgba(31, 41, 55, 0.07);
	color: var(--nr-text);
}

.nr-button--soft:hover,
.nr-button--soft:focus {
	background: var(--nr-accent-soft);
	border-color: rgba(11, 95, 255, 0.22);
	color: var(--nr-accent-dark);
}

.nr-notice {
	border-radius: var(--nr-radius);
	font-weight: 800;
	margin: 0 0 18px;
	padding: 15px 16px;
}

.nr-notice--success {
	background: #ecfdf5;
	border: 1px solid rgba(18, 128, 92, 0.24);
	color: #166534;
}

.nr-notice--error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

.nr-vehicle-list,
.nr-price-grid,
.nr-info-grid,
.nr-steps {
	display: grid;
	gap: 22px;
}

.nr-vehicle-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
}

.nr-vehicle-card,
.nr-price-card,
.nr-info-panel,
.nr-step {
	background: #fff;
	border: 1px solid var(--nr-border);
	border-radius: var(--nr-radius);
	box-shadow: var(--nr-shadow-sm);
	overflow: hidden;
}

.nr-vehicle-card {
	display: grid;
	grid-template-rows: auto 1fr;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.nr-vehicle-card:hover {
	border-color: rgba(11, 95, 255, 0.24);
	box-shadow: var(--nr-shadow-md);
	transform: translateY(-4px);
}

.nr-vehicle-media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	background: linear-gradient(145deg, #f8fafc, #eef4ff);
	overflow: hidden;
}

.nr-vehicle-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease;
}

.nr-vehicle-card:hover .nr-vehicle-media img {
	transform: scale(1.035);
}

.nr-vehicle-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
}

.nr-vehicle-placeholder span {
	width: 70%;
	aspect-ratio: 4 / 1.4;
	background:
		radial-gradient(circle at 18% 88%, #111827 0 8%, transparent 9%),
		radial-gradient(circle at 78% 88%, #111827 0 8%, transparent 9%),
		linear-gradient(160deg, transparent 0 28%, rgba(11, 95, 255, 0.2) 29% 44%, transparent 45%),
		linear-gradient(to bottom, transparent 0 48%, var(--nr-accent) 49% 75%, transparent 76%);
	border-radius: var(--nr-radius);
	opacity: 0.92;
}

.nr-vehicle-body {
	display: grid;
	grid-template-rows: auto auto auto 1fr auto;
	gap: 14px;
	padding: 22px;
}

.nr-card-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.nr-badge {
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 900;
	line-height: 1;
	padding: 8px 10px;
	white-space: nowrap;
}

.nr-badge--available {
	background: #dcfce7;
	color: #166534;
}

.nr-badge--last {
	background: #ffedd5;
	color: var(--nr-orange);
}

.nr-badge--occupied {
	background: #f3f4f6;
	color: #4b5563;
}

.nr-vehicle-card h3,
.nr-price-card h3,
.nr-info-panel h3,
.nr-step h3 {
	margin: 0;
	color: var(--nr-text);
	line-height: 1.2;
}

.nr-vehicle-card h3 {
	font-size: 1.28rem;
}

.nr-vehicle-card h3 a {
	color: var(--nr-text);
	text-decoration: none;
}

.nr-vehicle-card p,
.nr-step p {
	color: var(--nr-muted);
	margin: 0;
}

.nr-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nr-specs li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	background: var(--nr-page);
	border: 1px solid transparent;
	border-radius: var(--nr-radius);
	color: var(--nr-text);
	font-size: 0.88rem;
	font-weight: 800;
	padding: 9px 10px;
}

.nr-specs li .nr-spec-icon {
	display: inline-grid;
	flex: 0 0 auto;
	place-items: center;
	width: 30px;
	height: 30px;
	background: #fff;
	border: 1px solid var(--nr-border);
	border-radius: 50%;
	color: var(--nr-accent);
}

.nr-spec-icon svg {
	display: block;
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.nr-price-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
}

.nr-price-card {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	gap: 18px;
	padding: 24px;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.nr-price-card:hover {
	border-color: rgba(11, 95, 255, 0.22);
	box-shadow: var(--nr-shadow-md);
	transform: translateY(-3px);
}

.nr-price-card__head p {
	color: var(--nr-muted);
	margin: 10px 0 0;
}

.nr-price-feature {
	display: grid;
	gap: 2px;
	background: var(--nr-accent-soft);
	border: 1px solid rgba(11, 95, 255, 0.16);
	border-radius: var(--nr-radius);
	padding: 16px;
}

.nr-price-feature span,
.nr-price-feature small {
	color: #1e3a8a;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.nr-price-feature strong {
	color: var(--nr-accent);
	font-size: 2rem;
	line-height: 1;
}

.nr-info-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 22px;
}

.nr-info-panel,
.nr-step {
	padding: 24px;
}

.nr-price-card table,
.nr-info-panel table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 2px;
}

.nr-price-card th,
.nr-price-card td,
.nr-info-panel th,
.nr-info-panel td {
	border-bottom: 1px solid var(--nr-border);
	padding: 12px 0;
	text-align: left;
	vertical-align: top;
}

.nr-price-card tr:last-child th,
.nr-price-card tr:last-child td,
.nr-info-panel tr:last-child th,
.nr-info-panel tr:last-child td {
	border-bottom: 0;
}

.nr-price-card td,
.nr-info-panel td {
	color: var(--nr-text);
	font-weight: 900;
	text-align: right;
}

.nr-price-card th,
.nr-info-panel th {
	color: var(--nr-muted);
	font-weight: 750;
}

.nr-price-card .nr-button {
	width: 100%;
}

.nr-price-note {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--nr-border);
	border-radius: var(--nr-radius);
	box-shadow: var(--nr-shadow-sm);
	margin-top: 22px;
	padding: 18px 20px;
}

.nr-price-note strong {
	color: var(--nr-text);
}

.nr-price-note span {
	color: var(--nr-muted);
	font-weight: 750;
}

.nr-steps {
	position: relative;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nr-step {
	position: relative;
	display: grid;
	gap: 12px;
	overflow: visible;
}

.nr-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 43px;
	right: -22px;
	width: 22px;
	height: 1px;
	background: var(--nr-border-strong);
}

.nr-step__marker {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.nr-step__marker span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	background: var(--nr-accent);
	border-radius: 50%;
	color: #fff;
	font-weight: 900;
}

.nr-step__marker small {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	background: var(--nr-page);
	border: 1px solid var(--nr-border);
	border-radius: 999px;
	color: var(--nr-accent);
	padding: 0;
}

.nr-step__marker small svg {
	display: block;
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.nr-contact-form {
	box-shadow: var(--nr-shadow-sm);
}

.nr-contact-intro {
	margin-bottom: 22px;
}

.nr-whatsapp-button {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 60;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 54px;
	background: #16a34a;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	box-shadow: 0 18px 42px rgba(22, 163, 74, 0.28);
	color: #fff;
	font-weight: 900;
	padding: 10px 17px 10px 10px;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nr-whatsapp-button span {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	font-size: 0.76rem;
}

.nr-whatsapp-button:hover,
.nr-whatsapp-button:focus {
	background: #128c44;
	box-shadow: 0 22px 48px rgba(22, 163, 74, 0.34);
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
}

@media (max-width: 1024px) {
	.nr-vehicle-list,
	.nr-price-grid,
	.nr-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nr-calculation {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nr-step:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 767px) {
	.nr-form-grid,
	.nr-vehicle-list,
	.nr-price-grid,
	.nr-info-grid,
	.nr-steps,
	.nr-calculation {
		grid-template-columns: 1fr;
	}

	.nr-reservation,
	.nr-contact-form {
		padding: 20px;
	}

	.nr-form-trust {
		display: grid;
		grid-template-columns: 1fr;
	}

	.nr-button {
		width: 100%;
	}

	.nr-card-topline {
		align-items: flex-start;
		flex-direction: column;
	}

	.nr-specs {
		grid-template-columns: 1fr;
	}

	.nr-price-note {
		align-items: flex-start;
		flex-direction: column;
	}

	.nr-whatsapp-button {
		right: 14px;
		bottom: 14px;
		min-height: 54px;
		padding-right: 10px;
	}

	.nr-whatsapp-button strong {
		display: none;
	}
}
