:root {
  --nt-ink: #13213f;
  --nt-text: #3e4964;
  --nt-muted: #68718a;
  --nt-purple: #6d3ee8;
  --nt-purple-dark: #4c22bd;
  --nt-purple-bright: #8256f6;
  --nt-lavender: #f3efff;
  --nt-lavender-2: #faf8ff;
  --nt-line: #e8e3f4;
  --nt-white: #ffffff;
  --nt-navy: #091735;
  --nt-green: #2fb47c;
  --nt-radius-sm: 10px;
  --nt-radius: 18px;
  --nt-radius-lg: 28px;
  --nt-shadow-sm: 0 8px 24px rgba(39, 23, 85, 0.08);
  --nt-shadow: 0 18px 50px rgba(39, 23, 85, 0.12);
  --nt-width: 1180px;
  --nt-content: 760px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--nt-text);
  background: var(--nt-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--nt-purple-dark);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--nt-purple);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.7em;
  color: var(--nt-ink);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.75rem); }
h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
h3 { font-size: 1.2rem; }

p {
  margin: 0 0 1.25rem;
}

ul,
ol {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

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

.content-width {
  max-width: var(--nt-content);
}

.nt-section {
  padding-block: 84px;
}

.nt-section--soft {
  background: linear-gradient(180deg, #ffffff 0%, var(--nt-lavender-2) 100%);
}

.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;
}

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--nt-white);
  background: var(--nt-ink);
  border-radius: 8px;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(232, 227, 244, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 74px;
  gap: 28px;
}

.site-branding {
  flex: 0 0 auto;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 230px;
  max-height: 48px;
}

.site-branding__fallback {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--nt-ink);
  font-size: 1.3rem;
  letter-spacing: -0.035em;
}

.site-branding__fallback:hover {
  color: var(--nt-ink);
}

.site-branding__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--nt-white);
  background: linear-gradient(135deg, #8e67ff, #5d2ed1);
  border-radius: 9px;
  box-shadow: 0 7px 18px rgba(109, 62, 232, 0.28);
}

.site-branding__mark svg {
  width: 20px;
  height: 20px;
}

.site-branding__name strong {
  font-weight: 800;
}

.primary-navigation {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.primary-navigation .menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation .menu-item {
  position: relative;
}

.primary-navigation .menu > li > a {
  display: block;
  padding: 24px 11px 22px;
  color: #35405b;
  font-size: 0.9rem;
  font-weight: 610;
}

.primary-navigation .menu > li > a:hover,
.primary-navigation .menu > li.current-menu-item > a,
.primary-navigation .menu > li.current_page_item > a {
  color: var(--nt-purple);
}

.primary-navigation .menu > li.current-menu-item > a::after,
.primary-navigation .menu > li.current_page_item > a::after {
  position: absolute;
  right: 11px;
  bottom: 14px;
  left: 11px;
  height: 2px;
  content: "";
  background: var(--nt-purple);
  border-radius: 99px;
}

.primary-navigation .sub-menu {
  position: absolute;
  top: calc(100% - 7px);
  left: 0;
  display: none;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: 12px;
  box-shadow: var(--nt-shadow-sm);
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
  display: block;
}

.primary-navigation .sub-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--nt-text);
  border-radius: 8px;
}

.primary-navigation .sub-menu a:hover {
  color: var(--nt-purple-dark);
  background: var(--nt-lavender-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  color: var(--nt-ink);
  background: transparent;
  border: 1px solid var(--nt-line);
  border-radius: 10px;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: inline;
}

.nt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  gap: 9px;
  color: var(--nt-white);
  background: linear-gradient(135deg, var(--nt-purple), var(--nt-purple-dark));
  border: 1px solid transparent;
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(89, 42, 199, 0.22);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nt-button:hover,
.nt-button:focus-visible {
  color: var(--nt-white);
  box-shadow: 0 13px 28px rgba(89, 42, 199, 0.3);
  transform: translateY(-2px);
}

.nt-button svg {
  width: 17px;
  height: 17px;
}

.nt-button--small {
  min-height: 38px;
  padding: 9px 15px;
  font-size: 0.82rem;
}

.nt-button--ghost {
  color: var(--nt-purple-dark);
  background: var(--nt-white);
  border-color: #cfc0f6;
  box-shadow: none;
}

.nt-button--ghost:hover,
.nt-button--ghost:focus-visible {
  color: var(--nt-purple-dark);
  background: var(--nt-lavender-2);
  box-shadow: 0 8px 20px rgba(89, 42, 199, 0.09);
}

.nt-button--light {
  color: var(--nt-purple-dark);
  background: var(--nt-white);
  box-shadow: none;
}

.nt-button--light:hover {
  color: var(--nt-purple-dark);
  background: #f8f5ff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 7px 11px;
  color: var(--nt-purple-dark);
  background: rgba(109, 62, 232, 0.09);
  border: 1px solid rgba(109, 62, 232, 0.15);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 75% 28%, #f1ebff 0, rgba(241, 235, 255, 0) 34%), linear-gradient(180deg, #fff 0%, #fdfcff 100%);
}

.home-hero__inner {
  display: grid;
  min-height: 650px;
  padding-block: 70px 48px;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 46px;
}

.home-hero__content {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
}

.home-hero h1 span {
  display: block;
}

.text-gradient {
  color: var(--nt-purple);
  background: linear-gradient(135deg, #7650f4 10%, #4d23bd 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero__description {
  max-width: 690px;
  color: #47526d;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-checklist {
  display: grid;
  max-width: 660px;
  margin: 26px 0 28px;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 24px;
  list-style: none;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--nt-ink);
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-checklist svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--nt-purple);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 14px 25px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4e5870;
  font-size: 0.8rem;
  font-weight: 650;
}

.hero-trust-row svg {
  width: 17px;
  height: 17px;
  color: var(--nt-purple);
}

.home-hero__visual {
  position: relative;
  align-self: end;
  min-height: 560px;
}

.home-hero__visual > img {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(100%, 560px);
  max-height: 575px;
  object-fit: contain;
  object-position: bottom center;
}

.hero-shape--back {
  position: absolute;
  z-index: 1;
  right: 40px;
  bottom: 18px;
  width: 430px;
  height: 430px;
  background: linear-gradient(145deg, rgba(133, 89, 246, 0.94), rgba(76, 34, 189, 0.98));
  clip-path: polygon(51% 0%, 65% 13%, 86% 12%, 95% 32%, 84% 50%, 100% 69%, 76% 78%, 69% 100%, 43% 89%, 22% 98%, 14% 73%, 0% 54%, 16% 35%, 18% 12%);
  filter: drop-shadow(0 28px 38px rgba(76, 34, 189, 0.22));
  opacity: 0.9;
}

.hero-float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 182px;
  padding: 13px;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(232, 227, 244, 0.9);
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(35, 22, 77, 0.13);
  backdrop-filter: blur(8px);
}

.hero-float-card strong,
.hero-float-card small {
  display: block;
}

.hero-float-card strong {
  color: var(--nt-ink);
  font-size: 0.77rem;
  line-height: 1.25;
}

.hero-float-card small {
  margin-top: 3px;
  color: var(--nt-muted);
  font-size: 0.67rem;
}

.icon-box,
.tool-card__icon,
.final-cta__icon,
.empty-state__icon {
  display: grid;
  place-items: center;
  color: var(--nt-purple);
  background: var(--nt-lavender);
  border-radius: 10px;
}

.icon-box {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
}

.icon-box svg {
  width: 21px;
  height: 21px;
}

.hero-float-card--one { top: 48px; right: -4px; }
.hero-float-card--two { top: 175px; right: 10px; }
.hero-float-card--three { top: 304px; right: -10px; }

.home-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.home-hero__glow--one {
  top: 60px;
  right: -130px;
  width: 320px;
  height: 320px;
  background: rgba(125, 83, 244, 0.12);
}

.home-hero__glow--two {
  bottom: -160px;
  left: -120px;
  width: 370px;
  height: 370px;
  background: rgba(171, 146, 244, 0.12);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--nt-muted);
}

.section-heading--center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading--split a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
  font-weight: 700;
}

.section-heading--split a svg,
.tool-card a svg,
.post-card__link svg,
.text-link svg {
  width: 15px;
  height: 15px;
}

.home-tools {
  padding-top: 72px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.tool-card {
  display: flex;
  min-height: 285px;
  padding: 27px 21px 24px;
  flex-direction: column;
  align-items: center;
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(39, 23, 85, 0.055);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tool-card:hover {
  border-color: #d5c8f5;
  box-shadow: 0 17px 36px rgba(39, 23, 85, 0.1);
  transform: translateY(-4px);
}

.tool-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.tool-card__icon svg {
  width: 30px;
  height: 30px;
}

.tool-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.tool-card p {
  margin-bottom: 22px;
  color: var(--nt-muted);
  font-size: 0.83rem;
  line-height: 1.6;
}

.tool-card a {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 750;
}

.proof-band {
  display: grid;
  padding: 34px 36px;
  color: var(--nt-white);
  background: linear-gradient(105deg, #6d3ee8 0%, #4f22be 52%, #7647ed 100%);
  border-radius: 17px;
  box-shadow: 0 20px 44px rgba(78, 32, 187, 0.22);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-band__item {
  display: flex;
  padding: 4px 28px;
  align-items: center;
  gap: 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-band__item:first-child { padding-left: 0; }
.proof-band__item:last-child { padding-right: 0; border-right: 0; }

.proof-band__item > svg {
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
}

.proof-band__item strong,
.proof-band__item span {
  display: block;
}

.proof-band__item strong {
  color: var(--nt-white);
  font-size: 1.55rem;
  line-height: 1.05;
}

.proof-band__item span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
}

.testimonials {
  padding-bottom: 72px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  position: relative;
  margin: 0;
  padding: 34px 32px 30px;
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: 18px;
  box-shadow: var(--nt-shadow-sm);
}

.testimonial-card::before {
  display: block;
  margin-bottom: 10px;
  color: var(--nt-purple);
  content: "“";
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.55;
}

.testimonial-card p {
  min-height: 96px;
  color: #414b64;
  font-size: 0.94rem;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
}

.testimonial-card footer strong {
  color: var(--nt-ink);
  font-size: 0.9rem;
}

.testimonial-card footer span {
  color: var(--nt-muted);
  font-size: 0.78rem;
}

.post-card-grid,
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.post-card,
.entry-card {
  overflow: hidden;
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(39, 23, 85, 0.055);
}

.post-card__image {
  display: grid;
  overflow: hidden;
  min-height: 210px;
  place-items: center;
  color: var(--nt-purple);
  background: linear-gradient(135deg, #f1ebff, #fcfbff);
}

.post-card__image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.035);
}

.post-card__image > span svg {
  width: 70px;
  height: 70px;
  opacity: 0.75;
}

.post-card__body,
.entry-card__body {
  padding: 24px;
}

.post-card__category {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 8px;
  color: var(--nt-white);
  background: var(--nt-purple);
  border-radius: 5px;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.post-card h3 {
  margin-bottom: 7px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.post-card h3 a {
  color: var(--nt-ink);
}

.post-card h3 a:hover {
  color: var(--nt-purple-dark);
}

.post-card__meta,
.entry-meta,
.single-post__meta {
  color: var(--nt-muted);
  font-size: 0.74rem;
}

.post-card__body > p {
  margin: 13px 0 16px;
  color: var(--nt-muted);
  font-size: 0.85rem;
}

.post-card__link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 750;
}

.final-cta {
  display: grid;
  margin-top: 64px;
  margin-bottom: 64px;
  padding: 29px 36px;
  align-items: center;
  color: var(--nt-white);
  background: linear-gradient(105deg, #6b3be4, #4d21ba 68%, #8255ef);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(78, 32, 187, 0.22);
  grid-template-columns: auto 1fr auto;
  gap: 18px;
}

.final-cta__icon {
  width: 58px;
  height: 58px;
  color: var(--nt-white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
}

.final-cta__icon svg {
  width: 30px;
  height: 30px;
}

.final-cta h2 {
  margin-bottom: 4px;
  color: var(--nt-white);
  font-size: 1.4rem;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: radial-gradient(circle at 75% 30%, rgba(94, 53, 194, 0.28), transparent 30%), var(--nt-navy);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: var(--nt-white);
}

.site-footer__main {
  display: grid;
  padding-block: 66px 48px;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 2.15fr);
  gap: 70px;
}

.site-footer__brand p {
  max-width: 260px;
  margin-top: 18px;
  font-size: 0.85rem;
}

.site-branding__fallback--footer {
  color: var(--nt-white);
}

.site-branding__fallback--footer:hover {
  color: var(--nt-white);
}

.site-footer .custom-logo {
  max-height: 42px;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-heading {
  margin-bottom: 17px;
  color: var(--nt-white);
  font-size: 0.93rem;
  letter-spacing: 0;
}

.footer-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-widget li + li {
  margin-top: 8px;
}

.footer-widget li,
.footer-widget p {
  font-size: 0.82rem;
}

.site-footer__bottom {
  display: flex;
  padding-block: 22px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.73rem;
}

.page-hero {
  overflow: hidden;
  padding-block: 76px;
  background: radial-gradient(circle at 75% 40%, #ece3ff 0, transparent 31%), linear-gradient(180deg, #fff, #faf8ff);
  border-bottom: 1px solid var(--nt-line);
}

.page-hero--compact {
  padding-block: 58px;
  text-align: left;
}

.page-hero .nt-container > p:last-child,
.page-hero__grid > div > p {
  max-width: 720px;
  color: var(--nt-muted);
  font-size: 1.05rem;
}

.page-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 50px;
}

.page-hero__visual {
  display: grid;
  place-items: center;
}

.page-hero__visual img {
  max-height: 360px;
}

.page-content,
.single-post__content,
.comments-area {
  font-size: 1.03rem;
}

.page-content > * + *,
.single-post__content > * + * {
  margin-top: 1.45em;
}

.page-content h2,
.single-post__content h2 {
  margin-top: 1.8em;
}

.page-content h3,
.single-post__content h3 {
  margin-top: 1.6em;
}

.page-content img,
.single-post__content img,
.page-featured-image img {
  border-radius: 16px;
}

.page-featured-image {
  margin-bottom: 36px;
}

.archive-header {
  max-width: 720px;
  margin-bottom: 42px;
}

.archive-header .search-form {
  display: flex;
  margin-top: 22px;
  gap: 8px;
}

.search-field {
  width: min(100%, 500px);
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--nt-line);
  border-radius: 9px;
}

.search-submit {
  padding: 10px 18px;
  color: var(--nt-white);
  background: var(--nt-purple);
  border: 0;
  border-radius: 9px;
  font-weight: 700;
}

.entry-card__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.entry-title {
  font-size: 1.35rem;
}

.entry-title a {
  color: var(--nt-ink);
}

.entry-card__body > p {
  color: var(--nt-muted);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.page-numbers {
  display: grid;
  min-width: 38px;
  height: 38px;
  padding-inline: 8px;
  place-items: center;
  border: 1px solid var(--nt-line);
  border-radius: 8px;
}

.page-numbers.current {
  color: var(--nt-white);
  background: var(--nt-purple);
  border-color: var(--nt-purple);
}

.single-post__header {
  padding-block: 76px 34px;
  text-align: center;
}

.single-post__header h1 {
  margin-top: 12px;
}

.single-post__meta {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.single-post__featured {
  max-width: 1040px;
  margin-bottom: 50px;
}

.single-post__featured img {
  width: 100%;
  max-height: 570px;
  object-fit: cover;
  border-radius: 22px;
}

.single-post__content {
  padding-bottom: 70px;
}

.post-navigation,
.comments-area {
  padding-bottom: 60px;
}

.comments-area {
  border-top: 1px solid var(--nt-line);
  padding-top: 45px;
}

.comment-list {
  padding: 0;
  list-style: none;
}

.comment-list .comment-body {
  margin-bottom: 20px;
  padding: 20px;
  background: var(--nt-lavender-2);
  border-radius: 12px;
}

.empty-state {
  display: flex;
  padding: 60px 24px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.empty-state--large {
  min-height: 570px;
  justify-content: center;
}

.empty-state__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
}

.empty-state__icon svg {
  width: 38px;
  height: 38px;
}

.empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.empty-state__actions .search-form {
  display: flex;
}

.tool-directory,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
}

.tool-directory__sidebar,
.faq-layout__sidebar {
  align-self: start;
  padding: 22px;
  background: var(--nt-lavender-2);
  border: 1px solid var(--nt-line);
  border-radius: 14px;
}

.tool-directory__sidebar h2,
.faq-layout__sidebar h2 {
  margin-bottom: 16px;
  font-size: 0.94rem;
}

.tool-directory__sidebar nav,
.faq-layout__sidebar {
  display: flex;
  flex-direction: column;
}

.tool-directory__sidebar a,
.faq-layout__sidebar a {
  padding: 9px 11px;
  color: var(--nt-text);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 650;
}

.tool-directory__sidebar a.is-active,
.faq-layout__sidebar a.is-active,
.tool-directory__sidebar a:hover,
.faq-layout__sidebar a:hover {
  color: var(--nt-white);
  background: var(--nt-purple);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.directory-card {
  padding: 25px;
  border: 1px solid var(--nt-line);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(39, 23, 85, 0.05);
}

.directory-card h2 {
  font-size: 1.05rem;
}

.directory-card p {
  color: var(--nt-muted);
  font-size: 0.84rem;
}

.inline-cta {
  display: grid;
  margin-top: 28px;
  padding: 22px;
  align-items: center;
  background: var(--nt-lavender-2);
  border: 1px solid var(--nt-line);
  border-radius: 14px;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
}

.inline-cta > div:first-child {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--nt-purple);
  background: var(--nt-white);
  border-radius: 10px;
}

.inline-cta svg {
  width: 23px;
  height: 23px;
}

.inline-cta strong {
  color: var(--nt-ink);
}

.inline-cta p {
  margin: 2px 0 0;
  color: var(--nt-muted);
  font-size: 0.82rem;
}

.template-page-content {
  margin-top: 34px;
}

.content-split-card {
  display: grid;
  padding: 44px;
  align-items: center;
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: 22px;
  box-shadow: var(--nt-shadow-sm);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 52px;
}

.check-list {
  display: grid;
  margin: 24px 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.check-list svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--nt-purple);
}

.content-split-card__panel {
  padding: 28px;
  background: linear-gradient(135deg, #ede6ff, #faf8ff);
  border-radius: 18px;
}

.mini-dashboard {
  padding: 24px;
  background: var(--nt-white);
  border: 1px solid rgba(109, 62, 232, 0.12);
  border-radius: 14px;
  box-shadow: var(--nt-shadow-sm);
}

.mini-dashboard__header {
  display: flex;
  margin-bottom: 26px;
  gap: 6px;
}

.mini-dashboard__header span {
  width: 8px;
  height: 8px;
  background: #dcd5ed;
  border-radius: 50%;
}

.mini-dashboard__row {
  display: flex;
  margin-top: 18px;
  justify-content: space-between;
  color: var(--nt-ink);
  font-size: 0.78rem;
}

.mini-dashboard__progress {
  overflow: hidden;
  height: 8px;
  margin-top: 8px;
  background: #eeeaf7;
  border-radius: 99px;
}

.mini-dashboard__progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--nt-purple), #9a74ff);
  border-radius: inherit;
}

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

.steps-grid article {
  padding: 26px;
  text-align: center;
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: 15px;
}

.steps-grid article > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 15px;
  place-items: center;
  color: var(--nt-white);
  background: var(--nt-purple);
  border-radius: 50%;
  font-weight: 800;
}

.steps-grid h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.steps-grid p {
  margin: 0;
  color: var(--nt-muted);
  font-size: 0.8rem;
}

.feature-stack {
  display: grid;
  gap: 28px;
}

.feature-panel {
  display: grid;
  overflow: hidden;
  min-height: 430px;
  align-items: center;
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: 22px;
  box-shadow: var(--nt-shadow-sm);
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
}

.feature-panel__copy {
  padding: 48px;
}

.feature-panel__visual {
  display: grid;
  min-height: 100%;
  padding: 42px;
  place-items: center;
  background: linear-gradient(135deg, #f0eaff, #fbfaff);
}

.feature-panel__visual img {
  max-height: 340px;
}

.feature-panel--reverse .feature-panel__copy {
  order: 2;
}

.feature-panel--reverse .feature-panel__visual {
  order: 1;
}

.benefit-strip {
  padding-block: 32px;
  background: var(--nt-lavender-2);
  border-block: 1px solid var(--nt-line);
}

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

.benefit-strip .nt-container > div {
  display: grid;
  padding: 10px 28px;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  border-right: 1px solid var(--nt-line);
}

.benefit-strip .nt-container > div:last-child {
  border-right: 0;
}

.benefit-strip svg {
  width: 28px;
  height: 28px;
  grid-row: 1 / 3;
  color: var(--nt-purple);
}

.benefit-strip strong {
  color: var(--nt-ink);
  font-size: 0.9rem;
}

.benefit-strip span {
  color: var(--nt-muted);
  font-size: 0.75rem;
}

.faq-layout {
  grid-template-columns: 210px minmax(0, 1fr);
}

.faq-item {
  margin-bottom: 12px;
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: 12px;
  box-shadow: 0 7px 20px rgba(39, 23, 85, 0.045);
}

.faq-item summary {
  display: flex;
  padding: 20px 22px;
  align-items: center;
  justify-content: space-between;
  color: var(--nt-ink);
  cursor: pointer;
  font-weight: 720;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--nt-purple);
  background: var(--nt-lavender);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item > div {
  padding: 0 22px 20px;
}

.faq-item > div p {
  margin: 0;
  color: var(--nt-muted);
}

.contact-layout {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-details__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
}

.contact-details__item > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--nt-purple);
  background: var(--nt-lavender);
  border-radius: 12px;
}

.contact-details__item svg {
  width: 24px;
  height: 24px;
}

.contact-details__item h2 {
  margin-bottom: 3px;
  font-size: 1rem;
}

.contact-details__item p,
.contact-details__item a {
  margin: 0;
  font-size: 0.88rem;
}

.contact-note {
  margin-top: 12px;
  padding: 20px;
  color: #5b4f78;
  background: #f7f3ff;
  border-left: 4px solid var(--nt-purple);
  border-radius: 0 10px 10px 0;
  font-size: 0.84rem;
}

.contact-note strong {
  color: var(--nt-ink);
}

.contact-note p {
  margin: 6px 0 0;
}

.contact-form-card {
  padding: 34px;
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: 18px;
  box-shadow: var(--nt-shadow-sm);
}

.contact-form-card input:not([type="submit"]),
.contact-form-card textarea,
.contact-form-card select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #dcd6e9;
  border-radius: 8px;
}

.contact-form-card input[type="submit"],
.contact-form-card button:not(:disabled) {
  padding: 12px 20px;
  color: var(--nt-white);
  background: var(--nt-purple);
  border: 0;
  border-radius: 8px;
  font-weight: 700;
}

.form-placeholder-note {
  color: var(--nt-muted);
  font-size: 0.86rem;
}

.form-preview {
  display: grid;
  gap: 14px;
}

.form-preview > span,
.form-preview__row span {
  display: block;
  height: 42px;
  background: #faf9fd;
  border: 1px solid var(--nt-line);
  border-radius: 8px;
}

.form-preview__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-preview .form-preview__large {
  height: 120px;
}

.form-preview button {
  width: max-content;
  padding: 11px 18px;
  color: var(--nt-white);
  background: var(--nt-purple);
  border: 0;
  border-radius: 8px;
  opacity: 1;
}

@media (max-width: 1120px) {
  .site-header__inner {
    gap: 16px;
  }

  .primary-navigation {
    gap: 13px;
  }

  .primary-navigation .menu > li > a {
    padding-inline: 7px;
    font-size: 0.82rem;
  }

  .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 25px;
  }

  .hero-float-card {
    right: 0;
  }

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

  .tool-card:last-child {
    grid-column: auto;
  }

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

@media (max-width: 960px) {
  body.menu-is-open {
    overflow: hidden;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .primary-navigation {
    position: fixed;
    z-index: 999;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    padding: 24px 20px 40px;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    background: var(--nt-white);
  }

  .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation .menu {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-navigation .menu > li > a {
    padding: 13px 10px;
    font-size: 1rem;
  }

  .primary-navigation .menu > li.current-menu-item > a::after,
  .primary-navigation .menu > li.current_page_item > a::after {
    display: none;
  }

  .primary-navigation .sub-menu {
    position: static;
    display: block;
    padding-left: 16px;
    border: 0;
    box-shadow: none;
  }

  .header-actions {
    margin-top: 12px;
    align-items: stretch;
    flex-direction: column;
  }

  .header-actions .nt-button {
    min-height: 46px;
  }

  .home-hero__inner {
    min-height: 0;
    padding-top: 60px;
    grid-template-columns: 1fr;
  }

  .home-hero__content {
    max-width: 760px;
  }

  .home-hero__visual {
    width: min(100%, 620px);
    min-height: 530px;
    margin-inline: auto;
  }

  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .proof-band__item:nth-child(2) {
    border-right: 0;
  }

  .proof-band__item:nth-child(3),
  .proof-band__item:nth-child(4) {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .testimonial-grid,
  .post-card-grid,
  .entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card:last-child,
  .post-card:last-child {
    grid-column: auto;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .page-hero__grid,
  .content-split-card,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .page-hero__visual img {
    max-height: 300px;
  }

  .feature-panel--reverse .feature-panel__copy,
  .feature-panel--reverse .feature-panel__visual {
    order: initial;
  }

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

@media (max-width: 760px) {
  .nt-container {
    width: min(calc(100% - 28px), var(--nt-width));
  }

  .nt-section {
    padding-block: 60px;
  }

  .home-hero__inner {
    padding-top: 48px;
  }

  .home-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .hero-checklist {
    grid-template-columns: 1fr;
  }

  .hero-trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero__visual {
    min-height: 470px;
  }

  .hero-shape--back {
    right: 5%;
    width: 88%;
    height: 370px;
  }

  .hero-float-card {
    width: 160px;
    padding: 10px;
  }

  .hero-float-card--one { top: 22px; right: 0; }
  .hero-float-card--two { top: 120px; right: 8px; }
  .hero-float-card--three { top: 218px; right: 0; }

  .tool-grid,
  .testimonial-grid,
  .post-card-grid,
  .entry-grid,
  .directory-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 0;
  }

  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-band__item,
  .proof-band__item:first-child,
  .proof-band__item:last-child {
    padding: 17px 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .proof-band__item:first-child {
    border-top: 0;
  }

  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta {
    padding: 28px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta__icon {
    margin-inline: auto;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .tool-directory,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .tool-directory__sidebar nav,
  .faq-layout__sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content-split-card,
  .feature-panel__copy,
  .feature-panel__visual,
  .contact-form-card {
    padding: 28px;
  }

  .benefit-strip .nt-container {
    grid-template-columns: 1fr;
  }

  .benefit-strip .nt-container > div {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--nt-line);
  }

  .benefit-strip .nt-container > div:last-child {
    border-bottom: 0;
  }

  .inline-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .inline-cta > div:first-child {
    margin-inline: auto;
  }

  .form-preview__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header__inner {
    min-height: 66px;
  }

  .primary-navigation {
    top: 66px;
  }

  .custom-logo {
    max-width: 180px;
    max-height: 42px;
  }

  .site-branding__name {
    font-size: 1.08rem;
  }

  .site-branding__mark {
    width: 31px;
    height: 31px;
  }

  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero__actions .nt-button {
    width: 100%;
  }

  .home-hero__visual {
    min-height: 420px;
  }

  .home-hero__visual > img {
    max-height: 435px;
  }

  .hero-float-card {
    display: none;
  }

  .hero-shape--back {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 330px;
  }

  .proof-band {
    padding-inline: 24px;
  }

  .page-hero,
  .page-hero--compact {
    padding-block: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ================================================================
   Nurse Tools Purple 1.1 consolidated refinements
   ================================================================ */

/* Icon plus wordmark branding in both header and footer. */
.site-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--nt-ink);
  text-decoration: none;
}

.site-brand-link:hover,
.site-brand-link:focus {
  color: var(--nt-ink);
}

.site-brand-link__icon {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
  border-radius: 7px;
  box-shadow: 0 7px 18px rgba(37, 139, 210, 0.2);
}

.site-brand-link__name {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.035em;
}

.site-brand-link__name strong {
  font-weight: 800;
}

.site-brand-link--footer,
.site-brand-link--footer:hover,
.site-brand-link--footer:focus {
  color: var(--nt-white);
}

.site-brand-link--footer .site-brand-link__icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  border-radius: 4px;
  box-shadow: none;
}

.site-brand-link--footer .site-brand-link__name {
  color: var(--nt-white);
}

.site-header,
.site-header__inner {
  overflow: visible;
}

.site-header__inner {
  position: relative;
}

/* Approved desktop hero proportions. */
@media (min-width: 1121px) {
  .home-hero .nt-container {
    width: min(calc(100% - 48px), 1280px);
    overflow: visible;
  }

  .home-hero__inner {
    min-height: 610px;
    padding-top: 58px;
    padding-bottom: 30px;
    grid-template-columns: minmax(0, 1.08fr) minmax(500px, 0.92fr);
    gap: 24px;
    overflow: visible;
  }

  .home-hero__content {
    padding-bottom: 10px;
  }

  .home-hero h1 {
    max-width: 720px;
    margin-bottom: 20px;
    font-size: clamp(3.55rem, 4vw, 4.15rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .home-hero h1 span {
    white-space: nowrap;
  }

  .home-hero__description {
    max-width: 640px;
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .hero-checklist {
    margin-top: 22px;
    margin-bottom: 24px;
  }

  .hero-trust-row {
    margin-top: 22px;
  }

  .home-hero__visual {
    min-height: 550px;
    margin-right: -10px;
    overflow: visible;
  }

  .home-hero__visual > img {
    right: 125px;
    bottom: -2px;
    width: auto;
    height: 600px;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 24px 28px rgba(35, 22, 77, 0.12));
  }

  .hero-shape--back {
    right: auto;
    bottom: 8px;
    left: -15px;
    width: 540px;
    height: 455px;
    opacity: 0.82;
    filter: drop-shadow(0 24px 34px rgba(76, 34, 189, 0.16));
  }

  .hero-float-card {
    width: 172px;
    padding: 12px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(35, 22, 77, 0.12);
  }

  .hero-float-card--one {
    top: 68px;
    right: -42px;
  }

  .hero-float-card--two {
    top: 195px;
    right: -52px;
  }

  .hero-float-card--three {
    top: 322px;
    right: -40px;
  }
}

/* Mobile navigation opens as a normal dropdown below the header. */
@media (max-width: 960px) {
  body.menu-is-open {
    overflow: auto;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .menu-toggle {
    position: relative;
    z-index: 1003;
  }

  .menu-toggle[aria-expanded="true"] {
    color: var(--nt-purple-dark);
    background: var(--nt-lavender-2);
    border-color: #d9ccff;
  }

  .primary-navigation {
    position: static;
    z-index: 1002;
    display: none;
    width: 100%;
    max-height: none;
    flex: 0 0 100%;
    order: 3;
    padding: 12px;
    gap: 4px;
    overflow: visible;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(218, 210, 238, 0.9);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 45px rgba(27, 18, 60, 0.16);
  }

  .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation .menu {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 2px;
    align-items: stretch;
    flex-direction: column;
  }

  .primary-navigation .menu-item {
    width: 100%;
  }

  .primary-navigation .menu > li > a {
    display: flex;
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    align-items: center;
    color: var(--nt-ink);
    font-size: 1rem;
    font-weight: 650;
    border-radius: 9px;
  }

  .primary-navigation .menu > li > a:hover,
  .primary-navigation .menu > li > a:focus,
  .primary-navigation .menu > li.current-menu-item > a,
  .primary-navigation .menu > li.current_page_item > a {
    color: var(--nt-purple-dark);
    background: var(--nt-lavender-2);
  }

  .primary-navigation .menu > li.current-menu-item > a::after,
  .primary-navigation .menu > li.current_page_item > a::after {
    display: none;
  }

  .primary-navigation .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    margin: 2px 0 6px 14px;
    padding: 3px 0 3px 12px;
    background: transparent;
    border: 0;
    border-left: 2px solid #e6ddfb;
    border-radius: 0;
    box-shadow: none;
  }

  .primary-navigation .sub-menu a {
    padding: 9px 12px;
    font-size: 0.94rem;
  }

  .header-actions {
    display: grid;
    margin-top: 8px;
    padding-top: 12px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-top: 1px solid #eee9f8;
  }

  .header-actions .nt-button {
    width: 100%;
    min-height: 46px;
    margin: 0;
  }
}

@media (max-width: 520px) {
  .site-brand-link__icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .site-brand-link__name {
    font-size: 1.08rem;
  }

  .primary-navigation {
    width: 100%;
    padding: 10px;
    border-radius: 0 0 14px 14px;
  }

  .header-actions {
    grid-template-columns: 1fr;
  }
}

/* FAQ page hero. */
.faq-hero {
  position: relative;
  overflow: hidden;
  padding-block: 76px;
  background:
    radial-gradient(circle at 82% 20%, rgba(111, 66, 232, 0.18) 0, rgba(111, 66, 232, 0) 34%),
    linear-gradient(135deg, #ffffff 0%, #faf8ff 52%, #f1ebff 100%);
}

.faq-hero::before,
.faq-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.faq-hero::before {
  top: -110px;
  right: 7%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(111, 66, 232, 0.13);
  border-radius: 50%;
}

.faq-hero::after {
  right: 19%;
  bottom: -145px;
  width: 270px;
  height: 270px;
  background: rgba(111, 66, 232, 0.06);
  border-radius: 42% 58% 65% 35%;
  transform: rotate(24deg);
}

.faq-hero .nt-container {
  position: relative;
  z-index: 1;
}

.faq-hero .eyebrow {
  margin-bottom: 16px;
}

.faq-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.faq-hero .nt-container > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* FAQ layout and category navigation. */
.faq-layout {
  max-width: 1180px;
  padding-top: 68px;
  padding-bottom: 84px;
  grid-template-columns: 235px minmax(0, 1fr);
  align-items: start;
  gap: 54px;
}

.faq-layout__sidebar {
  position: sticky;
  top: 105px;
  overflow: hidden;
  padding: 15px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  border: 1px solid #e7e0f5;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(38, 24, 79, 0.08);
}

.faq-layout__sidebar::before {
  display: block;
  height: 4px;
  margin: -15px -15px 20px;
  content: "";
  background: linear-gradient(90deg, #7444ed, #9b6cf4);
}

.faq-layout__sidebar h2 {
  margin: 0 8px 12px;
  color: var(--nt-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-layout__sidebar a {
  position: relative;
  display: flex;
  min-height: 44px;
  padding: 11px 13px 11px 16px;
  align-items: center;
  color: #4d5873;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.faq-layout__sidebar a::before {
  width: 6px;
  height: 6px;
  margin-right: 10px;
  flex: 0 0 6px;
  content: "";
  background: #c5b3f5;
  border-radius: 50%;
}

.faq-layout__sidebar a:hover {
  color: var(--nt-purple-dark);
  background: var(--nt-lavender-2);
  transform: translateX(2px);
}

.faq-layout__sidebar a.is-active {
  color: var(--nt-white);
  background: linear-gradient(135deg, #7444ed, #5c2dd6);
  box-shadow: 0 9px 20px rgba(94, 46, 211, 0.2);
}

.faq-layout__sidebar a.is-active::before {
  background: var(--nt-white);
}

.faq-layout__main {
  counter-reset: faq-question;
}

.faq-section-heading {
  max-width: 700px;
  margin-bottom: 38px;
}

.faq-section-heading__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--nt-purple);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-section-heading h2 {
  margin: 0 0 10px;
  color: var(--nt-ink);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  letter-spacing: -0.035em;
}

.faq-section-heading p,
.faq-category__heading p {
  max-width: 650px;
  margin: 0;
  color: var(--nt-muted);
  line-height: 1.7;
}

.faq-category {
  margin-bottom: 50px;
  scroll-margin-top: 108px;
}

.faq-category__heading {
  margin-bottom: 20px;
}

.faq-category__heading h2 {
  margin-bottom: 5px;
  color: var(--nt-ink);
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

/* FAQ accordion cards. */
.faq-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  background: var(--nt-white);
  border: 1px solid #e6e0f1;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(35, 23, 70, 0.055);
  counter-increment: faq-question;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
  border-color: #d4c5f8;
  box-shadow: 0 14px 34px rgba(48, 29, 94, 0.09);
  transform: translateY(-1px);
}

.faq-item[open] {
  border-color: #cdbbf8;
  box-shadow: 0 16px 38px rgba(80, 43, 166, 0.1);
}

.faq-item[open]::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, #7545ed, #a17af4);
}

.faq-item summary {
  position: relative;
  padding: 22px 24px 22px 70px;
  gap: 18px;
  font-size: 1rem;
  line-height: 1.45;
}

.faq-item summary::before {
  position: absolute;
  left: 22px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  content: counter(faq-question);
  color: var(--nt-purple-dark);
  background: #f2edff;
  border: 1px solid #dfd3ff;
  border-radius: 9px;
  font-size: 0.75rem;
  font-weight: 800;
}

.faq-item summary span {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: var(--nt-purple-dark);
  background: #f1ecff;
  border: 1px solid #e1d7fc;
  transition: color 0.2s ease, background 0.2s ease, transform 0.25s ease;
}

.faq-item[open] summary {
  color: var(--nt-purple-dark);
}

.faq-item[open] summary span {
  color: var(--nt-white);
  background: var(--nt-purple);
  border-color: var(--nt-purple);
  transform: rotate(45deg);
}

.faq-item > div {
  margin: 0 24px 0 70px;
  padding: 0 0 24px;
  border-top: 1px solid #eee9f6;
}

.faq-item > div p {
  padding-top: 18px;
  color: #5e6981;
  font-size: 0.96rem;
  line-height: 1.75;
}

.faq-editor-content {
  margin: 12px 0 40px;
  padding: 28px;
  background: #fbfaff;
  border: 1px solid #e8e0f7;
  border-radius: 18px;
}

.faq-layout .inline-cta--help {
  margin-top: 34px;
  padding: 26px;
  background: linear-gradient(135deg, #f3eeff 0%, #faf8ff 100%);
  border: 1px solid #dbcef9;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(53, 31, 103, 0.06);
}

.faq-layout .inline-cta--help > div:first-child {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--nt-white);
  background: linear-gradient(135deg, #7544ed, #5928d0);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(90, 43, 205, 0.22);
}

.faq-layout .inline-cta--help > div:first-child svg {
  width: 24px;
  height: 24px;
}

.faq-layout .inline-cta--help strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1rem;
}

.faq-layout .inline-cta--help p {
  margin: 0;
}

.faq-layout .inline-cta--help .nt-button {
  color: var(--nt-white);
  background: var(--nt-purple);
  border-color: var(--nt-purple);
}

.faq-layout .inline-cta--help .nt-button:hover {
  color: var(--nt-white);
  background: var(--nt-purple-dark);
  border-color: var(--nt-purple-dark);
}

@media (max-width: 900px) {
  .faq-layout {
    padding-top: 45px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-layout__sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px;
    gap: 5px;
    scrollbar-width: none;
  }

  .faq-layout__sidebar::-webkit-scrollbar {
    display: none;
  }

  .faq-layout__sidebar::before,
  .faq-layout__sidebar h2 {
    display: none;
  }

  .faq-layout__sidebar a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .faq-hero {
    padding-block: 52px;
  }

  .faq-item summary {
    padding: 19px 18px 19px 58px;
    font-size: 0.94rem;
  }

  .faq-item summary::before {
    left: 16px;
    width: 29px;
    height: 29px;
  }

  .faq-item summary span {
    flex-basis: 29px;
    width: 29px;
    height: 29px;
  }

  .faq-item > div {
    margin-right: 18px;
    margin-left: 58px;
    padding-bottom: 20px;
  }

  .faq-layout .inline-cta--help {
    padding: 22px;
  }
}
