/*
Theme Name: Notarly
Theme URI: https://example.com/notarly
Author: WordPress Templates Lab
Description: A premium WordPress theme for remote online notary, mobile notary, loan signing, and compliance-forward appointment booking.
Version: 0.1.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: notarly
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
	--nt-paper: #fbfbfa;
	--nt-ink: #16242e;
	--nt-muted: #6b7780;
	--nt-soft: #44525c;
	--nt-navy: #15324a;
	--nt-navy-2: #1d4664;
	--nt-blue: #3a7ca5;
	--nt-green: #1f8a5b;
	--nt-green-soft: #eaf5ef;
	--nt-tint: #eef3f6;
	--nt-line: #e7e7e2;
	--nt-white: #fff;
	--nt-gold: #ffb020;
	--nt-shadow: 0 24px 60px -28px rgba(21, 50, 74, .35);
	--nt-display: 'Space Grotesk', system-ui, sans-serif;
	--nt-sans: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.nt-body {
	margin: 0;
	background: var(--nt-paper);
	color: var(--nt-ink);
	font-family: var(--nt-sans);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

img,
svg {
	display: block;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid rgba(58, 124, 165, .45);
	outline-offset: 3px;
}

.screen-reader-text,
.nt-skip {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.nt-skip:focus {
	z-index: 100;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	clip: auto;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--nt-navy);
	color: var(--nt-white);
}

.nt-icon {
	width: 1.15em;
	height: 1.15em;
	fill: currentColor;
	flex: 0 0 auto;
}

[hidden] {
	display: none !important;
}

.nt-wrap {
	width: min(1200px, calc(100% - 40px));
	margin-inline: auto;
}

.nt-site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(251, 251, 250, .9);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--nt-line);
}

.nt-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	min-height: 68px;
	padding: 12px clamp(20px, 4vw, 48px);
}

.nt-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
}

.nt-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: var(--nt-navy);
	color: var(--nt-white);
}

.nt-brand__text {
	display: grid;
	gap: 2px;
	line-height: 1;
}

.nt-brand__text strong {
	font: 700 19px/1 var(--nt-display);
	letter-spacing: -.02em;
}

.nt-brand__text small {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #7a8893;
}

.nt-nav__links,
.nt-nav__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nt-nav__links a {
	padding: 9px 13px;
	border-radius: 8px;
	color: var(--nt-soft);
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.nt-nav__links a:hover,
.nt-nav__links a[aria-current='page'] {
	background: var(--nt-tint);
	color: var(--nt-navy);
}

.nt-phone-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--nt-navy);
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
}

.nt-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1.5px solid var(--nt-line);
	border-radius: 9px;
	background: var(--nt-white);
	color: var(--nt-navy);
}

.nt-menu-toggle span[aria-hidden='true'],
.nt-menu-toggle span[aria-hidden='true']::before,
.nt-menu-toggle span[aria-hidden='true']::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 99px;
	background: currentColor;
	content: '';
}

.nt-menu-toggle span[aria-hidden='true'] {
	position: relative;
}

.nt-menu-toggle span[aria-hidden='true']::before,
.nt-menu-toggle span[aria-hidden='true']::after {
	position: absolute;
	left: 0;
}

.nt-menu-toggle span[aria-hidden='true']::before {
	top: -6px;
}

.nt-menu-toggle span[aria-hidden='true']::after {
	top: 6px;
}

.nt-mobile-menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	padding: 0 20px 16px;
	border-top: 1px solid var(--nt-line);
	background: var(--nt-white);
}

.nt-mobile-menu[hidden] {
	display: none;
}

.nt-mobile-menu a {
	min-height: 44px;
	padding: 11px 12px;
	border: 1px solid var(--nt-line);
	border-radius: 10px;
	background: var(--nt-paper);
	font-weight: 700;
}

.nt-status-bar {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	white-space: nowrap;
	padding: 9px clamp(20px, 4vw, 48px);
	background: var(--nt-navy);
	color: rgba(255, 255, 255, .78);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	scrollbar-width: none;
}

.nt-status-bar strong {
	color: var(--nt-white);
}

.nt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 14px 22px;
	border: 0;
	border-radius: 12px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.nt-btn:hover {
	transform: translateY(-1px);
}

.nt-btn--small {
	min-height: 42px;
	padding: 11px 18px;
	font-size: 14px;
}

.nt-btn--navy {
	background: var(--nt-navy);
	color: var(--nt-white);
	box-shadow: 0 10px 24px -16px rgba(21, 50, 74, .7);
}

.nt-btn--ghost {
	border: 1.5px solid #d5dde2;
	background: var(--nt-white);
	color: var(--nt-navy);
}

.nt-btn--light {
	background: var(--nt-white);
	color: var(--nt-navy);
}

.nt-btn--dark-ghost {
	border: 1.5px solid rgba(255, 255, 255, .32);
	background: rgba(255, 255, 255, .1);
	color: var(--nt-white);
}

.nt-btn--success {
	background: var(--nt-green);
	color: var(--nt-white);
}

.nt-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	align-items: center;
}

.nt-actions--center {
	justify-content: center;
}

.nt-hero {
	display: grid;
	grid-template-columns: 1.06fr .94fr;
	gap: clamp(28px, 5vw, 56px);
	align-items: center;
	padding: clamp(46px, 7vw, 78px) 0 64px;
}

.nt-hero h1,
.nt-page-hero h1,
.nt-remote-hero h1 {
	max-width: 820px;
	margin: 0;
	font-family: var(--nt-display);
	font-size: clamp(42px, 6vw, 64px);
	line-height: 1.03;
	letter-spacing: -.03em;
}

.nt-hero__copy > p,
.nt-page-hero p,
.nt-remote-hero p {
	max-width: 570px;
	margin: 20px 0 30px;
	color: var(--nt-muted);
	font-size: 18px;
	line-height: 1.65;
}

.nt-live-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 22px;
	padding: 7px 13px;
	border: 1px solid #cce8d9;
	border-radius: 999px;
	background: var(--nt-green-soft);
	color: #15724c;
	font-size: 13px;
	font-weight: 800;
}

.nt-live-pill span,
.nt-online-dot span {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--nt-green);
	box-shadow: 0 0 0 3px rgba(31, 138, 91, .18);
}

.nt-live-pill--dark {
	border-color: rgba(70, 217, 138, .4);
	background: rgba(31, 138, 91, .2);
	color: #8ee9b6;
}

.nt-proof-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 28px;
	color: var(--nt-muted);
	font-size: 13.5px;
	font-weight: 800;
}

.nt-proof-row span,
.nt-trust-strip b {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.nt-proof-row .nt-icon {
	color: var(--nt-navy);
}

.nt-availability-card {
	overflow: hidden;
	border: 1px solid var(--nt-line);
	border-radius: 22px;
	background: var(--nt-white);
	box-shadow: var(--nt-shadow);
}

.nt-availability-card__top {
	position: relative;
	margin: 8px;
	padding: 24px;
	border-radius: 16px;
	background: radial-gradient(120% 90% at 100% 0%, rgba(58, 124, 165, .45), transparent 60%), var(--nt-navy);
	color: var(--nt-white);
}

.nt-card-kicker {
	color: rgba(255, 255, 255, .74);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.nt-online-dot {
	position: absolute;
	top: 22px;
	right: 22px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(31, 138, 91, .22);
	color: #7ee2b0;
	font-size: 12px;
	font-weight: 800;
}

.nt-availability-card__top > strong {
	display: block;
	margin-top: 18px;
	font-family: var(--nt-display);
	font-size: 34px;
	letter-spacing: -.02em;
}

.nt-availability-card__top > p {
	margin: 4px 0 18px;
	color: rgba(255, 255, 255, .68);
}

.nt-notary-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, .15);
}

.nt-avatar {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--nt-blue), #6fa8c9);
	font-weight: 900;
}

.nt-notary-row small,
.nt-review-card small {
	display: block;
	color: rgba(255, 255, 255, .65);
	font-size: 12px;
}

.nt-stars {
	display: inline-flex;
	gap: 2px;
	color: var(--nt-gold);
}

.nt-stars .nt-icon {
	width: 14px;
	height: 14px;
}

.nt-notary-row .nt-stars {
	margin-left: auto;
}

.nt-availability-card__bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 10px 18px 20px;
}

.nt-availability-card__bottom div {
	padding: 12px;
	border-radius: 10px;
	background: #f4f7f9;
}

.nt-availability-card__bottom span,
.nt-summary-box span,
.nt-review-table span {
	display: block;
	color: #8a96a0;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.nt-availability-card__bottom .nt-btn {
	grid-column: 1 / -1;
	width: 100%;
}

.nt-trust-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 14px 32px;
	padding: 18px 20px;
	border-top: 1px solid var(--nt-line);
	border-bottom: 1px solid var(--nt-line);
	background: var(--nt-white);
	color: var(--nt-soft);
}

.nt-trust-strip > span {
	color: #9aa4ad;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.nt-section {
	padding: clamp(56px, 7vw, 82px) 0;
}

.nt-section-head {
	max-width: 720px;
	margin: 0 auto 34px;
	text-align: center;
}

.nt-dark-panel .nt-section-head {
	margin-inline: 0;
	text-align: left;
}

.nt-eyebrow {
	margin-bottom: 10px;
	color: var(--nt-blue);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.nt-section-head h2,
.nt-split h2,
.nt-final-cta h2,
.nt-booking-panel h2,
.nt-booking-summary h1,
.nt-callout h2,
.nt-contact-card h2 {
	margin: 0;
	font-family: var(--nt-display);
	font-size: clamp(30px, 4vw, 42px);
	line-height: 1.08;
	letter-spacing: -.025em;
}

.nt-section-head p,
.nt-lede {
	margin: 12px 0 0;
	color: var(--nt-muted);
	font-size: 17px;
	line-height: 1.65;
}

.nt-grid {
	display: grid;
	gap: 16px;
}

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

.nt-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nt-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nt-service-card,
.nt-mini-card,
.nt-price-card,
.nt-review-card,
.nt-contact-card,
.nt-callout {
	padding: 24px;
	border: 1px solid var(--nt-line);
	border-radius: 16px;
	background: var(--nt-white);
}

.nt-service-card {
	transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.nt-service-card:hover,
.nt-contact-card:hover {
	border-color: var(--nt-navy);
	box-shadow: 0 16px 34px -24px rgba(21, 50, 74, .55);
	transform: translateY(-2px);
}

.nt-icon-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	border-radius: 12px;
	background: var(--nt-tint);
	color: var(--nt-navy);
}

.nt-service-card h3,
.nt-mini-card h3,
.nt-step-card h3,
.nt-price-card h3,
.nt-review-card b,
.nt-remote-step h3 {
	margin: 0;
	font-size: 16px;
	line-height: 1.25;
}

.nt-service-card p,
.nt-mini-card p,
.nt-step-card p,
.nt-price-card p,
.nt-review-card p,
.nt-remote-step p,
.nt-callout p,
.nt-contact-card p {
	margin: 7px 0 0;
	color: var(--nt-muted);
	font-size: 14px;
	line-height: 1.6;
}

.nt-dark-panel {
	position: relative;
	overflow: hidden;
	padding: clamp(32px, 5vw, 54px);
	border-radius: 28px;
	background: radial-gradient(80% 120% at 0% 0%, rgba(58, 124, 165, .4), transparent 55%), var(--nt-navy);
	color: var(--nt-white);
}

.nt-dark-panel .nt-eyebrow {
	color: #8fc0dd;
}

.nt-dark-panel .nt-section-head p,
.nt-dark-panel .nt-step-card p {
	color: rgba(255, 255, 255, .66);
}

.nt-step-card {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 16px;
	background: rgba(255, 255, 255, .06);
}

.nt-step-card > div,
.nt-remote-step > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.nt-step-card .nt-icon {
	color: #8fc0dd;
	font-size: 28px;
}

.nt-step-card span {
	color: rgba(255, 255, 255, .2);
	font: 700 28px/1 var(--nt-display);
}

.nt-split {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: clamp(28px, 5vw, 50px);
	align-items: center;
}

.nt-metric-row {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin-top: 24px;
}

.nt-metric-row strong {
	display: block;
	color: var(--nt-navy);
	font: 700 31px/1 var(--nt-display);
}

.nt-metric-row span {
	color: var(--nt-muted);
	font-size: 13px;
	font-weight: 800;
}

.nt-mini-card .nt-icon,
.nt-callout .nt-icon {
	color: var(--nt-green);
	font-size: 26px;
}

.nt-pricing-preview {
	border-block: 1px solid var(--nt-line);
	background: var(--nt-white);
}

.nt-price-card {
	position: relative;
	background: var(--nt-paper);
}

.nt-price-card--featured {
	border: 2px solid var(--nt-navy);
	background: var(--nt-white);
	box-shadow: var(--nt-shadow);
}

.nt-badge {
	position: absolute;
	top: -12px;
	left: 24px;
	padding: 5px 11px;
	border-radius: 999px;
	background: var(--nt-green);
	color: var(--nt-white);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.nt-price {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin: 18px 0;
}

.nt-price strong {
	font: 700 44px/1 var(--nt-display);
	letter-spacing: -.03em;
}

.nt-price span {
	color: #8a96a0;
	font-weight: 800;
}

.nt-price-card ul {
	display: grid;
	gap: 11px;
	padding: 20px 0 0;
	margin: 0;
	border-top: 1px solid var(--nt-line);
	list-style: none;
}

.nt-price-card li {
	display: flex;
	gap: 9px;
	color: var(--nt-soft);
	font-size: 14px;
}

.nt-price-card li .nt-icon {
	color: var(--nt-green);
}

.nt-review-card p {
	color: #2e3a43;
	font-size: 15px;
}

.nt-review-card__person {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-top: 20px;
}

.nt-review-card__person > span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: var(--nt-tint);
	color: var(--nt-navy);
	font-weight: 900;
}

.nt-review-card small {
	color: #8a96a0;
}

.nt-faq-preview {
	max-width: 880px;
}

.nt-accordion {
	display: grid;
	gap: 10px;
}

.nt-accordion__item {
	border: 1px solid var(--nt-line);
	border-radius: 14px;
	background: var(--nt-white);
}

.nt-accordion__item button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 20px 22px;
	border: 0;
	background: transparent;
	color: var(--nt-ink);
	font-weight: 900;
	text-align: left;
}

.nt-accordion__item i {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: var(--nt-tint);
	color: var(--nt-navy);
	font-style: normal;
}

.nt-accordion__item.is-open i {
	content: '-';
}

.nt-accordion__item div {
	padding: 0 22px 20px;
}

.nt-accordion__item p {
	margin: 0;
	color: var(--nt-muted);
}

.nt-final-cta {
	margin-bottom: 80px;
	padding: clamp(36px, 6vw, 56px);
	border-radius: 28px;
	background: radial-gradient(70% 120% at 100% 0%, rgba(58, 124, 165, .5), transparent 55%), linear-gradient(120deg, var(--nt-navy), var(--nt-navy-2));
	color: var(--nt-white);
	text-align: center;
}

.nt-final-cta p {
	max-width: 540px;
	margin: 14px auto 28px;
	color: rgba(255, 255, 255, .78);
	font-size: 18px;
}

.nt-remote-hero {
	padding: clamp(54px, 7vw, 76px) 0;
	background: radial-gradient(60% 110% at 100% 0%, rgba(58, 124, 165, .45), transparent 55%), linear-gradient(150deg, var(--nt-navy), var(--nt-navy-2));
	color: var(--nt-white);
}

.nt-remote-hero p {
	color: rgba(255, 255, 255, .78);
}

.nt-video-card {
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 20px;
	background: #0e2233;
	box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .6);
}

.nt-video-card__bar,
.nt-upload-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.nt-video-card__bar {
	padding: 4px 6px 12px;
	color: rgba(255, 255, 255, .58);
	font-size: 12px;
	font-weight: 800;
}

.nt-video-card__bar span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #ff8d8d;
}

.nt-video-card__bar i {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #ff6b6b;
}

.nt-video-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.nt-video-grid > div {
	position: relative;
	display: flex;
	aspect-ratio: 4 / 3;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 12px;
	background: repeating-linear-gradient(135deg, #1c3b54, #1c3b54 10px, #1f415c 10px, #1f415c 20px);
	color: rgba(255, 255, 255, .7);
	font-size: 12px;
	font-weight: 800;
}

.nt-video-grid b {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--nt-blue), #6fa8c9);
	color: var(--nt-white);
}

.nt-video-grid em {
	position: absolute;
	top: 8px;
	right: 8px;
	padding: 4px 7px;
	border-radius: 5px;
	background: var(--nt-green);
	color: var(--nt-white);
	font-size: 9px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}

.nt-upload-row {
	margin-top: 8px;
	padding: 12px;
	border-radius: 11px;
	background: rgba(255, 255, 255, .06);
}

.nt-upload-row .nt-icon {
	color: #8fc0dd;
	font-size: 24px;
}

.nt-upload-row div {
	flex: 1;
}

.nt-upload-row b {
	display: block;
	color: var(--nt-white);
	font-size: 12px;
}

.nt-upload-row span {
	display: block;
	height: 4px;
	margin-top: 7px;
	overflow: hidden;
	border-radius: 99px;
	background: rgba(255, 255, 255, .15);
}

.nt-upload-row span i {
	display: block;
	width: 72%;
	height: 100%;
	background: #46d98a;
}

.nt-upload-row em {
	color: #8ee9b6;
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
}

.nt-panel {
	padding: 40px;
	border: 1px solid var(--nt-line);
	border-radius: 24px;
	background: var(--nt-white);
}

.nt-remote-step {
	padding: 8px;
}

.nt-remote-step span {
	display: grid;
	place-items: center;
	width: 31px;
	height: 31px;
	border-radius: 999px;
	background: var(--nt-navy);
	color: var(--nt-white);
	font-weight: 900;
}

.nt-remote-step .nt-icon {
	color: var(--nt-blue);
	font-size: 22px;
}

.nt-callout {
	background: var(--nt-tint);
}

.nt-page-hero {
	padding: clamp(52px, 8vw, 86px) 0 24px;
}

.nt-page-hero--center {
	text-align: center;
}

.nt-page-hero--center h1,
.nt-page-hero--center p {
	margin-inline: auto;
}

.nt-section-action {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.nt-price-card h2 {
	margin: 0;
	font: 700 20px/1.15 var(--nt-display);
	letter-spacing: -.02em;
}

.nt-price-card > .nt-btn {
	width: 100%;
	margin-top: 22px;
}

.nt-pricing-preview--open {
	border-top: 0;
}

.nt-split--top {
	align-items: start;
}

.nt-fee-note {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 24px;
	padding: 16px;
	border-radius: 14px;
	background: var(--nt-tint);
	color: var(--nt-soft);
	font-size: 14px;
	font-weight: 700;
}

.nt-fee-note .nt-icon {
	margin-top: 2px;
	color: var(--nt-navy);
	font-size: 22px;
}

.nt-fee-table,
.nt-area-list {
	overflow: hidden;
	border: 1px solid var(--nt-line);
	border-radius: 18px;
	background: var(--nt-white);
}

.nt-fee-table > div,
.nt-area-list > div {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 20px;
	border-bottom: 1px solid #f0f0eb;
}

.nt-fee-table > div:last-child,
.nt-area-list > div:last-child {
	border-bottom: 0;
}

.nt-fee-table strong,
.nt-area-list strong {
	display: block;
	font-size: 15px;
}

.nt-fee-table p,
.nt-area-list span {
	display: block;
	margin: 4px 0 0;
	color: var(--nt-muted);
	font-size: 13px;
	line-height: 1.5;
}

.nt-fee-table b {
	flex: 0 0 auto;
	color: var(--nt-navy);
	font: 700 20px/1 var(--nt-display);
	text-align: right;
}

.nt-dark-panel--pricing {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.nt-dark-panel--pricing h2 {
	margin: 0;
	font-family: var(--nt-display);
	font-size: clamp(30px, 4vw, 42px);
	line-height: 1.08;
}

.nt-dark-panel--pricing p {
	max-width: 680px;
	margin: 10px 0 0;
	color: rgba(255, 255, 255, .72);
}

.nt-service-estimator {
	padding-bottom: 0;
}

.nt-estimator-card {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: clamp(24px, 5vw, 52px);
	align-items: center;
	padding: clamp(28px, 5vw, 48px);
	border-radius: 26px;
	background: linear-gradient(135deg, var(--nt-white), #f4f8fa);
	border: 1px solid var(--nt-line);
	box-shadow: var(--nt-shadow);
}

.nt-estimator-card h2 {
	margin: 0;
	font-family: var(--nt-display);
	font-size: clamp(30px, 4vw, 42px);
	line-height: 1.08;
	letter-spacing: -.025em;
}

.nt-estimator-card p {
	max-width: 600px;
	color: var(--nt-muted);
}

.nt-dispatch-note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
	padding: 8px 11px;
	border-radius: 999px;
	background: var(--nt-tint);
	color: var(--nt-soft);
	font-size: 13px;
	font-weight: 800;
}

.nt-dispatch-note .nt-icon {
	color: var(--nt-navy);
}

.nt-estimator-address {
	margin-top: 22px;
}

.nt-estimator-address input:disabled {
	background: #f4f7f9;
	color: #9aa4ad;
	cursor: not-allowed;
}

.nt-estimator-address small {
	color: var(--nt-muted);
	font-weight: 700;
	line-height: 1.5;
}

.nt-range-field {
	display: grid;
	gap: 12px;
	margin-top: 26px;
	color: var(--nt-soft);
	font-size: 13px;
	font-weight: 900;
}

.nt-range-field input {
	width: 100%;
	accent-color: var(--nt-navy);
}

.nt-estimator-result {
	padding: 28px;
	border-radius: 20px;
	background: radial-gradient(120% 100% at 100% 0%, rgba(58, 124, 165, .42), transparent 58%), var(--nt-navy);
	color: var(--nt-white);
}

.nt-estimator-result > span {
	display: inline-flex;
	padding: 6px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .78);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.nt-estimator-result strong {
	display: block;
	margin-top: 18px;
	font: 700 54px/1 var(--nt-display);
	letter-spacing: -.04em;
}

.nt-estimator-result p {
	margin: 8px 0 24px;
	color: rgba(255, 255, 255, .72);
}

.nt-area-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nt-area-list > div:nth-child(odd) {
	border-right: 1px solid #f0f0eb;
}

.nt-page-hero h1 {
	font-size: clamp(40px, 5vw, 58px);
}

.nt-contact-card {
	display: block;
}

.nt-contact-card .nt-icon {
	color: var(--nt-navy);
	font-size: 30px;
}

.nt-booking {
	padding: 32px 0 90px;
}

.nt-back-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 18px;
	color: var(--nt-muted);
	font-size: 14px;
	font-weight: 900;
}

.nt-booking__grid {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 28px;
	align-items: start;
}

.nt-booking-summary,
.nt-booking-panel {
	border: 1px solid var(--nt-line);
	border-radius: 20px;
	background: var(--nt-white);
}

.nt-booking-summary {
	position: sticky;
	top: 116px;
	padding: 24px;
}

.nt-booking-summary h1 {
	font-size: 22px;
}

.nt-booking-summary > p {
	margin: 3px 0 22px;
	color: #8a96a0;
	font-size: 13px;
}

.nt-step-list {
	display: grid;
	gap: 5px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.nt-step-list li {
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 10px 12px;
	align-items: center;
	padding: 8px;
	border-radius: 10px;
	color: var(--nt-muted);
}

.nt-step-list li.is-active {
	background: var(--nt-tint);
	color: var(--nt-ink);
}

.nt-step-list li.is-done span {
	background: var(--nt-green);
}

.nt-step-list span {
	display: grid;
	grid-row: span 2;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: #eef0f2;
	color: #9aa4ad;
	font-size: 13px;
	font-weight: 900;
}

.nt-step-list .is-active span {
	background: var(--nt-navy);
	color: var(--nt-white);
}

.nt-step-list small {
	color: #9aa4ad;
	font-size: 12px;
}

.nt-summary-box {
	display: grid;
	gap: 9px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--nt-line);
}

.nt-summary-box h2 {
	margin: 0 0 4px;
	color: #9aa4ad;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.nt-summary-box > div,
.nt-review-table > div {
	display: flex;
	justify-content: space-between;
	gap: 14px;
}

.nt-summary-box b,
.nt-review-table b {
	font-size: 13px;
	text-align: right;
}

.nt-summary-total {
	align-items: baseline;
	padding-top: 14px;
	border-top: 1px solid var(--nt-line);
}

.nt-summary-total strong {
	color: var(--nt-navy);
	font: 700 25px/1 var(--nt-display);
}

.nt-booking-panel {
	display: flex;
	min-height: 520px;
	flex-direction: column;
	padding: 32px;
}

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

.nt-booking-step {
	flex: 1;
}

.nt-booking-step > p {
	margin: 6px 0 24px;
	color: var(--nt-muted);
}

.nt-choice-grid {
	display: grid;
	gap: 14px;
}

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

.nt-choice-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nt-choice-card {
	display: flex;
	min-height: 132px;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 18px;
	border: 1.5px solid var(--nt-line);
	border-radius: 14px;
	background: var(--nt-white);
	color: var(--nt-ink);
	text-align: left;
	transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.nt-choice-card.is-selected {
	border: 2px solid var(--nt-navy);
	background: var(--nt-tint);
	box-shadow: 0 12px 24px -22px rgba(21, 50, 74, .6);
}

.nt-choice-card .nt-icon {
	color: var(--nt-navy);
	font-size: 26px;
}

.nt-choice-card span {
	color: var(--nt-muted);
	font-size: 13px;
}

.nt-choice-card--compact {
	min-height: 104px;
}

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

.nt-field {
	display: grid;
	gap: 9px;
	color: var(--nt-soft);
	font-size: 13px;
	font-weight: 900;
}

.nt-field-label {
	display: block;
}

.nt-field--wide {
	grid-column: 1 / -1;
}

.nt-field input,
.nt-field textarea {
	width: 100%;
	border: 1.5px solid #e0e0da;
	border-radius: 11px;
	background: var(--nt-white);
	color: var(--nt-ink);
	font-size: 15px;
	outline: 0;
}

.nt-field input {
	height: 50px;
	padding: 0 15px;
}

.nt-field textarea {
	min-height: 94px;
	padding: 13px 15px;
	resize: vertical;
}

.nt-segmented,
.nt-stepper {
	display: flex;
	gap: 10px;
}

.nt-segmented button {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	border: 1.5px solid var(--nt-line);
	border-radius: 11px;
	background: var(--nt-white);
	color: var(--nt-muted);
	font-weight: 900;
}

.nt-segmented button.is-selected {
	border-color: var(--nt-navy);
	background: var(--nt-navy);
	color: var(--nt-white);
}

.nt-stepper {
	width: max-content;
	overflow: hidden;
	border: 1.5px solid #e0e0da;
	border-radius: 11px;
}

.nt-stepper button,
.nt-stepper input {
	width: 48px;
	height: 48px;
	border: 0;
	background: var(--nt-tint);
	color: var(--nt-navy);
	font-size: 18px;
	font-weight: 900;
	text-align: center;
}

.nt-stepper input {
	width: 58px;
	background: var(--nt-white);
	color: var(--nt-ink);
}

.nt-privacy-note {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin-top: 20px;
	padding: 14px 16px;
	border-radius: 12px;
	background: #f4f7f9;
	color: var(--nt-muted);
	font-size: 13px;
}

.nt-review-table {
	overflow: hidden;
	border: 1px solid var(--nt-line);
	border-radius: 16px;
}

.nt-review-table > div {
	padding: 15px 18px;
	border-bottom: 1px solid #f0f0eb;
}

.nt-review-table > div:last-child {
	border-bottom: 0;
	background: #f4f7f9;
}

.nt-muted {
	color: var(--nt-muted);
	font-size: 13px;
}

.nt-booking-actions {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid #f0f0eb;
}

.nt-booking-actions .nt-btn[disabled] {
	background: #d4dade;
	color: var(--nt-white);
	box-shadow: none;
	cursor: not-allowed;
	transform: none;
}

.nt-booking-error {
	margin: 18px 0 0;
	padding: 12px 14px;
	border-radius: 10px;
	background: #fff3cd;
	color: #664d03;
	font-size: 13px;
	font-weight: 800;
}

.nt-booking-success {
	max-width: 560px;
	margin: auto;
	text-align: center;
}

.nt-success-icon {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 22px;
	border-radius: 999px;
	background: var(--nt-green-soft);
	color: var(--nt-green);
	font-size: 42px;
}

.nt-footer {
	padding: 56px clamp(20px, 4vw, 56px) 28px;
	background: #11283b;
	color: #cdd6dd;
}

.nt-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 36px;
	width: min(1200px, 100%);
	margin: 0 auto;
}

.nt-footer .nt-brand__mark {
	background: var(--nt-white);
	color: var(--nt-navy);
}

.nt-footer .nt-brand__text strong {
	color: var(--nt-white);
}

.nt-footer p {
	max-width: 330px;
	color: #9fb0bc;
	font-size: 14px;
}

.nt-footer h2 {
	margin: 0 0 14px;
	color: #6b8090;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.nt-footer a,
.nt-footer span {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 11px;
	color: #cdd6dd;
	font-size: 14px;
}

.nt-footer__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.nt-footer__badges span {
	margin-top: 0;
	padding: 7px 11px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .07);
	font-size: 12px;
	font-weight: 900;
}

.nt-footer__badges .nt-icon {
	color: #46d98a;
}

.nt-footer__socials {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.nt-footer__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-top: 0;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 9px;
	background: rgba(255, 255, 255, .07);
	color: var(--nt-white);
}

.nt-footer__socials .nt-icon {
	width: 18px;
	height: 18px;
}

.nt-footer__fine {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	width: min(1200px, 100%);
	margin: 36px auto 0;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	color: #7c8e9b;
	font-size: 12px;
}

.nt-footer__fine span {
	display: block;
	max-width: 650px;
	margin: 0;
	color: #7c8e9b;
	font-size: 12px;
}

.nt-mobile-cta {
	display: none;
}

@media (max-width: 1080px) {
	.nt-nav__links,
	.nt-phone-link {
		display: none;
	}

	.nt-menu-toggle {
		display: inline-flex;
	}

	.nt-hero,
	.nt-split,
	.nt-estimator-card,
	.nt-booking__grid {
		grid-template-columns: 1fr;
	}

	.nt-booking-summary {
		position: static;
	}

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

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

	.nt-dark-panel--pricing {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 760px) {
	.nt-wrap {
		width: min(100% - 32px, 1200px);
	}

	.nt-nav {
		min-height: 64px;
	}

	.nt-nav__actions .nt-btn {
		display: none;
	}

	.nt-mobile-menu,
	.nt-grid--2,
	.nt-grid--3,
	.nt-grid--4,
	.nt-choice-grid--2,
	.nt-choice-grid--3,
	.nt-form-grid,
	.nt-video-grid,
	.nt-area-list,
	.nt-footer__grid {
		grid-template-columns: 1fr;
	}

	.nt-area-list > div:nth-child(odd) {
		border-right: 0;
	}

	.nt-hero {
		padding-top: 34px;
	}

	.nt-availability-card__bottom {
		grid-template-columns: 1fr;
	}

	.nt-dark-panel,
	.nt-panel,
	.nt-booking-panel,
	.nt-booking-summary {
		padding: 22px;
	}

	.nt-booking-actions {
		flex-direction: column;
	}

	.nt-booking-actions .nt-btn {
		width: 100%;
	}

	.nt-footer__fine {
		flex-direction: column;
	}

	.nt-mobile-cta {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 30;
		display: flex;
		gap: 10px;
		padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
		border-top: 1px solid #e2e2dc;
		background: var(--nt-white);
		box-shadow: 0 -6px 24px -8px rgba(0, 0, 0, .12);
	}

	.nt-mobile-cta a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		min-height: 52px;
		border-radius: 12px;
		font-weight: 900;
	}

	.nt-mobile-cta a:first-child {
		flex: 0 0 52px;
		border: 1.5px solid #d5dde2;
		color: var(--nt-navy);
	}

	.nt-mobile-cta a:last-child {
		flex: 1;
		background: var(--nt-navy);
		color: var(--nt-white);
	}

	.nt-final-cta,
	.nt-footer {
		margin-bottom: 76px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
	}
}
