/* Novatruss public + auth design system */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,650&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --nt-ink: #12202a;
  --nt-ink-soft: #3a4a55;
  --nt-muted: #6b7a85;
  --nt-stone: #f3f1ec;
  --nt-stone-2: #e7e2d8;
  --nt-paper: #faf9f6;
  --nt-white: #ffffff;
  --nt-teal: #0f6b63;
  --nt-teal-deep: #0a4f4a;
  --nt-teal-soft: #d9ece9;
  --nt-line: rgba(18, 32, 42, 0.12);
  --nt-shadow: 0 24px 60px rgba(18, 32, 42, 0.08);
  --nt-radius: 4px;
  --nt-container: 1180px;
  --nt-font: "Manrope", sans-serif;
  --nt-display: "Fraunces", Georgia, serif;
  --nt-header-h: 78px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--nt-font);
  color: var(--nt-ink);
  background: var(--nt-paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1rem; color: var(--nt-ink-soft); }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.75rem;
  font-family: var(--nt-display);
  font-weight: 650;
  line-height: 1.15;
  color: var(--nt-ink);
  letter-spacing: -0.02em;
}

.nt-container {
  width: min(100% - 2.5rem, var(--nt-container));
  margin-inline: auto;
}

.nt-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.nt-section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.nt-section--stone { background: var(--nt-stone); }
.nt-section--ink {
  background: linear-gradient(160deg, #0f1c24 0%, #16343a 55%, #0f6b63 140%);
  color: var(--nt-white);
}
.nt-section--ink p,
.nt-section--ink .nt-lede { color: rgba(255,255,255,0.78); }
.nt-section--ink h1,
.nt-section--ink h2,
.nt-section--ink h3 { color: var(--nt-white); }

.nt-eyebrow {
  display: inline-block;
  font-family: var(--nt-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nt-teal);
  margin-bottom: 0.85rem;
}
.nt-section--ink .nt-eyebrow { color: #9fd8d1; }

.nt-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  max-width: 18ch;
  margin-bottom: 1rem;
}
.nt-title--wide { max-width: 24ch; }
.nt-lede {
  font-size: 1.05rem;
  max-width: 48ch;
  color: var(--nt-ink-soft);
}
.nt-center { text-align: center; }
.nt-center .nt-title,
.nt-center .nt-lede { margin-inline: auto; }

.nt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: var(--nt-radius);
  border: 1px solid transparent;
  font-family: var(--nt-font);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.nt-btn:hover { transform: translateY(-1px); }
.nt-btn--primary {
  background: var(--nt-teal);
  color: var(--nt-white);
}
.nt-btn--primary:hover { background: var(--nt-teal-deep); color: var(--nt-white); }
.nt-btn--ghost {
  background: transparent;
  border-color: var(--nt-line);
  color: var(--nt-ink);
}
.nt-btn--ghost:hover { border-color: var(--nt-ink); }
.nt-btn--light {
  background: var(--nt-white);
  color: var(--nt-ink);
}
.nt-btn--light:hover { background: var(--nt-stone); color: var(--nt-ink); }
.nt-btn--block { width: 100%; }
.nt-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Header */
.nt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nt-header.is-scrolled {
  border-bottom-color: var(--nt-line);
  box-shadow: 0 10px 30px rgba(18, 32, 42, 0.04);
}
.nt-header__inner {
  min-height: var(--nt-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nt-logo img { height: 36px; width: auto; }
.nt-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nt-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--nt-ink-soft);
  position: relative;
}
.nt-nav a:hover,
.nt-nav a.active { color: var(--nt-ink); }
.nt-nav a.active::after,
.nt-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--nt-teal);
  transform-origin: left;
  animation: nt-underline .35s ease;
}
.nt-header__cta { display: flex; align-items: center; gap: 0.65rem; }
.nt-header__login {
  font-weight: 700;
  color: var(--nt-ink);
  padding: 0.5rem 0.75rem;
}
.nt-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--nt-line);
  background: transparent;
  border-radius: var(--nt-radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nt-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--nt-ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nt-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nt-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.nt-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nt-mobile-nav {
  display: none;
  border-top: 1px solid var(--nt-line);
  background: var(--nt-paper);
}
.nt-mobile-nav.is-open { display: block; }
.nt-mobile-nav__inner {
  padding: 1.25rem 0 1.5rem;
  display: grid;
  gap: 0.85rem;
}
.nt-mobile-nav a { font-weight: 600; color: var(--nt-ink-soft); }
.nt-mobile-nav .nt-actions { margin-top: 0.5rem; }

/* Hero */
.nt-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--nt-white);
  background: #0f1c24;
}
.nt-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nt-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: nt-kenburns 18s ease-in-out infinite alternate;
}
.nt-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 28, 0.88) 0%, rgba(10, 22, 28, 0.55) 48%, rgba(10, 22, 28, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 22, 28, 0.15) 0%, rgba(10, 22, 28, 0.72) 100%);
}
.nt-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--nt-container));
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 8rem) 0 clamp(3.5rem, 8vh, 5.5rem);
}
.nt-hero .nt-eyebrow { color: #9fd8d1; }
.nt-hero h1 {
  color: var(--nt-white);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  max-width: 12ch;
  margin-bottom: 1.1rem;
  animation: nt-rise .9s ease both;
}
.nt-hero .nt-lede {
  color: rgba(255,255,255,0.82);
  max-width: 38ch;
  margin-bottom: 1.75rem;
  animation: nt-rise .9s ease .12s both;
}
.nt-hero .nt-actions { animation: nt-rise .9s ease .22s both; }
.nt-hero__meta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  animation: nt-rise .9s ease .3s both;
}
.nt-hero__meta img {
  height: 36px;
  width: auto;
  border-radius: 999px;
}

/* Page header */
.nt-pagehead {
  background:
    radial-gradient(circle at 85% 20%, rgba(15, 107, 99, 0.18), transparent 40%),
    linear-gradient(180deg, #eef3f1 0%, var(--nt-paper) 100%);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 2.5rem;
  border-bottom: 1px solid var(--nt-line);
}
.nt-pagehead h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 0.5rem; }
.nt-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--nt-muted);
  font-size: 0.92rem;
  font-weight: 600;
}
.nt-crumb a:hover { color: var(--nt-teal); }

/* About */
.nt-about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.nt-about__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--nt-radius);
  background: var(--nt-stone-2);
}
.nt-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.nt-about__badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: var(--nt-white);
  padding: 1rem 1.15rem;
  border-radius: var(--nt-radius);
  box-shadow: var(--nt-shadow);
}
.nt-about__badge strong {
  display: block;
  font-family: var(--nt-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--nt-teal);
}
.nt-about__list {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}
.nt-about__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--nt-line);
}
.nt-about__item:last-child { border-bottom: 0; padding-bottom: 0; }
.nt-about__item h4 {
  font-family: var(--nt-font);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.nt-about__item p { margin: 0; font-size: 0.95rem; }
.nt-icon-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--nt-teal-soft);
  color: var(--nt-teal);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Services / features */
.nt-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.nt-card-plain {
  padding: 1.75rem 1.5rem;
  border-top: 2px solid var(--nt-teal);
  background: transparent;
}
.nt-card-plain h3 {
  font-size: 1.35rem;
  margin: 1rem 0 0.65rem;
}
.nt-card-plain p { margin: 0; }
.nt-feature {
  position: relative;
  min-height: 280px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--nt-ink);
  color: var(--nt-white);
  border-radius: var(--nt-radius);
}
.nt-feature__bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}
.nt-feature__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nt-feature__body { position: relative; z-index: 1; }
.nt-feature h3 { color: var(--nt-white); font-size: 1.4rem; }
.nt-feature p { color: rgba(255,255,255,0.78); margin: 0; }

/* Why choose / process */
.nt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.nt-choose-list { display: grid; gap: 1.25rem; margin-top: 1.75rem; }
.nt-choose-item h3 {
  font-family: var(--nt-font);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.nt-choose-item p { margin: 0; }
.nt-media-stack {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.85rem;
}
.nt-media-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
  border-radius: var(--nt-radius);
  background: var(--nt-stone-2);
}
.nt-media-stack img:first-child { grid-row: span 2; min-height: 380px; }

.nt-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.nt-process__item {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.nt-process__num {
  display: inline-block;
  font-family: var(--nt-display);
  font-size: 2rem;
  color: #9fd8d1;
  margin-bottom: 0.75rem;
}
.nt-process__item h3 {
  color: var(--nt-white);
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}
.nt-process__item p { margin: 0; }

/* FAQ */
.nt-faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.nt-accordion { display: grid; gap: 0.65rem; }
.nt-acc {
  border-bottom: 1px solid var(--nt-line);
}
.nt-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.nt-acc summary::-webkit-details-marker { display: none; }
.nt-acc summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--nt-teal);
  font-weight: 500;
}
.nt-acc[open] summary::after { content: "–"; }
.nt-acc__body {
  padding: 0 0 1.15rem;
  color: var(--nt-ink-soft);
}
.nt-faq__media {
  min-height: 420px;
  border-radius: var(--nt-radius);
  overflow: hidden;
  background: var(--nt-stone-2);
}
.nt-faq__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

/* Plans / CTA bands */
.nt-cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--nt-radius);
  padding: clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(159, 216, 209, 0.25), transparent 35%),
    linear-gradient(135deg, #12202a, #0f6b63);
  color: var(--nt-white);
}
.nt-cta-band h2 { color: var(--nt-white); max-width: 16ch; }
.nt-cta-band p { color: rgba(255,255,255,0.8); max-width: 48ch; }
.nt-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.nt-plan {
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  padding: 1.5rem;
  border-radius: var(--nt-radius);
}
.nt-plan h3 {
  font-family: var(--nt-font);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.nt-plan__price {
  font-family: var(--nt-display);
  font-size: 2rem;
  color: var(--nt-teal);
  margin-bottom: 1rem;
}
.nt-plan ul { display: grid; gap: 0.55rem; margin-bottom: 1.25rem; }
.nt-plan li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--nt-ink-soft);
  border-bottom: 1px dashed var(--nt-line);
  padding-bottom: 0.45rem;
}

/* Testimonials */
.nt-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.nt-quote {
  padding: 1.75rem 1.5rem;
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: var(--nt-radius);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 100%;
}
.nt-quote p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--nt-ink);
  font-family: var(--nt-display);
  font-weight: 500;
  line-height: 1.45;
}
.nt-quote__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.nt-quote__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--nt-stone-2);
}
.nt-quote__author strong {
  display: block;
  font-size: 0.95rem;
}
.nt-quote__author span {
  color: var(--nt-muted);
  font-size: 0.85rem;
}

/* Counter / partners / subscribe */
.nt-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.nt-counter { text-align: center; }
.nt-counter strong {
  display: block;
  font-family: var(--nt-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--nt-white);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.nt-counter span { color: rgba(255,255,255,0.75); font-weight: 600; }

.nt-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 2.5rem;
  margin-top: 1.5rem;
}
.nt-partners img {
  height: 28px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity .25s ease, filter .25s ease;
}
.nt-partners img:hover { opacity: 1; filter: none; }

.nt-subscribe {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.nt-subscribe form {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.nt-subscribe input[type="email"],
.nt-field,
.nt-auth input,
.nt-auth select,
.nt-auth textarea,
.nt-contact input,
.nt-contact textarea,
.nt-contact select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--nt-line);
  background: var(--nt-white);
  border-radius: var(--nt-radius);
  padding: 0.7rem 0.95rem;
  font: inherit;
  color: var(--nt-ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nt-subscribe input[type="email"] { flex: 1; min-width: 220px; }
.nt-subscribe input:focus,
.nt-field:focus,
.nt-auth input:focus,
.nt-auth select:focus,
.nt-auth textarea:focus,
.nt-contact input:focus,
.nt-contact textarea:focus {
  border-color: var(--nt-teal);
  box-shadow: 0 0 0 3px rgba(15, 107, 99, 0.12);
}
.nt-label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--nt-ink);
}

/* Contact */
.nt-contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.nt-contact__form {
  display: grid;
  gap: 1rem;
}
.nt-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.nt-contact__aside {
  background: var(--nt-stone);
  padding: 1.75rem;
  border-radius: var(--nt-radius);
}
.nt-contact__list { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.nt-contact__list h4 {
  font-family: var(--nt-font);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.nt-contact__list p,
.nt-contact__list a {
  margin: 0;
  color: var(--nt-ink-soft);
  font-size: 0.95rem;
}
.nt-map {
  margin-top: 2rem;
  border-radius: var(--nt-radius);
  overflow: hidden;
  border: 1px solid var(--nt-line);
}
.nt-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* Footer */
.nt-footer {
  background: #0f1c24;
  color: rgba(255,255,255,0.78);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.nt-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: end;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 2.5rem;
}
.nt-footer__top h2 {
  color: var(--nt-white);
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
  margin: 0;
}
.nt-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}
.nt-footer__brand p { color: rgba(255,255,255,0.68); max-width: 32ch; }
.nt-footer__brand img { height: 36px; width: auto; margin-bottom: 1rem; }
.nt-footer h3 {
  color: var(--nt-white);
  font-family: var(--nt-font);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.nt-footer__links { display: grid; gap: 0.65rem; }
.nt-footer__links a:hover { color: #9fd8d1; }
.nt-social { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.25rem; }
.nt-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color .2s ease, color .2s ease;
}
.nt-social a:hover { border-color: #9fd8d1; color: #9fd8d1; }
.nt-footer__bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.nt-footer__bottom p { margin: 0; color: rgba(255,255,255,0.55); }

/* Auth */
.nt-auth {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.nt-auth__panel {
  position: relative;
  overflow: hidden;
  background: #12202a;
  color: var(--nt-white);
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.nt-auth__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,28,36,0.25), rgba(15,28,36,0.85)),
    radial-gradient(circle at 20% 20%, rgba(15,107,99,0.45), transparent 45%);
  z-index: 1;
}
.nt-auth__panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nt-auth__panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.nt-auth__panel-copy { position: relative; z-index: 2; max-width: 28ch; }
.nt-auth__panel-copy h1 {
  color: var(--nt-white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 0.75rem;
}
.nt-auth__panel-copy p { color: rgba(255,255,255,0.78); margin: 0; }
.nt-auth__form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--nt-paper);
}
.nt-auth__form {
  width: min(100%, 440px);
}
.nt-auth__form .site-logo,
.nt-auth__form .nt-logo { display: inline-block; margin-bottom: 1.75rem; }
.nt-auth__form .nt-logo img { height: 34px; }
.nt-auth__form h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.35rem;
}
.nt-auth__form .nt-lede { margin-bottom: 1.75rem; }
.nt-auth .form-group,
.nt-auth .mb-3 { margin-bottom: 1rem; }
.nt-auth .form--label,
.nt-auth label.form--label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--nt-ink);
}
.nt-auth .form--control,
.nt-auth input.form--control,
.nt-auth select.form--control,
.nt-auth textarea.form--control,
.nt-auth .form-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--nt-line);
  background: var(--nt-white);
  border-radius: var(--nt-radius);
  padding: 0.7rem 0.95rem;
  font: inherit;
}
.nt-auth .btn--base,
.nt-auth .btn.btn--base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: var(--nt-radius);
  background: var(--nt-teal);
  color: var(--nt-white);
  font-weight: 700;
  cursor: pointer;
}
.nt-auth .btn--base:hover { background: var(--nt-teal-deep); color: #fff; }
.nt-auth .have-account,
.nt-auth .have-account__text { text-align: center; color: var(--nt-ink-soft); }
.nt-auth .text--base,
.nt-auth a.text--base,
.nt-auth .have-account__link { color: var(--nt-teal); font-weight: 700; }
.nt-auth .d-flex.form-group { display: flex; align-items: flex-start; gap: 0.65rem; }
.nt-auth .form--check {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-top: 0.2rem;
}
.nt-auth .form--check .form-check-input,
.nt-auth input.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  min-height: 1.15rem;
  margin: 0;
  padding: 0;
  border: 1.5px solid var(--nt-line);
  border-radius: 3px;
  background-color: var(--nt-white);
  background-image: none;
  box-shadow: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nt-auth .form--check .form-check-input:checked,
.nt-auth input.form-check-input:checked {
  background-color: var(--nt-teal);
  border-color: var(--nt-teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem;
}
.nt-auth .form--check .form-check-input::before,
.nt-auth .form--check .form-check-input:checked::before,
.nt-auth input.form-check-input::before,
.nt-auth input.form-check-input:checked::before {
  content: none !important;
  display: none !important;
}
.nt-auth .terms { flex: 1; line-height: 1.45; }
.nt-auth .custom-input-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
}
.nt-auth .custom-input-group .input-group-text {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
  min-height: 48px;
  padding: 0 0.85rem;
  border: 1px solid var(--nt-line);
  border-right: 0;
  background: var(--nt-stone);
  border-radius: var(--nt-radius) 0 0 var(--nt-radius);
  font-weight: 700;
}
.nt-auth .custom-input-group .form--control,
.nt-auth .custom-input-group .form-control {
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  border-radius: 0 var(--nt-radius) var(--nt-radius) 0;
}
.nt-verify-card {
  width: min(100%, 480px);
  margin: 4rem auto;
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: var(--nt-radius);
  padding: 2rem;
  box-shadow: var(--nt-shadow);
}

/* Profile completion / user-data */
.nt-userdata {
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: var(--nt-radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--nt-shadow);
}
.nt-userdata__alert {
  background: #fff6e8;
  border: 1px solid rgba(180, 120, 20, 0.2);
  color: #7a4e10;
  border-radius: var(--nt-radius);
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.nt-userdata .form-group { margin-bottom: 0.35rem; }
.nt-userdata label,
.nt-userdata .nt-label,
.nt-userdata .form-label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--nt-ink);
}
.nt-userdata .form--control,
.nt-userdata input.form--control,
.nt-userdata select.form--control,
.nt-userdata textarea.form--control,
.nt-userdata .form-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--nt-line);
  background: var(--nt-white);
  border-radius: var(--nt-radius);
  padding: 0.7rem 0.95rem;
  font: inherit;
  color: var(--nt-ink);
  outline: none;
}
.nt-userdata .form--control:focus,
.nt-userdata .form-control:focus {
  border-color: var(--nt-teal);
  box-shadow: 0 0 0 3px rgba(15, 107, 99, 0.12);
}
.nt-userdata p {
  font-size: 0.88rem;
  color: var(--nt-muted);
  margin: 0.35rem 0 0;
}
.nt-userdata .text-white { color: var(--nt-ink) !important; font-weight: 700; }

/* Tables */
.nt-prose table,
.table {
  width: 100%;
  border-collapse: collapse;
}
.nt-prose th,
.nt-prose td,
.table th,
.table td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--nt-line);
  text-align: left;
  vertical-align: middle;
  font-size: 0.92rem;
}
.nt-prose th,
.table th {
  font-family: var(--nt-font);
  font-weight: 700;
  color: var(--nt-ink);
  background: var(--nt-stone);
}

/* Policy / maintenance */
.nt-prose {
  max-width: 72ch;
  margin: 0 auto;
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: var(--nt-radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.nt-maintenance {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(15,107,99,0.12), transparent 45%),
    var(--nt-paper);
}
.nt-maintenance h4,
.nt-maintenance h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

/* Motion helpers */
.nt-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.nt-reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes nt-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes nt-kenburns {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}
@keyframes nt-underline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Responsive */
@media (max-width: 1100px) {
  .nt-grid-3,
  .nt-quote-grid,
  .nt-plan-grid,
  .nt-process,
  .nt-counters { grid-template-columns: repeat(2, 1fr); }
  .nt-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nt-nav,
  .nt-header__cta .nt-btn { display: none; }
  .nt-menu-toggle { display: inline-flex; }
  .nt-about,
  .nt-split,
  .nt-faq,
  .nt-subscribe,
  .nt-contact,
  .nt-footer__top,
  .nt-auth { grid-template-columns: 1fr; }
  .nt-auth__panel { min-height: 280px; }
  .nt-contact__row { grid-template-columns: 1fr; }
  .nt-hero { min-height: 78vh; }
  .nt-hero h1 { max-width: 14ch; }
}
@media (max-width: 640px) {
  .nt-grid-3,
  .nt-quote-grid,
  .nt-plan-grid,
  .nt-process,
  .nt-counters,
  .nt-footer__grid,
  .nt-media-stack { grid-template-columns: 1fr; }
  .nt-media-stack img:first-child { min-height: 260px; grid-row: auto; }
}
