/* ==========================================================================
   NASDrive — main stylesheet
   Brand: ink #15171C · NASDrive red #E41E26 · road amber #FFC21A
   (logo red is #EB212A; --nd-red is a hair deeper so white-on-red and
   red-on-white text both pass WCAG AA)
   Type:  Sora (display) · Manrope (text)
   ========================================================================== */

:root {
	--nd-ink: #15171C;
	--nd-ink-2: #1C1F26;
	--nd-ink-3: #272B34;
	--nd-red: #E41E26;
	--nd-red-600: #C4141C;
	--nd-red-400: #F2434B;
	--nd-red-300: #FF6B71;
	--nd-red-200: #FFB3B6;
	--nd-red-100: #FDE2E3;
	--nd-red-50: #FFF3F3;
	--nd-amber: #FFC21A;
	--nd-text: #23252B;
	--nd-muted: #60636C;
	--nd-line: #E8E8EB;
	--nd-bg: #F6F6F7;
	--nd-white: #FFFFFF;
	--nd-danger: #D0203A;
	--nd-success: #12A263;

	--nd-font-head: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--nd-font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--nd-container: 1240px;
	--nd-gutter: 24px;
	--nd-radius: 28px;
	--nd-ease: cubic-bezier(.2, .75, .2, 1);
	--nd-shadow-sm: 0 1px 2px rgba(21, 23, 28, .05);
	--nd-shadow: 0 30px 60px -30px rgba(21, 23, 28, .28);
	--nd-shadow-lg: 0 50px 100px -40px rgba(21, 23, 28, .45);
	--nd-shadow-red: 0 18px 40px -14px rgba(228, 30, 38, .45);
	--nd-grad-red: linear-gradient(135deg, #F2434B 0%, #E41E26 55%, #B0131A 100%);
	--nd-grad-dark: linear-gradient(160deg, #272B34 0%, #15171C 100%);
	--nd-nav-h: 88px;
	--nd-nav-h-stuck: 74px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--nd-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--nd-text);
	background: var(--nd-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--nd-red); text-decoration: none; transition: color .25s; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--nd-font-head); color: var(--nd-ink); line-height: 1.2; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--nd-red-300); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--nd-red); color: #fff; }

.nd-icon { width: 20px; height: 20px; flex-shrink: 0; }
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.nd-skip {
	position: fixed; top: 12px; left: 12px; z-index: 999; padding: 12px 20px; border-radius: 12px;
	background: var(--nd-red); color: #fff; font-weight: 700; transform: translateY(-200%); transition: transform .3s;
}
.nd-skip:focus { transform: none; }

.nd-container { width: 100%; max-width: calc(var(--nd-container) + var(--nd-gutter) * 2); margin-inline: auto; padding-inline: var(--nd-gutter); }
.nd-container--narrow { max-width: calc(1000px + var(--nd-gutter) * 2); }

.nd-section { position: relative; padding-block: clamp(80px, 9vw, 128px); }
.nd-section--tint { background: var(--nd-bg); }

/* ---------- Typography helpers ---------- */
.nd-eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	font: 700 13px/1.2 var(--nd-font-head); letter-spacing: .16em; text-transform: uppercase;
	color: var(--nd-red);
}
.nd-eyebrow::before {
	content: ""; width: 30px; height: 3px; border-radius: 3px; flex-shrink: 0;
	background: linear-gradient(90deg, currentColor 0 11px, transparent 11px 18px, currentColor 18px 100%);
}
.nd-eyebrow--light { color: var(--nd-red-200); }

.nd-title {
	margin: 16px 0 0;
	font: 700 clamp(2.1rem, 3.9vw, 3.3rem)/1.08 var(--nd-font-head);
	letter-spacing: -.035em;
	color: var(--nd-ink);
}
.nd-hl { color: var(--nd-red); }
.nd-lead { margin: 18px 0 0; font-size: 1.1rem; line-height: 1.7; color: var(--nd-muted); }

.nd-head { max-width: 720px; margin-bottom: 56px; }
.nd-head--center { margin-inline: auto; text-align: center; }
.nd-head--center .nd-eyebrow { justify-content: center; }

.nd-split-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px 48px; margin-bottom: 56px; flex-wrap: wrap; }
.nd-split-head .nd-head { margin-bottom: 0; }
.nd-split-head__side { max-width: 440px; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.nd-split-head__side .nd-lead { margin: 0; }

/* ---------- Buttons & links ---------- */
.nd-btn {
	position: relative; isolation: isolate; overflow: hidden;
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	height: 54px; padding: 0 26px; border-radius: 999px; border: 0; cursor: pointer;
	font: 700 15px/1 var(--nd-font-head); letter-spacing: -.01em; white-space: nowrap;
	transition: transform .35s var(--nd-ease), box-shadow .35s var(--nd-ease), background-color .3s, color .3s, border-color .3s;
}
.nd-btn .nd-icon { width: 18px; height: 18px; transition: transform .35s var(--nd-ease); }
.nd-btn:hover .nd-icon { transform: translateX(3px); }
.nd-btn:hover .nd-icon--arrow-up-right { transform: translate(2px, -2px); }
.nd-btn:hover .nd-icon--chevron-down { transform: translateY(2px); }
.nd-btn::after {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
	transform: translateX(-120%); transition: transform .8s var(--nd-ease);
}
.nd-btn:hover::after { transform: translateX(120%); }

.nd-btn--primary { background: var(--nd-grad-red); color: #fff; box-shadow: var(--nd-shadow-red), inset 0 1px 0 rgba(255, 255, 255, .25); }
.nd-btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 24px 50px -16px rgba(228, 30, 38, .6), inset 0 1px 0 rgba(255, 255, 255, .25); }
.nd-btn--outline { background: transparent; color: var(--nd-ink); box-shadow: inset 0 0 0 1.5px var(--nd-line); }
.nd-btn--outline:hover { color: var(--nd-red); background: var(--nd-red-50); box-shadow: inset 0 0 0 1.5px var(--nd-red-300); }
.nd-btn--light { background: #fff; color: var(--nd-ink); box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .35); }
.nd-btn--light:hover { color: var(--nd-red); transform: translateY(-2px); }
.nd-btn--glass { background: rgba(255, 255, 255, .1); color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.nd-btn--glass:hover { color: #fff; background: rgba(255, 255, 255, .18); }
.nd-btn--dark { background: var(--nd-ink); color: #fff; }
.nd-btn--dark:hover { color: #fff; background: var(--nd-ink-3); transform: translateY(-2px); }
.nd-btn--sm { height: 44px; padding: 0 18px; font-size: 14px; }
.nd-btn--block { width: 100%; }

.nd-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.nd-btn-row--center { justify-content: center; }

.nd-link {
	display: inline-flex; align-items: center; gap: 8px;
	font: 700 15px/1.3 var(--nd-font-head); color: var(--nd-red);
}
.nd-link span { background: linear-gradient(currentColor, currentColor) 0 100% / 0 2px no-repeat; transition: background-size .4s var(--nd-ease); padding-bottom: 2px; }
.nd-link:hover span { background-size: 100% 2px; }
.nd-link .nd-icon { width: 17px; height: 17px; transition: transform .35s var(--nd-ease); }
.nd-link:hover .nd-icon { transform: translateX(4px); }

.nd-round {
	width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
	display: inline-grid; place-items: center; color: #fff;
	background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
	transition: background .3s, color .3s, transform .3s var(--nd-ease), box-shadow .3s;
}
.nd-round:hover { background: #fff; color: var(--nd-ink); }
.nd-round--dark { color: var(--nd-ink); background: #fff; box-shadow: inset 0 0 0 1.5px var(--nd-line); }
.nd-round--dark:hover { background: var(--nd-red); color: #fff; box-shadow: var(--nd-shadow-red); }

.nd-pill {
	display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px;
	border-radius: 999px; background: var(--nd-red-50); color: var(--nd-red);
	font: 700 14px/1 var(--nd-font-head); transition: background .3s, color .3s, transform .3s var(--nd-ease);
}
.nd-pill .nd-icon { width: 16px; height: 16px; }
.nd-pill:hover { background: var(--nd-red); color: #fff; transform: translateY(-2px); }

.nd-tag {
	display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 12px;
	border-radius: 999px; background: var(--nd-bg); color: var(--nd-muted);
	font: 600 13px/1 var(--nd-font-body);
}
.nd-tag .nd-icon { width: 14px; height: 14px; }
.nd-tag--red { background: var(--nd-red-50); color: var(--nd-red); }
.nd-tag .nd-price { font-size: 14px; color: var(--nd-red); }

/* ---------- Price ---------- */
.nd-price { font: 700 18px/1 var(--nd-font-head); color: var(--nd-ink); letter-spacing: -.02em; white-space: nowrap; }
.nd-price__cur { font-size: .6em; position: relative; top: -.55em; margin-right: 2px; color: var(--nd-red); }
.nd-price--xl { font-size: clamp(2.2rem, 3.2vw, 2.7rem); letter-spacing: -.045em; }
.nd-price--hero { font: 800 clamp(3.6rem, 6.5vw, 5.4rem)/1 var(--nd-font-head); letter-spacing: -.055em; color: #fff; }
.nd-price--hero .nd-price__cur { color: var(--nd-amber); }

.nd-chip {
	display: inline-flex; align-items: baseline; gap: 8px; padding: 9px 14px;
	border-radius: 12px; background: var(--nd-red-50);
}
.nd-chip em { font: 600 13px/1 var(--nd-font-body); font-style: normal; color: var(--nd-muted); }

/* ---------- Checklist ---------- */
.nd-checklist { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 12px; }
.nd-checklist li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.55; }
.nd-checklist .nd-icon {
	width: 22px; height: 22px; padding: 4px; margin-top: 1px; border-radius: 50%;
	background: var(--nd-red); color: #fff; stroke-width: 3;
}
.nd-checklist--light li { color: rgba(255, 255, 255, .92); }
.nd-checklist--light .nd-icon { background: var(--nd-amber); color: var(--nd-ink); }

/* ---------- Prose (WYSIWYG content) ---------- */
.nd-prose { color: var(--nd-muted); }
.nd-prose > *:first-child { margin-top: 0; }
.nd-prose > *:last-child { margin-bottom: 0; }
.nd-prose p { margin: 0 0 1.1em; }
.nd-prose strong, .nd-prose b { color: var(--nd-ink); font-weight: 700; }
.nd-prose em { color: var(--nd-text); }
.nd-prose u { text-decoration-color: var(--nd-red); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.nd-prose a { color: var(--nd-red); text-decoration: underline; text-underline-offset: 3px; }
.nd-prose h2, .nd-prose h3, .nd-prose h4 { margin: 1.8em 0 .6em; letter-spacing: -.02em; }
.nd-prose h2 { font-size: 1.6rem; }
.nd-prose h3 { font-size: 1.25rem; }
.nd-prose ul, .nd-prose ol { margin: 0 0 1.2em; padding: 0; }
.nd-prose ul { list-style: none; }
.nd-prose ul li { position: relative; padding-left: 28px; margin-bottom: .6em; }
.nd-prose ul li::before {
	content: ""; position: absolute; left: 0; top: .72em; width: 15px; height: 3px; border-radius: 3px;
	background: linear-gradient(90deg, var(--nd-red) 0 6px, transparent 6px 9px, var(--nd-red) 9px);
}
.nd-prose ol { padding-left: 1.3em; }
.nd-prose ol li { margin-bottom: .6em; padding-left: .3em; }
.nd-prose ol li::marker { color: var(--nd-red); font-weight: 700; }
.nd-prose img { border-radius: 18px; }
.nd-prose blockquote { margin: 1.5em 0; padding: 20px 24px; border-left: 4px solid var(--nd-red); background: var(--nd-red-50); border-radius: 0 16px 16px 0; color: var(--nd-ink); }
.nd-prose--lg { font-size: 1.07rem; line-height: 1.85; }
.nd-prose--sm { font-size: .95rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.nd-header { position: absolute; top: 0; left: 0; right: 0; z-index: 100; color: #fff; }
.admin-bar .nd-header { top: 32px; }

.nd-topbar { border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: 13.5px; color: rgba(255, 255, 255, .78); }
.nd-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 46px; }
.nd-topbar__info { display: flex; flex-wrap: wrap; gap: 6px 28px; margin: 0; padding: 0; list-style: none; }
.nd-topbar__info a { display: inline-flex; align-items: center; gap: 8px; color: inherit; }
.nd-topbar__info a:hover { color: #fff; }
.nd-topbar__info .nd-icon { width: 15px; height: 15px; color: var(--nd-red-300); }

.nd-navbar { height: var(--nd-nav-h); transition: background-color .35s, box-shadow .35s, height .35s; }
.nd-navbar__inner { display: flex; align-items: center; gap: 28px; height: 100%; }

.nd-brand { position: relative; display: block; flex-shrink: 0; }
.nd-brand img { height: 32px; width: auto; transition: opacity .3s; }
.nd-brand__dark { position: absolute; inset: 0; opacity: 0; }

.nd-nav { flex: 1; display: flex; justify-content: center; }
.nd-menu { list-style: none; margin: 0; padding: 0; }
.nd-menu--desktop { display: flex; align-items: center; gap: 2px; }
.nd-menu--desktop > li { position: relative; display: flex; align-items: center; height: var(--nd-nav-h); transition: height .35s; }
.nd-menu--desktop > li > a {
	position: relative; display: flex; align-items: center; padding: 10px 14px;
	font: 600 15px/1 var(--nd-font-body); color: rgba(255, 255, 255, .86); white-space: nowrap;
}
.nd-menu--desktop > li > a::after {
	content: ""; position: absolute; left: 14px; right: 14px; bottom: 0; height: 3px; border-radius: 3px;
	background: linear-gradient(90deg, var(--nd-red-300) 0 40%, transparent 40% 55%, var(--nd-red-300) 55%);
	transform: scaleX(0); transform-origin: left; transition: transform .4s var(--nd-ease);
}
.nd-menu--desktop > li > a:hover,
.nd-menu--desktop > li:hover > a { color: #fff; }
.nd-menu--desktop > li > a:hover::after,
.nd-menu--desktop > .current-menu-item > a::after,
.nd-menu--desktop > .current-menu-ancestor > a::after,
.nd-menu--desktop > .current-menu-parent > a::after { transform: scaleX(1); }
.nd-menu--desktop > .current-menu-item > a,
.nd-menu--desktop > .current-menu-ancestor > a { color: #fff; }
.nd-menu--desktop .menu-item-has-children > a { padding-right: 4px; }

.nd-sub-toggle {
	display: inline-grid; place-items: center; width: 26px; height: 26px; padding: 0; margin-right: 6px;
	border: 0; background: none; cursor: pointer; color: inherit; opacity: .8; border-radius: 8px;
}
.nd-sub-toggle .nd-icon { width: 16px; height: 16px; transition: transform .3s var(--nd-ease); }
.nd-menu--desktop > li:hover > .nd-sub-toggle .nd-icon,
.nd-menu--desktop > li.is-open > .nd-sub-toggle .nd-icon { transform: rotate(180deg); }

/* Dropdown panels (menus, login, enroll) */
.nd-menu--desktop .sub-menu,
.nd-dropdown__menu {
	position: absolute; z-index: 20; list-style: none; margin: 0; padding: 10px;
	background: #fff; border-radius: 22px;
	box-shadow: 0 40px 80px -30px rgba(21, 23, 28, .45), 0 0 0 1px rgba(21, 23, 28, .06);
	opacity: 0; visibility: hidden; transform: translateY(12px);
	transition: opacity .3s var(--nd-ease), transform .35s var(--nd-ease), visibility .3s;
}
.nd-menu--desktop .sub-menu { top: calc(100% - 14px); left: -14px; min-width: 380px; }
/* Open state comes from hover (nav) or the JS "is-open" class — not from
   :focus-within, which kept menus open after a second click or Esc. */
.nd-menu--desktop > li:hover > .sub-menu,
.nd-menu--desktop > li:has(:focus-visible) > .sub-menu,
.nd-menu--desktop > li.is-open > .sub-menu,
.nd-dropdown.is-open > .nd-dropdown__menu { opacity: 1; visibility: visible; transform: none; }
.nd-menu--desktop .sub-menu::before {
	content: ""; position: absolute; top: -8px; left: 40px; width: 16px; height: 16px; background: #fff;
	transform: rotate(45deg); border-radius: 4px 0 0 0;
}
.nd-menu--desktop .sub-menu a,
.nd-dropdown__menu a {
	position: relative; display: flex; align-items: center; gap: 14px; padding: 11px 12px;
	border-radius: 14px; color: var(--nd-ink); font-weight: 600; font-size: 15px; line-height: 1.35;
	transition: background .25s, color .25s;
}
.nd-menu--desktop .sub-menu a:hover,
.nd-menu--desktop .sub-menu .current-menu-item > a,
.nd-dropdown__menu a:hover { background: var(--nd-red-50); color: var(--nd-red); }
.nd-dd-icon {
	display: grid; place-items: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: 13px;
	background: var(--nd-red-50); color: var(--nd-red); transition: background .25s, color .25s, transform .35s var(--nd-ease);
}
.nd-dd-icon .nd-icon { width: 21px; height: 21px; }
a:hover > .nd-dd-icon { background: var(--nd-red); color: #fff; transform: rotate(-6deg); }
.nd-dd-text { display: flex; flex-direction: column; gap: 2px; }
.nd-dd-text strong { font: 700 15px/1.3 var(--nd-font-head); color: var(--nd-ink); }
.nd-dd-text small { font-size: 13px; line-height: 1.45; color: var(--nd-muted); font-weight: 500; }
.nd-dd-arrow { width: 16px; height: 16px; margin-left: auto; opacity: .35; transition: opacity .25s, transform .25s; }
a:hover > .nd-dd-arrow { opacity: 1; transform: translate(2px, -2px); }

.nd-dropdown { position: relative; }
.nd-dropdown__menu { top: calc(100% + 12px); right: 0; min-width: 290px; }

.nd-navbar__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nd-login__btn {
	display: inline-flex; align-items: center; gap: 8px; height: 46px; padding: 0 16px; cursor: pointer;
	border: 0; border-radius: 999px; background: rgba(255, 255, 255, .06);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25); color: #fff;
	font: 600 14px/1 var(--nd-font-body); transition: background .3s, box-shadow .3s, color .3s;
}
.nd-login__btn .nd-icon { width: 17px; height: 17px; }
.nd-login__btn .nd-login__chev { width: 15px; height: 15px; transition: transform .3s; }
.nd-login.is-open .nd-login__chev { transform: rotate(180deg); }
.nd-login__btn:hover { background: rgba(255, 255, 255, .14); }
.nd-navbar__cta { height: 46px; }

.nd-burger {
	display: none; position: relative; width: 48px; height: 48px; border: 0; border-radius: 14px; cursor: pointer;
	background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}
.nd-burger span { position: absolute; left: 14px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .3s, width .3s; }
.nd-burger span:nth-child(1) { top: 17px; width: 20px; }
.nd-burger span:nth-child(2) { top: 23px; width: 20px; }
.nd-burger span:nth-child(3) { top: 29px; width: 12px; }
.nd-burger:hover span:nth-child(3) { width: 20px; }

/* Stuck header */
.nd-header.is-stuck .nd-navbar {
	position: fixed; top: 0; left: 0; right: 0; height: var(--nd-nav-h-stuck);
	background: rgba(255, 255, 255, .88); color: var(--nd-ink);
	backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px);
	box-shadow: 0 12px 40px -18px rgba(21, 23, 28, .25), 0 1px 0 rgba(21, 23, 28, .06);
	animation: ndSlideDown .5s var(--nd-ease);
}
.admin-bar .nd-header.is-stuck .nd-navbar { top: 32px; }
.nd-header.is-stuck .nd-brand__light { opacity: 0; }
.nd-header.is-stuck .nd-brand__dark { opacity: 1; }
.nd-header.is-stuck .nd-menu--desktop > li { height: var(--nd-nav-h-stuck); }
.nd-header.is-stuck .nd-menu--desktop > li > a { color: var(--nd-ink); }
.nd-header.is-stuck .nd-menu--desktop > li > a:hover,
.nd-header.is-stuck .nd-menu--desktop > .current-menu-item > a,
.nd-header.is-stuck .nd-menu--desktop > .current-menu-ancestor > a { color: var(--nd-red); }
.nd-header.is-stuck .nd-menu--desktop > li > a::after { background: linear-gradient(90deg, var(--nd-red) 0 40%, transparent 40% 55%, var(--nd-red) 55%); }
.nd-header.is-stuck .nd-login__btn { color: var(--nd-ink); background: transparent; box-shadow: inset 0 0 0 1.5px var(--nd-line); }
.nd-header.is-stuck .nd-login__btn:hover { box-shadow: inset 0 0 0 1.5px var(--nd-red-300); color: var(--nd-red); }
.nd-header.is-stuck .nd-burger { color: var(--nd-ink); background: var(--nd-bg); box-shadow: inset 0 0 0 1px var(--nd-line); }

@keyframes ndSlideDown { from { transform: translateY(-100%); } to { transform: none; } }

/* ---------- Mobile drawer ---------- */
.nd-drawer { position: fixed; inset: 0; z-index: 400; visibility: hidden; pointer-events: none; }
.nd-drawer.is-open { visibility: visible; pointer-events: auto; }
.nd-drawer__backdrop { position: absolute; inset: 0; background: rgba(21, 23, 28, .55); backdrop-filter: blur(4px); opacity: 0; transition: opacity .4s; }
.nd-drawer.is-open .nd-drawer__backdrop { opacity: 1; }
.nd-drawer__panel {
	position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); overflow-y: auto;
	display: flex; flex-direction: column; gap: 26px; padding: 22px 26px 30px;
	background: radial-gradient(120% 60% at 100% 0%, rgba(228, 30, 38, .35), transparent 60%), var(--nd-ink);
	color: #fff; transform: translateX(100%); transition: transform .55s var(--nd-ease);
}
.nd-drawer.is-open .nd-drawer__panel { transform: none; }
.nd-drawer__head { display: flex; align-items: center; justify-content: space-between; }
.nd-drawer__head img { height: 26px; width: auto; }
.nd-drawer__close {
	width: 46px; height: 46px; border-radius: 14px; border: 0; cursor: pointer; display: grid; place-items: center;
	background: rgba(255, 255, 255, .08); color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}
.nd-menu--mobile > li { display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.nd-menu--mobile a { display: block; padding: 15px 0; color: #fff; font: 600 18px/1.3 var(--nd-font-head); }
.nd-menu--mobile .current-menu-item > a { color: var(--nd-red-300); }
.nd-menu--mobile .nd-sub-toggle { width: 42px; height: 42px; margin: 0; background: rgba(255, 255, 255, .06); border-radius: 12px; }
.nd-menu--mobile .is-open > .nd-sub-toggle .nd-icon { transform: rotate(180deg); }
.nd-menu--mobile .sub-menu { grid-column: 1 / -1; display: none; list-style: none; margin: 0; padding: 0 0 12px 14px; border-left: 2px solid rgba(255, 107, 113, .35); }
.nd-menu--mobile .is-open > .sub-menu { display: block; animation: ndFadeUp .4s var(--nd-ease); }
.nd-menu--mobile .sub-menu a { padding: 9px 0; font: 500 15.5px/1.35 var(--nd-font-body); color: rgba(255, 255, 255, .78); }
.nd-drawer__label { display: block; margin-bottom: 12px; font: 700 12px/1 var(--nd-font-head); letter-spacing: .16em; text-transform: uppercase; color: var(--nd-red-300); }
.nd-drawer__portals { display: grid; gap: 8px; }
.nd-drawer__portals a, .nd-drawer__doc {
	display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 14px;
	background: rgba(255, 255, 255, .06); color: #fff; font-weight: 600; font-size: 15px;
}
.nd-drawer__portals .nd-icon, .nd-drawer__doc .nd-icon { color: var(--nd-red-300); }
.nd-drawer__foot { margin-top: auto; display: grid; gap: 14px; }
.nd-drawer__call { display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #fff; font: 700 18px/1 var(--nd-font-head); padding: 10px; }
.nd-drawer__call .nd-icon { color: var(--nd-amber); }

/* ==========================================================================
   Home hero
   ========================================================================== */
.nd-hero {
	position: relative; isolation: isolate; overflow: hidden;
	display: flex; flex-direction: column;
	min-height: clamp(720px, 100vh, 1000px);
	background: var(--nd-ink); color: #fff;
}
.nd-hero__slides { position: absolute; inset: 0; z-index: -3; }
.nd-hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.nd-hero__slide.is-active { opacity: 1; }
.nd-hero__slide img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; transform: scale(1.14); transition: transform 9s linear; }
.nd-hero__slide.is-active img { transform: scale(1.02); }
.nd-hero__overlay {
	position: absolute; inset: 0; z-index: -2;
	background:
		radial-gradient(55% 60% at 5% 95%, rgba(228, 30, 38, .38), transparent 70%),
		linear-gradient(0deg, rgba(21, 23, 28, .9) 0%, rgba(21, 23, 28, 0) 38%),
		linear-gradient(98deg, rgba(21, 23, 28, .96) 0%, rgba(21, 23, 28, .86) 34%, rgba(21, 23, 28, .45) 64%, rgba(21, 23, 28, .2) 100%);
}
.nd-hero__lanes { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.nd-hero__lanes span {
	position: absolute; left: -40%; height: 1px; width: 30%;
	background: linear-gradient(90deg, transparent, rgba(255, 107, 113, .38), transparent);
	animation: ndStreak 12s linear infinite;
}
.nd-hero__lanes span:nth-child(1) { top: 26%; animation-delay: -2s; }
.nd-hero__lanes span:nth-child(2) { top: 74%; animation-delay: -8s; animation-duration: 15s; }
@keyframes ndStreak { from { transform: translateX(0); } to { transform: translateX(400%); } }

.nd-hero__inner {
	flex: 1; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr); align-items: center; gap: 48px;
	padding-top: 190px; padding-bottom: 170px;
}
.nd-hero__badge {
	display: inline-flex; align-items: center; gap: 10px; margin-bottom: 30px; padding: 9px 18px 9px 14px;
	border-radius: 999px; background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	font: 600 13.5px/1.2 var(--nd-font-body); letter-spacing: .02em;
}
.nd-pulse { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #3DE59A; }
.nd-pulse::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #3DE59A; animation: ndPulse 2s ease-out infinite; }
@keyframes ndPulse { from { transform: scale(1); opacity: .8; } to { transform: scale(3.2); opacity: 0; } }

.nd-hero__texts { display: grid; }
.nd-hero__text { grid-area: 1 / 1; visibility: hidden; }
.nd-hero__text.is-active { visibility: visible; }
.nd-hero__text > * { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .8s var(--nd-ease); }
.nd-hero__text .nd-hero__line { display: block; opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .9s var(--nd-ease); }
.nd-hero__text.is-active > *,
.nd-hero__text.is-active .nd-hero__line { opacity: 1; transform: none; }
.nd-hero__text.is-active .nd-hero__title { transition-delay: 0s; }
.nd-hero__text.is-active .nd-hero__line:nth-child(1) { transition-delay: .15s; }
.nd-hero__text.is-active .nd-hero__line:nth-child(2) { transition-delay: .28s; }
.nd-hero__text.is-active .nd-hero__lead { transition-delay: .42s; }
.nd-hero__text.is-active .nd-hero__actions { transition-delay: .55s; }
.nd-hero__title {
	margin: 0 0 26px;
	font: 700 clamp(2.8rem, 6.2vw, 5.4rem)/1.02 var(--nd-font-head); letter-spacing: -.045em; color: #fff;
}
.nd-hero__title .nd-hl, .nd-pagehero__title .nd-hl {
	background: linear-gradient(92deg, #FF3B44 0%, #FF6168 55%, #FF9A9E 100%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.nd-hero__lead { max-width: 580px; margin: 0 0 38px; font-size: clamp(1.05rem, 1.35vw, 1.2rem); line-height: 1.7; color: rgba(255, 255, 255, .8); }
.nd-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.nd-hero__card {
	justify-self: end; width: 100%; max-width: 360px; padding: 28px;
	border-radius: 30px; color: #fff;
	background: linear-gradient(160deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .05));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22), 0 40px 80px -30px rgba(0, 0, 0, .55);
	backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%);
	animation: ndFloat 7s ease-in-out infinite;
}
.nd-hero__card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.nd-hero__card-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--nd-grad-red); box-shadow: var(--nd-shadow-red); }
.nd-hero__card-ic .nd-icon { width: 22px; height: 22px; }
.nd-hero__card-eyebrow { font: 700 12px/1.3 var(--nd-font-head); letter-spacing: .14em; text-transform: uppercase; color: var(--nd-red-200); }
.nd-hero__card-title { margin: 0 0 18px; font: 700 2rem/1.1 var(--nd-font-head); letter-spacing: -.035em; }
.nd-hero__card-title .nd-hl { color: var(--nd-amber); }
.nd-hero__card .nd-checklist { font-size: 14.5px; gap: 10px; margin-bottom: 22px; }
@keyframes ndFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.nd-hero__nav { position: absolute; left: 0; right: 0; bottom: 44px; z-index: 2; }
.nd-hero__nav-inner { display: flex; align-items: center; gap: 28px; }
.nd-hero__count { display: flex; align-items: baseline; gap: 8px; font: 600 15px/1 var(--nd-font-head); color: rgba(255, 255, 255, .6); }
.nd-hero__count strong { font-size: 24px; color: #fff; }
.nd-hero__bars { display: flex; gap: 8px; }
.nd-hero__bar { width: 64px; height: 24px; padding: 0; border: 0; background: none; cursor: pointer; display: flex; align-items: center; }
.nd-hero__bar span { position: relative; display: block; width: 100%; height: 3px; overflow: hidden; border-radius: 3px; background: rgba(255, 255, 255, .22); }
.nd-hero__bar span::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.nd-hero__bar.is-active span::after { animation: ndProgress var(--nd-slide-time, 7s) linear forwards; }
.nd-hero.is-paused .nd-hero__bar.is-active span::after { animation-play-state: paused; }
@keyframes ndProgress { to { transform: scaleX(1); } }
.nd-hero__arrows { margin-left: auto; display: flex; gap: 10px; }

.nd-road {
	position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 2; opacity: .9;
	background: repeating-linear-gradient(90deg, var(--nd-amber) 0 38px, transparent 38px 76px);
	background-size: 76px 4px; animation: ndRoad 1.1s linear infinite;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
@keyframes ndRoad { to { background-position: -76px 0; } }

/* ---------- Ticker ---------- */
.nd-marquee { position: relative; overflow: hidden; padding: 20px 0; background: var(--nd-red); color: #fff; }
.nd-marquee::before, .nd-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1; pointer-events: none; }
.nd-marquee::before { left: 0; background: linear-gradient(90deg, var(--nd-red), transparent); }
.nd-marquee::after { right: 0; background: linear-gradient(-90deg, var(--nd-red), transparent); }
.nd-marquee__track { display: flex; width: max-content; animation: ndMarquee 42s linear infinite; }
.nd-marquee:hover .nd-marquee__track { animation-play-state: paused; }
.nd-marquee__group { display: flex; gap: 52px; padding-right: 52px; margin: 0; list-style: none; }
.nd-marquee__group li { display: inline-flex; align-items: center; gap: 14px; white-space: nowrap; font: 600 17px/1 var(--nd-font-head); letter-spacing: -.01em; }
.nd-marquee__group .nd-icon { width: 22px; height: 22px; opacity: .55; }
@keyframes ndMarquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Home: services
   ========================================================================== */
.nd-services { background: linear-gradient(180deg, var(--nd-bg) 0%, #fff 100%); }
.nd-services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.nd-services-grid--5 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.nd-services-grid--5 > :nth-child(-n+3) { grid-column: span 2; }
.nd-services-grid--5 > :nth-child(n+4) { grid-column: span 3; }

.nd-scard {
	position: relative; display: flex; flex-direction: column; background: #fff;
	border-radius: var(--nd-radius); box-shadow: inset 0 0 0 1px var(--nd-line), var(--nd-shadow-sm);
	transition: transform .5s var(--nd-ease), box-shadow .5s var(--nd-ease);
}
.nd-scard:hover { transform: translateY(-8px); box-shadow: inset 0 0 0 1px transparent, 0 40px 70px -35px rgba(21, 23, 28, .38); }
.nd-scard__media { position: relative; display: block; margin: 10px 10px 0; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 20px; background: var(--nd-bg); }
.nd-scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--nd-ease); }
.nd-scard:hover .nd-scard__media img { transform: scale(1.07); }
.nd-scard__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(21, 23, 28, .45)); }
.nd-scard__num {
	position: absolute; top: 14px; left: 14px; z-index: 1; padding: 7px 12px; border-radius: 999px;
	font: 700 12.5px/1 var(--nd-font-head); letter-spacing: .06em; color: #fff;
	background: rgba(21, 23, 28, .45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.nd-scard__body { display: flex; flex-direction: column; flex: 1; padding: 0 28px 26px; }
.nd-scard__icon {
	position: relative; z-index: 2; display: grid; place-items: center; width: 62px; height: 62px; margin-top: -31px;
	border-radius: 19px; background: var(--nd-grad-red); color: #fff;
	box-shadow: 0 14px 30px -10px rgba(228, 30, 38, .6), 0 0 0 6px #fff;
	transition: transform .5s var(--nd-ease);
}
.nd-scard__icon .nd-icon { width: 28px; height: 28px; }
.nd-scard:hover .nd-scard__icon { transform: rotate(-8deg) scale(1.05); }
.nd-scard__title { margin: 20px 0 10px; font-size: 1.32rem; line-height: 1.25; letter-spacing: -.02em; }
.nd-scard__title a { color: var(--nd-ink); }
.nd-scard__title a:hover { color: var(--nd-red); }
.nd-scard__text { margin: 0 0 20px; color: var(--nd-muted); }
.nd-scard__prices { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; }
.nd-scard__note { font-size: 13.5px; font-weight: 600; color: var(--nd-muted); }
.nd-scard__actions {
	margin-top: auto; padding-top: 20px; border-top: 1px dashed var(--nd-line);
	display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.nd-scard--wide { flex-direction: row; }
.nd-scard--wide .nd-scard__media { width: 44%; flex-shrink: 0; aspect-ratio: auto; margin: 10px 0 10px 10px; }
.nd-scard--wide .nd-scard__body { padding: 30px 30px 26px; }
.nd-scard--wide .nd-scard__icon { margin-top: 0; box-shadow: 0 14px 30px -10px rgba(228, 30, 38, .6); }

/* Enroll dropdown inside cards */
.nd-enroll .nd-dropdown__menu { top: auto; bottom: calc(100% + 10px); right: 0; min-width: 220px; transform: translateY(-8px); }
.nd-enroll.is-open .nd-dropdown__menu { transform: none; }
.nd-enroll .nd-btn .nd-icon { transition: transform .3s; }
.nd-enroll.is-open .nd-btn .nd-icon { transform: rotate(180deg); }

/* ==========================================================================
   Home: highlights
   ========================================================================== */
.nd-stats { position: relative; overflow: hidden; isolation: isolate; padding-block: clamp(64px, 7vw, 96px); background: var(--nd-ink); color: #fff; }
.nd-stats__decor {
	position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(40% 90% at 100% 0%, rgba(228, 30, 38, .45), transparent 70%),
		radial-gradient(30% 80% at 0% 100%, rgba(228, 30, 38, .3), transparent 70%),
		linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 64px 64px,
		linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 64px 64px;
}
.nd-stats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.nd-stat { padding: 6px 32px; border-left: 1px solid rgba(255, 255, 255, .12); }
.nd-stat:first-child { border-left: 0; padding-left: 0; }
.nd-stat__num { display: flex; align-items: baseline; gap: 10px; font: 700 clamp(3rem, 5.2vw, 4.5rem)/1 var(--nd-font-head); letter-spacing: -.05em; }
.nd-stat__num span { background: linear-gradient(180deg, #fff 30%, var(--nd-red-200)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nd-stat__num em { font: 700 15px/1 var(--nd-font-head); font-style: normal; letter-spacing: .02em; color: var(--nd-amber); }
.nd-stat__label { margin: 14px 0 0; font-size: 15px; color: rgba(255, 255, 255, .7); }

/* ==========================================================================
   Home: why choose
   ========================================================================== */
.nd-why { overflow: hidden; }
.nd-why__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.nd-why__visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.nd-why__orb {
	position: absolute; inset: 7%; border-radius: 50%;
	background: radial-gradient(circle at 30% 25%, #F5575E 0%, #E41E26 40%, #7A0C12 80%, #15171C 100%);
	box-shadow: 0 60px 120px -40px rgba(228, 30, 38, .65), inset 0 -30px 60px rgba(21, 23, 28, .5);
}
.nd-why__ring { position: absolute; inset: -6%; border-radius: 50%; border: 2px dashed rgba(228, 30, 38, .28); animation: ndSpin 60s linear infinite; }
.nd-why__ring--2 { inset: 9%; border: 1.5px dashed rgba(255, 255, 255, .28); animation-direction: reverse; animation-duration: 45s; }
@keyframes ndSpin { to { transform: rotate(360deg); } }
/* The car sits on a white "showroom" card (the photo has a white background). */
.nd-why__img {
	position: relative; z-index: 2; width: 86%; padding: 44px 30px 54px; border-radius: 34px; background: #fff;
	box-shadow: 0 60px 100px -45px rgba(21, 23, 28, .55), 0 0 0 10px rgba(255, 255, 255, .35);
	animation: ndFloat 8s ease-in-out infinite;
}
.nd-why__img img { width: 100%; }
.nd-why__img::after {
	content: ""; position: absolute; left: 12%; right: 12%; bottom: 26px; height: 4px; border-radius: 4px; opacity: .85;
	background: repeating-linear-gradient(90deg, var(--nd-amber) 0 26px, transparent 26px 48px);
}
.nd-float {
	position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px;
	background: #fff; box-shadow: 0 26px 50px -22px rgba(21, 23, 28, .4); color: var(--nd-ink);
}
.nd-float--badge { top: 10%; left: -1%; padding: 14px 20px 14px 14px; border-radius: 20px; animation: ndFloat 6s ease-in-out infinite; }
.nd-float__ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: var(--nd-grad-red); color: #fff; }
.nd-float strong { display: block; font: 800 22px/1 var(--nd-font-head); letter-spacing: -.02em; }
.nd-float small { display: block; margin-top: 4px; font-size: 13px; color: var(--nd-muted); font-weight: 600; }
.nd-float--chip { bottom: 11%; right: 0; padding: 13px 20px; border-radius: 999px; font: 700 15px/1 var(--nd-font-head); animation: ndFloat 7s ease-in-out -2s infinite; }
.nd-float--chip .nd-icon { color: var(--nd-red); }

.nd-why__content .nd-head { margin-bottom: 36px; }
.nd-features { list-style: none; margin: 0 0 36px; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.nd-feature {
	display: flex; gap: 14px; padding: 18px; border-radius: 20px; background: var(--nd-bg);
	transition: background .35s, box-shadow .35s, transform .35s var(--nd-ease);
}
.nd-feature:hover { background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line), 0 24px 50px -30px rgba(21, 23, 28, .35); transform: translateY(-3px); }
.nd-feature__ic { display: grid; place-items: center; flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--nd-red); color: #fff; }
.nd-feature__ic .nd-icon { width: 17px; height: 17px; stroke-width: 3; }
.nd-feature strong { display: block; margin-bottom: 4px; font: 700 16px/1.3 var(--nd-font-head); color: var(--nd-ink); }
.nd-feature small { display: block; font-size: 14.5px; line-height: 1.55; color: var(--nd-muted); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.nd-testis { background: linear-gradient(180deg, var(--nd-bg), #fff); }
.nd-carousel {
	display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px;
	overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none;
	padding: 12px 6px 34px; margin: -12px -6px 0;
}
.nd-carousel::-webkit-scrollbar { display: none; }
.nd-carousel > * { scroll-snap-align: start; }
.nd-carousel-nav { flex-direction: row; gap: 10px; }

.nd-tcard {
	position: relative; margin: 0; display: flex; flex-direction: column; gap: 20px;
	padding: 34px 32px 28px; border-radius: var(--nd-radius); background: #fff;
	box-shadow: inset 0 0 0 1px var(--nd-line);
	transition: transform .5s var(--nd-ease), box-shadow .5s var(--nd-ease);
}
.nd-tcard:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px transparent, 0 40px 70px -35px rgba(21, 23, 28, .35); }
.nd-tcard__quote { position: absolute; top: 24px; right: 26px; color: var(--nd-red-100); }
.nd-tcard__quote .nd-icon { width: 58px; height: 58px; }
.nd-stars { display: flex; gap: 3px; color: #DCDCE0; }
.nd-stars .nd-icon { width: 18px; height: 18px; }
.nd-stars .is-on { color: var(--nd-amber); }
.nd-tcard__text { flex: 1; margin: 0; font-size: 1.06rem; line-height: 1.75; color: var(--nd-text); }
.nd-tcard__text p { margin: 0; }
.nd-tcard__who { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--nd-line); }
.nd-tcard__who strong { display: block; font: 700 16px/1.3 var(--nd-font-head); color: var(--nd-ink); }
.nd-tcard__who small { display: block; font-size: 13.5px; color: var(--nd-muted); }
.nd-avatar {
	display: grid; place-items: center; flex-shrink: 0; width: 50px; height: 50px; overflow: hidden; border-radius: 50%;
	background: var(--nd-grad-red); color: #fff; font: 700 16px/1 var(--nd-font-head);
	box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--nd-red-100);
}
.nd-avatar img { width: 100%; height: 100%; object-fit: cover; }

.nd-testi-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.nd-rating { display: flex; align-items: center; gap: 16px; padding: 18px 26px; border-radius: 24px; background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line), var(--nd-shadow); }
.nd-rating > strong { font: 800 3rem/1 var(--nd-font-head); letter-spacing: -.04em; color: var(--nd-ink); }
.nd-rating small { display: block; margin-top: 6px; font-size: 14px; color: var(--nd-muted); }

/* ==========================================================================
   Accordion (FAQs)
   ========================================================================== */
.nd-faq-teaser__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.nd-faq-teaser__intro { position: sticky; top: 110px; }
.nd-faq-teaser__intro .nd-head { margin-bottom: 32px; }

.nd-acc { display: flex; flex-direction: column; gap: 14px; }
.nd-acc__item {
	border-radius: 22px; background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line);
	transition: box-shadow .4s var(--nd-ease), background .4s;
}
.nd-acc__item:hover { box-shadow: inset 0 0 0 1px var(--nd-red-100), 0 20px 40px -30px rgba(21, 23, 28, .3); }
.nd-acc__item.is-open { box-shadow: inset 0 0 0 1.5px var(--nd-red-100), 0 30px 60px -30px rgba(21, 23, 28, .3); }
.nd-acc__q { margin: 0; }
.nd-acc__q button {
	display: flex; align-items: center; gap: 18px; width: 100%; padding: 22px 24px; cursor: pointer; text-align: left;
	border: 0; background: none; font: 700 1.06rem/1.45 var(--nd-font-head); letter-spacing: -.01em; color: var(--nd-ink);
}
.nd-acc__num { flex-shrink: 0; padding: 7px 9px; border-radius: 10px; background: var(--nd-red-50); color: var(--nd-red); font: 700 12.5px/1 var(--nd-font-head); transition: background .3s, color .3s; }
.nd-acc__item.is-open .nd-acc__num { background: var(--nd-red); color: #fff; }
.nd-acc__label { flex: 1; }
.nd-acc__icon { display: grid; place-items: center; flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--nd-bg); transition: transform .4s var(--nd-ease), background .3s, color .3s; }
.nd-acc__icon .nd-icon { width: 18px; height: 18px; }
.nd-acc__item.is-open .nd-acc__icon { transform: rotate(135deg); background: var(--nd-ink); color: #fff; }
.nd-acc__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--nd-ease); }
.nd-acc__item.is-open .nd-acc__a { grid-template-rows: 1fr; }
.nd-acc__inner { overflow: hidden; min-height: 0; }
.nd-acc__inner .nd-prose { padding: 0 24px 24px 80px; }

.nd-faqpage__grid { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.nd-faqpage__sticky { position: sticky; top: 110px; }
.nd-faqpage .nd-head { margin-bottom: 0; }
.nd-helpcard { position: relative; overflow: hidden; margin-top: 34px; padding: 30px; border-radius: 28px; background: var(--nd-grad-dark); color: #fff; }
.nd-helpcard::after { content: ""; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(228, 30, 38, .55), transparent 70%); }
.nd-helpcard__ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: rgba(255, 255, 255, .1); color: var(--nd-amber); }
.nd-helpcard h3 { margin: 18px 0 8px; font-size: 1.35rem; color: #fff; }
.nd-helpcard p { margin: 0 0 18px; color: rgba(255, 255, 255, .75); }
.nd-helpcard__phone { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; font: 700 20px/1 var(--nd-font-head); color: #fff; }
.nd-helpcard__phone .nd-icon { color: var(--nd-amber); }
.nd-helpcard__phone:hover { color: var(--nd-red-200); }

/* ==========================================================================
   Call band (above footer)
   ========================================================================== */
.nd-cta { position: relative; z-index: 3; margin-bottom: -120px; }
.nd-cta__panel {
	position: relative; overflow: hidden; isolation: isolate;
	display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); align-items: center; gap: 32px;
	padding: clamp(36px, 5vw, 64px); border-radius: 36px; color: #fff;
	background: linear-gradient(118deg, #F0343C 0%, #E41E26 40%, #A51118 75%, #6E0A0F 100%);
	box-shadow: 0 50px 100px -40px rgba(228, 30, 38, .65);
}
.nd-cta__decor { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.nd-cta__decor::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px) 0 0 / 48px 48px, linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px) 0 0 / 48px 48px;
	-webkit-mask-image: radial-gradient(70% 100% at 100% 50%, #000, transparent);
	mask-image: radial-gradient(70% 100% at 100% 50%, #000, transparent);
}
.nd-cta__decor span { position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .16); }
.nd-cta__decor span:nth-child(1) { width: 460px; height: 460px; right: -120px; top: -160px; }
.nd-cta__decor span:nth-child(2) { width: 300px; height: 300px; right: -40px; top: -80px; border-style: dashed; animation: ndSpin 50s linear infinite; }
.nd-cta__title { margin: 14px 0 12px; font-size: clamp(2.2rem, 4.2vw, 3.5rem); line-height: 1.04; letter-spacing: -.04em; color: #fff; }
.nd-cta__title .nd-hl { color: var(--nd-amber); }
.nd-cta__text { max-width: 520px; margin: 0 0 30px; color: rgba(255, 255, 255, .82); }
.nd-cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.nd-cta__phone {
	display: inline-flex; align-items: center; gap: 14px; padding: 8px 24px 8px 8px; border-radius: 999px; color: #fff;
	background: rgba(255, 255, 255, .1); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22); transition: background .3s;
}
.nd-cta__phone:hover { color: #fff; background: rgba(255, 255, 255, .18); }
.nd-cta__phone-ic { position: relative; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--nd-red); }
.nd-cta__phone-ic::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #fff; animation: ndRing 2.2s ease-out infinite; }
@keyframes ndRing { from { transform: scale(1); opacity: .7; } to { transform: scale(1.45); opacity: 0; } }
.nd-cta__phone small { display: block; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
.nd-cta__phone strong { display: block; font: 700 21px/1.2 var(--nd-font-head); letter-spacing: -.01em; }
.nd-cta__media { justify-self: center; }
.nd-cta__media img { width: min(250px, 100%); filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .45)); animation: ndSway 6s ease-in-out infinite; transform-origin: 50% 90%; }
@keyframes ndSway { 0%, 100% { transform: rotate(-7deg); } 50% { transform: rotate(4deg); } }

/* ==========================================================================
   Footer
   ========================================================================== */
.nd-footer { position: relative; overflow: hidden; isolation: isolate; padding-top: 96px; background: var(--nd-ink); color: rgba(255, 255, 255, .7); font-size: 15px; }
.nd-footer--with-cta { padding-top: 210px; }
.nd-footer__glow { position: absolute; inset: 0; z-index: -1; background: radial-gradient(40% 50% at 90% 10%, rgba(228, 30, 38, .35), transparent 70%), radial-gradient(35% 45% at 0% 100%, rgba(228, 30, 38, .22), transparent 70%); }
.nd-footer__grid { display: grid; grid-template-columns: 1.45fr 1fr 1.2fr 1.35fr; gap: 48px; padding-bottom: 64px; }
.nd-footer__logo img { height: 32px; width: auto; }
.nd-footer__brand p { max-width: 360px; margin: 24px 0 26px; line-height: 1.8; }
.nd-footer__badges { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.nd-footer__badge { width: 68px; height: 68px; border-radius: 50%; background: #fff; padding: 4px; object-fit: contain; }
.nd-footer__title { position: relative; margin: 0 0 26px; padding-bottom: 14px; font-size: 18px; color: #fff; letter-spacing: -.01em; }
.nd-footer__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--nd-red-400) 0 13px, transparent 13px 19px, var(--nd-red-400) 19px); }
.nd-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.nd-footer__links + .nd-footer__links { margin-top: 12px; }
.nd-footer__links a { display: inline-flex; align-items: center; gap: 0; color: rgba(255, 255, 255, .72); transition: color .25s, gap .3s var(--nd-ease); }
.nd-footer__links a::before { content: ""; width: 0; height: 2px; border-radius: 2px; background: var(--nd-red-300); transition: width .3s var(--nd-ease); }
.nd-footer__links a:hover { color: #fff; gap: 10px; }
.nd-footer__links a:hover::before { width: 12px; }
.nd-footer__contact ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.nd-footer__contact li { display: flex; align-items: flex-start; gap: 14px; line-height: 1.6; }
.nd-footer__contact a { color: rgba(255, 255, 255, .82); }
.nd-footer__contact a:hover { color: #fff; }
.nd-footer__contact small { color: var(--nd-red-300); font-weight: 600; }
.nd-footer__ic { display: grid; place-items: center; flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1); color: var(--nd-red-300); }
.nd-footer__ic .nd-icon { width: 18px; height: 18px; }
.nd-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px; padding: 26px 0 30px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 14px; }
.nd-footer__bottom p { margin: 0; }
.nd-footer__legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 26px; }
.nd-footer__legal a { color: rgba(255, 255, 255, .65); }
.nd-footer__legal a:hover { color: #fff; }

/* Social icons */
.nd-social { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; }
.nd-social a {
	display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #fff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2); transition: background .3s, box-shadow .3s, transform .3s var(--nd-ease);
}
.nd-social a:hover { background: var(--nd-red); box-shadow: inset 0 0 0 1px var(--nd-red); transform: translateY(-3px); color: #fff; }
.nd-social .nd-icon { width: 18px; height: 18px; }
.nd-social--topbar a { width: 30px; height: 30px; box-shadow: none; color: rgba(255, 255, 255, .78); }
.nd-social--topbar .nd-icon { width: 16px; height: 16px; }
.nd-social--solid a { color: var(--nd-ink); box-shadow: inset 0 0 0 1.5px var(--nd-line); width: 48px; height: 48px; }
.nd-social--solid a:hover { color: #fff; }

/* ==========================================================================
   Inner-page hero
   ========================================================================== */
.nd-pagehero { position: relative; isolation: isolate; overflow: hidden; padding: 222px 0 116px; background: var(--nd-ink); color: #fff; }
.nd-pagehero__bg { position: absolute; inset: 0; z-index: -3; }
.nd-pagehero__bg img { width: 100%; height: 100%; object-fit: cover; animation: ndZoomOut 14s ease-out both; }
@keyframes ndZoomOut { from { transform: scale(1.14); } to { transform: scale(1.02); } }
.nd-pagehero__overlay {
	position: absolute; inset: 0; z-index: -2;
	background:
		radial-gradient(45% 80% at 95% 0%, rgba(228, 30, 38, .5), transparent 70%),
		linear-gradient(100deg, rgba(21, 23, 28, .97) 0%, rgba(21, 23, 28, .9) 42%, rgba(21, 23, 28, .6) 100%);
}
.nd-pagehero:not(.has-image) .nd-pagehero__overlay {
	background:
		radial-gradient(45% 90% at 95% 0%, rgba(228, 30, 38, .55), transparent 70%),
		radial-gradient(35% 70% at 0% 100%, rgba(228, 30, 38, .25), transparent 70%),
		linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 64px 64px,
		linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 64px 64px,
		var(--nd-ink);
}
.nd-crumbs ol {
	display: inline-flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; margin: 0 0 24px; padding: 8px 18px;
	list-style: none; border-radius: 999px; background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
	backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); font-size: 14px;
}
.nd-crumbs li { display: inline-flex; align-items: center; gap: 10px; }
.nd-crumbs li + li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--nd-red-300); }
.nd-crumbs a { color: rgba(255, 255, 255, .72); }
.nd-crumbs a:hover { color: #fff; }
.nd-crumbs [aria-current] { color: #fff; font-weight: 600; }
.nd-pagehero__title { max-width: 900px; margin: 0; font-size: clamp(2.5rem, 5.4vw, 4.4rem); line-height: 1.04; letter-spacing: -.045em; color: #fff; }
.nd-pagehero__sub { max-width: 660px; margin: 20px 0 0; font-size: 1.15rem; color: rgba(255, 255, 255, .78); }

/* ==========================================================================
   About
   ========================================================================== */
.nd-about__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 100px); align-items: center; }
.nd-about__media { position: relative; padding: 0 70px 70px 0; }
.nd-about__frame { overflow: hidden; border-radius: 32px; aspect-ratio: 4 / 4.6; box-shadow: var(--nd-shadow-lg); }
.nd-about__frame img { width: 100%; height: 100%; object-fit: cover; }
.nd-about__frame--small { position: absolute; right: 0; bottom: 0; width: 50%; aspect-ratio: 1; border-radius: 28px; box-shadow: 0 0 0 10px #fff, var(--nd-shadow-lg); }
.nd-about__badge {
	position: absolute; left: -26px; top: 44px; display: flex; flex-direction: column; align-items: center; gap: 2px;
	padding: 20px 24px; border-radius: 24px; background: var(--nd-grad-red); color: #fff; box-shadow: var(--nd-shadow-red);
	animation: ndFloat 6s ease-in-out infinite;
}
.nd-about__badge-ic .nd-icon { width: 28px; height: 28px; color: var(--nd-amber); }
.nd-about__badge strong { font: 800 30px/1.1 var(--nd-font-head); letter-spacing: -.03em; }
.nd-about__badge small { font-size: 13px; font-weight: 600; opacity: .85; }
.nd-about__content .nd-head { margin-bottom: 26px; }
.nd-about__content .nd-prose { margin-bottom: 34px; }

.nd-values__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.nd-value { padding: 34px 28px; border-radius: 26px; background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line); transition: transform .45s var(--nd-ease), box-shadow .45s var(--nd-ease); }
.nd-value:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -32px rgba(21, 23, 28, .35); }
.nd-value__ic { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: var(--nd-red-50); color: var(--nd-red); transition: background .3s, color .3s; }
.nd-value:hover .nd-value__ic { background: var(--nd-red); color: #fff; }
.nd-value__ic .nd-icon { width: 26px; height: 26px; }
.nd-value h3 { margin: 22px 0 10px; font-size: 1.18rem; letter-spacing: -.015em; }
.nd-value p { margin: 0; color: var(--nd-muted); font-size: 15px; }

.nd-mission__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.nd-mission__card { position: relative; overflow: hidden; padding: clamp(32px, 4vw, 52px); border-radius: 32px; background: var(--nd-bg); }
.nd-mission__card--dark { background: var(--nd-grad-dark); color: #fff; }
.nd-mission__card--dark::after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(228, 30, 38, .55), transparent 70%); }
.nd-mission__ic { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 17px; background: rgba(255, 255, 255, .1); color: var(--nd-amber); }
.nd-mission__ic--red { background: var(--nd-red-50); color: var(--nd-red); }
.nd-mission__card h2 { margin: 22px 0 12px; font-size: clamp(1.7rem, 2.6vw, 2.2rem); letter-spacing: -.035em; }
.nd-mission__card--dark h2 { color: #fff; }
.nd-mission__card--dark .nd-hl { color: var(--nd-red-200); }
.nd-mission__card p { margin: 0 0 18px; font-size: 1.08rem; color: var(--nd-muted); }
.nd-mission__card--dark p { color: rgba(255, 255, 255, .78); }

/* ==========================================================================
   Services / Prices
   ========================================================================== */
.nd-packages .nd-head { margin-bottom: 40px; }
.nd-tabs__list {
	display: flex; gap: 6px; width: max-content; max-width: 100%; margin: 0 auto 56px; padding: 7px; overflow-x: auto;
	border-radius: 999px; background: var(--nd-bg); box-shadow: inset 0 0 0 1px var(--nd-line); scrollbar-width: none;
}
.nd-tabs__list::-webkit-scrollbar { display: none; }
.nd-tabs__tab {
	display: inline-flex; align-items: center; gap: 10px; height: 52px; padding: 0 26px; cursor: pointer; white-space: nowrap;
	border: 0; border-radius: 999px; background: none; color: var(--nd-muted); font: 700 15px/1 var(--nd-font-head);
	transition: background .35s var(--nd-ease), color .3s, box-shadow .35s;
}
.nd-tabs__tab .nd-icon { width: 18px; height: 18px; }
.nd-tabs__tab:hover { color: var(--nd-ink); }
.nd-tabs__tab.is-active { background: var(--nd-ink); color: #fff; box-shadow: 0 14px 30px -14px rgba(21, 23, 28, .7); }
.nd-tabs__panel.is-active { animation: ndFadeUp .6s var(--nd-ease); }
@keyframes ndFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.nd-pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.nd-pricing-grid--5 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.nd-pricing-grid--5 > :nth-child(-n+3) { grid-column: span 2; }
.nd-pricing-grid--5 > :nth-child(n+4) { grid-column: span 3; }
.nd-pcard {
	position: relative; display: flex; flex-direction: column; padding: 34px 30px 30px; border-radius: 30px; background: #fff;
	box-shadow: inset 0 0 0 1px var(--nd-line); transition: transform .5s var(--nd-ease), box-shadow .5s var(--nd-ease);
}
.nd-pcard:hover { transform: translateY(-8px); box-shadow: inset 0 0 0 1px transparent, 0 40px 80px -40px rgba(21, 23, 28, .4); }
.nd-pcard--featured { background: var(--nd-grad-dark); color: #fff; box-shadow: 0 40px 80px -40px rgba(21, 23, 28, .7); }
.nd-pcard--featured::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(60% 50% at 100% 0%, rgba(228, 30, 38, .55), transparent 70%); }
.nd-pcard > * { position: relative; }
.nd-pcard__ribbon {
	position: absolute; top: 26px; right: 24px; display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px;
	background: var(--nd-amber); color: var(--nd-ink); font: 700 11.5px/1 var(--nd-font-head); letter-spacing: .08em; text-transform: uppercase;
}
.nd-pcard__ribbon .nd-icon { width: 14px; height: 14px; }
.nd-pcard__head { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.nd-pcard__icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: var(--nd-red-50); color: var(--nd-red); }
.nd-pcard__icon .nd-icon { width: 26px; height: 26px; }
.nd-pcard--featured .nd-pcard__icon { background: rgba(255, 255, 255, .1); color: #fff; }
.nd-pcard__title { margin: 0; font-size: 1.28rem; line-height: 1.3; letter-spacing: -.02em; }
.nd-pcard--featured .nd-pcard__title { color: #fff; }
.nd-pcard__prices { display: flex; flex-wrap: wrap; gap: 14px 30px; margin: 24px 0 18px; padding: 20px 0; border-top: 1px dashed var(--nd-line); border-bottom: 1px dashed var(--nd-line); }
.nd-pcard--featured .nd-pcard__prices { border-color: rgba(255, 255, 255, .16); }
.nd-pcard__plabel { display: block; margin-bottom: 8px; font: 700 11.5px/1 var(--nd-font-head); letter-spacing: .12em; text-transform: uppercase; color: var(--nd-muted); }
.nd-pcard--featured .nd-price { color: #fff; }
.nd-pcard--featured .nd-price__cur { color: var(--nd-amber); }
.nd-pcard__text { flex: 1; margin: 0 0 26px; color: var(--nd-muted); }
.nd-pcard__text strong { color: var(--nd-ink); font-weight: 700; }
.nd-pcard--featured .nd-pcard__text { color: rgba(255, 255, 255, .75); }
.nd-pcard--featured .nd-pcard__text strong { color: #fff; }
.nd-pcard__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.nd-pcard--featured .nd-link { color: var(--nd-red-200); }

.nd-rates { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 24px; }
.nd-rates__card { padding: clamp(28px, 4vw, 48px); border-radius: 32px; background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line), var(--nd-shadow); }
.nd-rates__title { margin: 14px 0 0; font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -.035em; }
.nd-rates__card .nd-lead { margin-top: 12px; }
.nd-rates__list { list-style: none; margin: 28px 0 22px; padding: 0; display: grid; gap: 4px; }
.nd-rates__list li { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 16px; transition: background .25s; }
.nd-rates__list li:nth-child(odd) { background: var(--nd-bg); }
.nd-rates__list li:hover { background: var(--nd-red-50); }
.nd-rates__hours { display: inline-flex; align-items: center; gap: 10px; font: 600 16px/1 var(--nd-font-head); color: var(--nd-ink); white-space: nowrap; }
.nd-rates__hours .nd-icon { width: 18px; height: 18px; color: var(--nd-red); }
.nd-rates__dots { flex: 1; border-bottom: 2px dotted #CBCBD1; transform: translateY(3px); }
.nd-rates__list strong { font: 700 18px/1 var(--nd-font-head); color: var(--nd-red); }
.nd-rates__note { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0 0 28px; color: var(--nd-ink); }
.nd-rates__note .nd-icon { width: 18px; height: 18px; color: var(--nd-red); }
.nd-rates__note a { font-weight: 700; }
.nd-rates__media { overflow: hidden; min-height: 380px; border-radius: 32px; }
.nd-rates__media img { width: 100%; height: 100%; object-fit: cover; }

.nd-bundle {
	position: relative; overflow: hidden; isolation: isolate; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr);
	border-radius: 36px; color: #fff; background: linear-gradient(130deg, #15171C 0%, #4A0E13 55%, #E41E26 120%); box-shadow: var(--nd-shadow-lg);
}
.nd-bundle__decor { position: absolute; inset: 0; z-index: -1; background: radial-gradient(40% 60% at 70% 100%, rgba(228, 30, 38, .5), transparent 70%); }
.nd-bundle__decor::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 30px; height: 4px; opacity: .5;
	background: repeating-linear-gradient(90deg, var(--nd-amber) 0 38px, transparent 38px 76px); animation: ndRoad 1.6s linear infinite;
}
.nd-bundle__main { padding: clamp(32px, 5vw, 60px); }
.nd-bundle__ribbon { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--nd-amber); color: var(--nd-ink); font: 700 12px/1 var(--nd-font-head); letter-spacing: .1em; text-transform: uppercase; }
.nd-bundle__ribbon .nd-icon { width: 15px; height: 15px; }
.nd-bundle__title { margin: 22px 0 16px; font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.08; letter-spacing: -.04em; color: #fff; }
.nd-bundle__title .nd-hl { color: var(--nd-amber); }
.nd-bundle__text { max-width: 580px; margin: 0 0 28px; font-size: 1.08rem; color: rgba(255, 255, 255, .8); }
.nd-bundle__label { margin: 0 0 14px; font: 700 13px/1 var(--nd-font-head); letter-spacing: .12em; text-transform: uppercase; color: var(--nd-red-200); }
.nd-bundle .nd-checklist { margin-bottom: 0; }
.nd-bundle__side {
	display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 14px; padding: clamp(32px, 4vw, 52px);
	background: rgba(255, 255, 255, .06); box-shadow: inset 1px 0 0 rgba(255, 255, 255, .12); backdrop-filter: blur(6px);
}
.nd-bundle__plabel { font: 600 15px/1 var(--nd-font-body); color: rgba(255, 255, 255, .72); }
.nd-bundle__side .nd-btn { margin-top: 14px; }

/* ==========================================================================
   Service detail
   ========================================================================== */
.nd-svc__grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: clamp(32px, 5vw, 72px); align-items: start; }
.nd-svc__head { display: flex; align-items: flex-start; gap: 22px; margin-bottom: 30px; }
.nd-svc__icon { display: grid; place-items: center; flex-shrink: 0; width: 72px; height: 72px; border-radius: 22px; background: var(--nd-grad-red); color: #fff; box-shadow: var(--nd-shadow-red); }
.nd-svc__icon .nd-icon { width: 34px; height: 34px; }
.nd-svc__title { margin: 4px 0 14px; font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.15; letter-spacing: -.035em; }
.nd-svc__quick { display: flex; flex-wrap: wrap; gap: 10px; }
.nd-svc__quick:empty { display: none; }
.nd-callout { display: flex; align-items: flex-start; gap: 16px; margin: 30px 0 0; padding: 20px 22px; border-radius: 20px; background: linear-gradient(90deg, #FFF6DB, #FFFBEF); box-shadow: inset 0 0 0 1px #FFE19A; }
.nd-callout__ic { display: grid; place-items: center; flex-shrink: 0; width: 42px; height: 42px; border-radius: 13px; background: var(--nd-amber); color: var(--nd-ink); }
.nd-callout p { margin: 0; color: #5C4A12; }
.nd-callout strong { color: #2E2300; }
.nd-svc__main > .nd-btn-row { margin: 34px 0 44px; }
.nd-svc__figure { overflow: hidden; margin: 0; aspect-ratio: 16 / 10; border-radius: 32px; box-shadow: var(--nd-shadow-lg); }
.nd-svc__figure img { width: 100%; height: 100%; object-fit: cover; }

.nd-svc__side, .nd-register__side { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 20px; }
.nd-sidecard { display: block; padding: 28px; border-radius: 26px; background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line); color: inherit; }
.nd-sidecard--price { position: relative; overflow: hidden; background: var(--nd-grad-dark); color: #fff; box-shadow: var(--nd-shadow-lg); }
.nd-sidecard--price::after { content: ""; position: absolute; right: -70px; top: -70px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(228, 30, 38, .6), transparent 70%); pointer-events: none; }
.nd-sidecard--price > * { position: relative; z-index: 1; }
.nd-sidecard__label { display: block; font: 700 12px/1 var(--nd-font-head); letter-spacing: .16em; text-transform: uppercase; color: var(--nd-red-200); }
.nd-sidecard__prices { display: flex; flex-wrap: wrap; gap: 14px 30px; margin: 16px 0 20px; }
.nd-sidecard__prices small { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, .7); }
.nd-sidecard--price .nd-price { color: #fff; }
.nd-sidecard--price .nd-price__cur { color: var(--nd-amber); }
.nd-sidecard__note { margin: -6px 0 18px; font-size: 14px; color: rgba(255, 255, 255, .7); }
.nd-sidecard__course { margin: 12px 0 6px; font-size: 1.25rem; line-height: 1.3; color: #fff; }
.nd-sidecard--price .nd-enroll .nd-dropdown__menu { top: calc(100% + 10px); bottom: auto; left: 0; right: auto; transform: translateY(8px); }
.nd-sidecard--price .nd-enroll.is-open .nd-dropdown__menu { transform: none; }
.nd-sidecard__title { margin: 0 0 18px; font-size: 1.12rem; }
.nd-sidelinks { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.nd-sidelinks a { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 14px; color: var(--nd-ink); font-weight: 600; font-size: 15px; line-height: 1.35; transition: background .25s, color .25s; }
.nd-sidelinks a:hover, .nd-sidelinks a.is-current { background: var(--nd-red-50); color: var(--nd-red); }
.nd-sidelinks__ic { display: grid; place-items: center; flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px; background: var(--nd-bg); color: var(--nd-red); transition: background .25s, color .25s; }
.nd-sidelinks__ic .nd-icon { width: 18px; height: 18px; }
.nd-sidelinks a.is-current .nd-sidelinks__ic { background: var(--nd-red); color: #fff; }
.nd-sidelinks__arrow { width: 16px; height: 16px; margin-left: auto; opacity: .35; }
.nd-sidecard--call { display: flex; align-items: center; gap: 16px; background: var(--nd-grad-red); color: #fff; box-shadow: var(--nd-shadow-red); transition: transform .35s var(--nd-ease); }
.nd-sidecard--call:hover { color: #fff; transform: translateY(-4px); }
.nd-sidecard__callic { display: grid; place-items: center; flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%; background: rgba(255, 255, 255, .16); }
.nd-sidecard--call small { display: block; font-size: 13px; opacity: .8; }
.nd-sidecard--call strong { display: block; font: 700 21px/1.2 var(--nd-font-head); }

/* ==========================================================================
   Contact & forms
   ========================================================================== */
.nd-contact__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.nd-contact .nd-head { margin-bottom: 32px; }
.nd-infocards { display: grid; gap: 14px; }
.nd-infocard {
	position: relative; display: flex; align-items: center; gap: 18px; padding: 20px 22px; border-radius: 22px; color: inherit;
	background: var(--nd-bg); transition: background .3s, box-shadow .3s, transform .35s var(--nd-ease);
}
a.nd-infocard:hover { background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line), var(--nd-shadow); transform: translateY(-3px); color: inherit; }
.nd-infocard__ic { display: grid; place-items: center; flex-shrink: 0; width: 56px; height: 56px; border-radius: 18px; background: var(--nd-grad-red); color: #fff; box-shadow: var(--nd-shadow-red); }
.nd-infocard small { display: block; margin-bottom: 5px; font: 700 12px/1 var(--nd-font-head); letter-spacing: .14em; text-transform: uppercase; color: var(--nd-red); }
.nd-infocard strong { display: block; font: 700 1.04rem/1.5 var(--nd-font-head); color: var(--nd-ink); }
.nd-infocard strong a { color: var(--nd-ink); }
.nd-infocard strong a:hover { color: var(--nd-red); }
.nd-infocard em { margin-left: 6px; padding: 3px 8px; border-radius: 6px; background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line); font: 600 11.5px/1 var(--nd-font-body); font-style: normal; color: var(--nd-muted); vertical-align: 2px; }
.nd-infocard__arrow { width: 18px; height: 18px; margin-left: auto; opacity: .4; }
.nd-follow { margin-top: 34px; }
.nd-follow h3 { margin: 0 0 14px; font-size: 1.1rem; }

.nd-formcard { position: relative; padding: clamp(26px, 4vw, 48px); border-radius: 32px; background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line), 0 50px 90px -45px rgba(21, 23, 28, .35); }
.nd-formcard--inline { margin-top: 40px; }
.nd-formcard__head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 30px; }
.nd-formcard__ic { display: grid; place-items: center; flex-shrink: 0; width: 58px; height: 58px; border-radius: 18px; background: var(--nd-grad-red); color: #fff; box-shadow: var(--nd-shadow-red); }
.nd-formcard__ic .nd-icon { width: 26px; height: 26px; }
.nd-formcard__head h2 { margin: 4px 0 8px; font-size: clamp(1.55rem, 2.6vw, 2.1rem); letter-spacing: -.035em; }
.nd-formcard__head .nd-eyebrow { margin-top: 4px; }
.nd-formcard__head .nd-eyebrow + h2 { margin-top: 10px; }
.nd-formcard__head p { margin: 0; color: var(--nd-muted); }
.nd-form-missing { padding: 16px; border-radius: 14px; background: #FFF4E5; color: #7A4A00; }

.nd-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.nd-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.nd-field--full { grid-column: 1 / -1; }
.nd-field > label, .nd-label { font: 700 14px/1.3 var(--nd-font-head); color: var(--nd-ink); }
.nd-field .req { color: var(--nd-red); }
.wpcf7-form-control-wrap { position: relative; display: block; }
.nd-form input[type="text"], .nd-form input[type="email"], .nd-form input[type="tel"], .nd-form input[type="url"],
.nd-form input[type="number"], .nd-form input[type="date"], .nd-form select, .nd-form textarea {
	width: 100%; height: 56px; padding: 0 18px; border-radius: 16px; border: 1.5px solid var(--nd-line);
	background: var(--nd-bg); color: var(--nd-ink); font: 500 15.5px/1.4 var(--nd-font-body);
	transition: border-color .25s, background .25s, box-shadow .25s; -webkit-appearance: none; appearance: none;
}
.nd-form textarea { height: auto; min-height: 150px; padding: 16px 18px; resize: vertical; }
.nd-form select {
	padding-right: 46px; cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E41E26' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 18px center; background-size: 18px;
}
.nd-form ::placeholder { color: #9A9CA5; }
/* :not([type="submit"]) keeps these field states off the Send button (it would turn white-on-white once focused) */
.nd-form input:not([type="submit"]):hover, .nd-form select:hover, .nd-form textarea:hover { border-color: #CFCFD4; }
.nd-form input:not([type="submit"]):focus, .nd-form select:focus, .nd-form textarea:focus { outline: none; border-color: var(--nd-red); background: #fff; box-shadow: 0 0 0 5px rgba(228, 30, 38, .12); }
.nd-form .wpcf7-radio, .nd-form .wpcf7-checkbox { display: flex; flex-wrap: wrap; gap: 10px; }
.nd-form .wpcf7-list-item { margin: 0; }
.nd-form .wpcf7-list-item label {
	display: inline-flex; align-items: center; gap: 10px; height: 50px; padding: 0 20px; cursor: pointer; border-radius: 14px;
	border: 1.5px solid var(--nd-line); background: var(--nd-bg); font-weight: 600; color: var(--nd-ink); transition: border-color .25s, background .25s;
}
.nd-form .wpcf7-list-item input { width: 18px; height: 18px; margin: 0; accent-color: var(--nd-red); }
.nd-form .wpcf7-list-item label:has(input:checked) { border-color: var(--nd-red); background: var(--nd-red-50); }
.nd-form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.nd-form .nd-submit {
	height: 58px; padding: 0 36px; border: 0; border-radius: 999px; cursor: pointer; color: #fff;
	background: var(--nd-grad-red); box-shadow: var(--nd-shadow-red), inset 0 1px 0 rgba(255, 255, 255, .25);
	font: 700 16px/1 var(--nd-font-head); transition: transform .35s var(--nd-ease), box-shadow .35s var(--nd-ease);
}
.nd-form .nd-submit:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -16px rgba(228, 30, 38, .6); }
.nd-form .nd-submit:focus { outline: none; }
.nd-form .nd-submit:focus-visible { outline: 3px solid var(--nd-red-300); outline-offset: 4px; }
.nd-form .nd-submit:disabled { opacity: .7; cursor: progress; }

/* Contact Form 7 states (its own stylesheet is not loaded) */
.wpcf7 .screen-reader-response { position: absolute; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0; word-wrap: normal !important; }
.wpcf7 .hidden-fields-container { border: 0; padding: 0; margin: 0; }
.wpcf7-not-valid-tip { display: block; margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--nd-danger); }
.nd-form .wpcf7-not-valid { border-color: var(--nd-danger) !important; background: #FFF6F7 !important; }
.wpcf7 form .wpcf7-response-output { margin: 22px 0 0; padding: 16px 20px; border-radius: 16px; border: 1.5px solid #FFB020; background: #FFF8E6; color: #7A4A00; font-weight: 600; font-size: 15px; }
.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output { display: none; }
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--nd-success); background: #EAF9F1; color: #0B6B3E; }
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output, .wpcf7 form.spam .wpcf7-response-output { border-color: var(--nd-danger); background: #FFF1F3; color: #9B1C2E; }
.wpcf7-spinner { visibility: hidden; display: inline-block; position: relative; width: 26px; height: 26px; margin: 0 6px; border-radius: 50%; background: var(--nd-ink); opacity: .8; }
.wpcf7 form.submitting .wpcf7-spinner { visibility: visible; }
.wpcf7-spinner::before { content: ""; position: absolute; top: 5px; left: 5px; width: 6px; height: 6px; border-radius: 50%; background: #fff; transform-origin: 8px 8px; animation: ndSpin 1s linear infinite; }

.nd-map { padding-bottom: clamp(80px, 9vw, 128px); }
.nd-map__frame { overflow: hidden; height: 460px; border-radius: 32px; box-shadow: inset 0 0 0 1px var(--nd-line), var(--nd-shadow); background: var(--nd-bg); }
.nd-map__frame iframe { display: block; width: 100%; height: 100%; border: 0; filter: saturate(.9) contrast(1.03); }

/* ---------- Registration ---------- */
.nd-register__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: clamp(28px, 4vw, 56px); align-items: start; }

/* ==========================================================================
   Schedule / Shop / Account / Sitemap / Content
   ========================================================================== */
.nd-sched { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.nd-sched__row {
	display: grid; grid-template-columns: auto auto minmax(0, 1fr) auto; align-items: center; gap: 22px; padding: 22px 24px;
	border-radius: 24px; background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line);
	transition: box-shadow .4s var(--nd-ease), transform .4s var(--nd-ease);
}
.nd-sched__row:hover { transform: translateX(6px); box-shadow: inset 0 0 0 1px transparent, 0 30px 60px -32px rgba(21, 23, 28, .35); }
.nd-sched__num { width: 28px; font: 700 14px/1 var(--nd-font-head); color: #A4A6AE; }
.nd-sched__ic { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: var(--nd-red-50); color: var(--nd-red); transition: background .3s, color .3s; }
.nd-sched__ic .nd-icon { width: 26px; height: 26px; }
.nd-sched__row:hover .nd-sched__ic { background: var(--nd-red); color: #fff; }
.nd-sched__title { margin: 0 0 8px; font-size: 1.18rem; line-height: 1.35; letter-spacing: -.015em; }
.nd-sched__title a { color: var(--nd-ink); }
.nd-sched__title a:hover { color: var(--nd-red); }
.nd-sched__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.nd-sched__desc { font-size: 14px; color: var(--nd-muted); }

.nd-shop__count { margin: -28px 0 36px; text-align: center; color: var(--nd-muted); }
.nd-course-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.nd-course {
	display: flex; flex-direction: column; padding: 30px; border-radius: 28px; background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line);
	transition: transform .5s var(--nd-ease), box-shadow .5s var(--nd-ease);
}
.nd-course:hover { transform: translateY(-8px); box-shadow: inset 0 0 0 1px transparent, 0 40px 70px -35px rgba(21, 23, 28, .38); }
.nd-course__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.nd-course__ic { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: var(--nd-grad-red); color: #fff; box-shadow: var(--nd-shadow-red); }
.nd-course__ic .nd-icon { width: 26px; height: 26px; }
.nd-course__title { margin: 22px 0 10px; font-size: 1.25rem; line-height: 1.35; letter-spacing: -.02em; }
.nd-course__text { flex: 1; margin: 0; color: var(--nd-muted); }
.nd-course__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; padding-top: 22px; border-top: 1px dashed var(--nd-line); }
.nd-course__more { margin-top: 18px; }

.nd-portal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.nd-portal {
	position: relative; overflow: hidden; isolation: isolate; display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
	padding: 38px 32px; border-radius: 30px; background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line); color: var(--nd-ink);
	transition: transform .5s var(--nd-ease), box-shadow .5s var(--nd-ease), color .4s;
}
.nd-portal::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--nd-grad-dark); opacity: 0; transition: opacity .5s var(--nd-ease); }
.nd-portal:hover { color: #fff; transform: translateY(-8px); box-shadow: var(--nd-shadow-lg); }
.nd-portal:hover::before { opacity: 1; }
.nd-portal__ic { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 20px; background: var(--nd-grad-red); color: #fff; box-shadow: var(--nd-shadow-red); }
.nd-portal__ic .nd-icon { width: 30px; height: 30px; }
.nd-portal h2 { margin: 10px 0 0; font-size: 1.5rem; letter-spacing: -.025em; color: inherit; }
.nd-portal__cta { display: inline-flex; align-items: center; gap: 8px; font: 700 15px/1 var(--nd-font-head); color: var(--nd-red); transition: color .4s; }
.nd-portal__cta .nd-icon { width: 17px; height: 17px; }
.nd-portal:hover .nd-portal__cta { color: var(--nd-red-200); }

.nd-sitemap__intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.nd-sitemap__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: start; }
.nd-sitemap__col { padding: 32px; border-radius: 28px; background: var(--nd-bg); }
.nd-sitemap__col h2 { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; font-size: 1.22rem; }
.nd-sitemap__ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: var(--nd-grad-red); color: #fff; }
.nd-sitemap__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.nd-sitemap__col a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; color: var(--nd-ink); font-weight: 600; transition: background .25s, color .25s; }
.nd-sitemap__col a:hover { background: #fff; color: var(--nd-red); }
.nd-sitemap__col a .nd-icon { width: 16px; height: 16px; color: var(--nd-red); }

.nd-article { padding: clamp(28px, 5vw, 60px); border-radius: 32px; background: #fff; box-shadow: inset 0 0 0 1px var(--nd-line), var(--nd-shadow); }
.nd-article::after { content: ""; display: table; clear: both; }
.nd-article__badge { float: right; width: 150px; margin: 0 0 24px 32px; }
.nd-article__badge img { width: 100%; border-radius: 50%; }

.nd-postlist { display: grid; gap: 20px; }
.nd-postitem { padding: 30px; border-radius: 24px; box-shadow: inset 0 0 0 1px var(--nd-line); }
.nd-postitem time { font-size: 14px; color: var(--nd-muted); }
.nd-postitem h2 { margin: 6px 0 10px; font-size: 1.4rem; }
.nd-postitem h2 a { color: var(--nd-ink); }
.nd-pagination { margin-top: 36px; }
.nd-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.nd-pagination .page-numbers { display: grid; place-items: center; min-width: 46px; height: 46px; padding: 0 14px; border-radius: 14px; box-shadow: inset 0 0 0 1px var(--nd-line); color: var(--nd-ink); font-weight: 700; }
.nd-pagination .page-numbers.current { background: var(--nd-ink); color: #fff; }

.nd-404__inner { text-align: center; }
.nd-404__code { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 18px; font: 800 clamp(6rem, 18vw, 11rem)/1 var(--nd-font-head); letter-spacing: -.06em; color: var(--nd-ink); }
.nd-404__code span { display: grid; place-items: center; width: .82em; height: .82em; color: var(--nd-red); animation: ndSpin 8s linear infinite; }
.nd-404__code .nd-icon { width: 100%; height: 100%; stroke-width: 1.4; }
.nd-404 .nd-lead { margin: 0 0 30px; }

/* ==========================================================================
   Promo modal, mobile bar, back-to-top
   ========================================================================== */
.nd-modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 20px; }
.nd-modal[hidden] { display: none; }
.nd-modal__backdrop { position: absolute; inset: 0; background: rgba(21, 23, 28, .6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity .4s; }
.nd-modal.is-open .nd-modal__backdrop { opacity: 1; }
.nd-modal__card {
	position: relative; width: min(440px, 100%); max-height: calc(100vh - 40px); overflow: auto; border-radius: 32px; background: #fff;
	box-shadow: 0 60px 120px -40px rgba(21, 23, 28, .7); opacity: 0; transform: translateY(30px) scale(.96);
	transition: opacity .45s var(--nd-ease), transform .55s var(--nd-ease);
}
.nd-modal.is-open .nd-modal__card { opacity: 1; transform: none; }
.nd-modal__top { position: relative; overflow: hidden; padding: 36px 32px 34px; background: linear-gradient(135deg, #F0343C 0%, #E41E26 35%, #15171C 100%); color: #fff; }
.nd-modal__top::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
	background: repeating-linear-gradient(90deg, var(--nd-amber) 0 30px, transparent 30px 60px); animation: ndRoad 1.1s linear infinite; background-size: 60px 4px;
}
.nd-modal__ic { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 18px; border-radius: 18px; background: rgba(255, 255, 255, .14); }
.nd-modal__ic .nd-icon { width: 28px; height: 28px; animation: ndSpin 10s linear infinite; }
.nd-modal__top h2 { margin: 12px 0 0; font-size: 2.5rem; line-height: 1.05; letter-spacing: -.045em; color: #fff; }
.nd-modal__top h2 .nd-hl { color: var(--nd-amber); }
.nd-modal__body { padding: 28px 32px 32px; }
.nd-modal__close {
	position: absolute; top: 16px; right: 16px; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; cursor: pointer;
	border: 0; border-radius: 50%; background: rgba(255, 255, 255, .15); color: #fff; transition: background .3s, transform .3s;
}
.nd-modal__close:hover { background: rgba(255, 255, 255, .28); transform: rotate(90deg); }

.nd-mobilebar { display: none; }
.nd-totop {
	position: fixed; right: 24px; bottom: 24px; z-index: 90; display: grid; place-items: center; width: 54px; height: 54px; cursor: pointer;
	border: 0; border-radius: 50%; background: #fff; color: var(--nd-ink); box-shadow: 0 16px 40px -14px rgba(21, 23, 28, .45);
	opacity: 0; visibility: hidden; transform: translateY(16px); transition: opacity .35s, transform .35s var(--nd-ease), visibility .35s, background .3s, color .3s;
}
.nd-totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.nd-totop:hover { background: var(--nd-red); color: #fff; }
.nd-totop__ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.nd-totop__ring circle { fill: none; stroke: var(--nd-red); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: calc(100 - var(--nd-progress, 0)); }
.nd-totop:hover .nd-totop__ring circle { stroke: #fff; }
.nd-totop .nd-icon { width: 20px; height: 20px; }

/* ==========================================================================
   Scroll reveal (only when JS is running)
   ========================================================================== */
.nd-js [data-reveal] { opacity: 0; }
.nd-js [data-reveal].is-revealed { animation: ndReveal .95s var(--nd-ease) both; animation-delay: var(--nd-delay, 0s); }
@keyframes ndReveal { from { opacity: 0; translate: 0 34px; } to { opacity: 1; translate: 0 0; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1240px) {
	.nd-menu--desktop > li > a { padding-inline: 11px; font-size: 14.5px; }
	.nd-navbar__inner { gap: 20px; }
}

@media (max-width: 1180px) {
	.nd-nav { display: none; }
	.nd-burger { display: block; color: #fff; }
	.nd-navbar__actions { margin-left: auto; }
	.nd-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nd-values__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
	:root { --nd-gutter: 22px; }
	.nd-hero__inner { grid-template-columns: 1fr; padding-top: 170px; padding-bottom: 160px; }
	.nd-hero__card { display: none; }
	.nd-services-grid, .nd-services-grid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nd-services-grid--5 > * { grid-column: auto !important; }
	.nd-services-grid--5 > :last-child { grid-column: 1 / -1 !important; }
	.nd-scard--wide { flex-direction: column; }
	.nd-scard--wide .nd-scard__media { width: auto; aspect-ratio: 16 / 10; margin: 10px 10px 0; }
	.nd-scard--wide .nd-scard__body { padding: 0 28px 26px; }
	.nd-scard--wide .nd-scard__icon { margin-top: -31px; box-shadow: 0 14px 30px -10px rgba(228, 30, 38, .6), 0 0 0 6px #fff; }
	.nd-services-grid--5 > :last-child { flex-direction: row; }
	.nd-services-grid--5 > :last-child .nd-scard__media { width: 44%; aspect-ratio: auto; margin: 10px 0 10px 10px; }
	.nd-services-grid--5 > :last-child .nd-scard__body { padding: 30px; }
	.nd-services-grid--5 > :last-child .nd-scard__icon { margin-top: 0; box-shadow: 0 14px 30px -10px rgba(228, 30, 38, .6); }
	.nd-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
	.nd-stat:nth-child(3) { border-left: 0; padding-left: 0; }
	.nd-why__grid, .nd-about__grid, .nd-faq-teaser__grid, .nd-faqpage__grid, .nd-svc__grid, .nd-contact__grid, .nd-register__grid { grid-template-columns: minmax(0, 1fr); }
	.nd-why__visual { max-width: 560px; margin-inline: auto; width: 100%; }
	.nd-faq-teaser__intro, .nd-faqpage__sticky, .nd-svc__side, .nd-register__side { position: static; }
	.nd-about__media { max-width: 600px; }
	.nd-pricing-grid, .nd-pricing-grid--5, .nd-course-grid, .nd-portal-grid, .nd-sitemap__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nd-pricing-grid--5 > * { grid-column: auto !important; }
	.nd-pricing-grid--5 > :last-child { grid-column: 1 / -1 !important; }
	.nd-rates, .nd-bundle { grid-template-columns: minmax(0, 1fr); }
	.nd-rates__media { min-height: 300px; }
	.nd-bundle__side { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12); }
	.nd-carousel { grid-auto-columns: calc((100% - 24px) / 2); }
	.nd-cta__panel { grid-template-columns: minmax(0, 1fr) 200px; }
}

@media (max-width: 782px) {
	.admin-bar .nd-header { top: 46px; }
	.admin-bar .nd-header.is-stuck .nd-navbar { top: 0; }
}

@media (max-width: 767px) {
	:root { --nd-gutter: 18px; --nd-nav-h: 76px; --nd-nav-h-stuck: 68px; }
	body { font-size: 15.5px; }
	.nd-topbar { display: none; }
	.nd-login, .nd-navbar__cta { display: none; }
	.nd-brand img { height: 26px; }

	.nd-hero { min-height: 0; }
	.nd-hero__inner { padding-top: 136px; padding-bottom: 150px; }
	.nd-hero__badge { font-size: 12.5px; margin-bottom: 22px; }
	.nd-hero__title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
	.nd-hero__actions .nd-btn { flex: 1 1 auto; }
	.nd-hero__nav { bottom: 34px; }
	.nd-hero__bar { width: 36px; }
	.nd-hero__arrows .nd-round { width: 44px; height: 44px; }

	.nd-split-head { margin-bottom: 40px; }
	.nd-head { margin-bottom: 40px; }
	.nd-services-grid, .nd-services-grid--5 { grid-template-columns: minmax(0, 1fr); }
	.nd-services-grid--5 > :last-child { flex-direction: column; }
	.nd-services-grid--5 > :last-child .nd-scard__media { width: auto; aspect-ratio: 16 / 10; margin: 10px 10px 0; }
	.nd-services-grid--5 > :last-child .nd-scard__body { padding: 0 24px 24px; }
	.nd-services-grid--5 > :last-child .nd-scard__icon { margin-top: -31px; box-shadow: 0 14px 30px -10px rgba(228, 30, 38, .6), 0 0 0 6px #fff; }
	.nd-scard__body { padding: 0 24px 24px; }

	.nd-stat { padding: 0 0 0 20px; }
	.nd-stat:nth-child(odd) { border-left: 0; padding-left: 0; }
	.nd-features { grid-template-columns: minmax(0, 1fr); }
	.nd-float--badge { left: 0; top: 2%; }
	.nd-float--chip { right: 0; bottom: 4%; font-size: 13.5px; }

	.nd-carousel { grid-auto-columns: 86%; }
	.nd-testi-grid, .nd-pricing-grid, .nd-pricing-grid--5, .nd-course-grid, .nd-portal-grid, .nd-sitemap__grid, .nd-values__grid, .nd-mission__grid { grid-template-columns: minmax(0, 1fr); }
	.nd-acc__q button { padding: 18px; gap: 14px; font-size: 1rem; }
	.nd-acc__inner .nd-prose { padding: 0 18px 20px; }

	.nd-cta { margin-bottom: -90px; }
	.nd-cta__panel { grid-template-columns: minmax(0, 1fr); border-radius: 28px; }
	.nd-cta__media { display: none; }
	.nd-footer--with-cta { padding-top: 160px; }
	.nd-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
	.nd-footer__bottom { padding-bottom: 110px; }

	.nd-pagehero { padding: 150px 0 84px; }
	.nd-pagehero__sub { font-size: 1.02rem; }

	.nd-about__media { padding: 0 40px 50px 0; }
	.nd-about__badge { left: -6px; top: 20px; padding: 14px 16px; }
	.nd-about__badge strong { font-size: 24px; }

	.nd-svc__head { flex-direction: column; gap: 16px; }
	.nd-form-grid { grid-template-columns: minmax(0, 1fr); }
	.nd-form .nd-submit { width: 100%; }
	.nd-formcard__head { flex-direction: column; gap: 14px; }
	.nd-infocard { padding: 18px; }
	.nd-map__frame { height: 340px; }

	.nd-sched__row { grid-template-columns: auto minmax(0, 1fr); gap: 16px; padding: 20px; }
	.nd-sched__num { display: none; }
	.nd-sched__btn { grid-column: 1 / -1; width: 100%; }

	.nd-tabs__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; border-radius: 22px; margin-bottom: 40px; }
	.nd-tabs__tab { flex-direction: column; justify-content: center; gap: 6px; height: auto; min-height: 64px; padding: 10px 6px; border-radius: 16px; font-size: 12.5px; line-height: 1.2; white-space: normal; text-align: center; }
	.nd-rates__list li { padding: 14px; }
	.nd-article__badge { float: none; width: 110px; margin: 0 0 20px; }

	.nd-mobilebar {
		position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 95; display: grid; grid-template-columns: 1fr 1.35fr; gap: 8px; padding: 8px;
		border-radius: 20px; background: rgba(21, 23, 28, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
		box-shadow: 0 20px 50px -20px rgba(21, 23, 28, .7); transform: translateY(160%); transition: transform .5s var(--nd-ease);
	}
	.nd-body.is-scrolled .nd-mobilebar { transform: none; }
	.nd-mobilebar a { display: flex; align-items: center; justify-content: center; gap: 8px; height: 50px; border-radius: 14px; color: #fff; font: 700 15px/1 var(--nd-font-head); }
	.nd-mobilebar__call { background: rgba(255, 255, 255, .1); }
	.nd-mobilebar__call .nd-icon { color: var(--nd-amber); width: 18px; height: 18px; }
	.nd-mobilebar__enroll { background: var(--nd-grad-red); }
	.nd-mobilebar__enroll .nd-icon { width: 18px; height: 18px; }
	.nd-totop { right: 16px; bottom: 90px; width: 48px; height: 48px; }
}

@media (max-width: 420px) {
	.nd-hero__count { display: none; }
	.nd-scard__actions { flex-direction: column; align-items: stretch; }
	.nd-scard__actions .nd-btn, .nd-scard__actions .nd-enroll { width: 100%; }
	.nd-scard__actions .nd-enroll .nd-btn { width: 100%; }
	.nd-cta__actions > * { width: 100%; justify-content: center; }
}

@media (hover: none) {
	.nd-scard:hover, .nd-pcard:hover, .nd-course:hover, .nd-tcard:hover, .nd-value:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	.nd-js [data-reveal] { opacity: 1; }
	.nd-marquee__track { animation: none; }
}
