:root {
  --nmt-navy: #082f59;
  --nmt-navy-dark: #031a39;
  --nmt-green: #168544;
  --nmt-green-bright: #8dd141;
  --nmt-yellow: #ffc72f;
  --nmt-yellow-light: #fff36b;
  --nmt-sky: #bdefff;
  --nmt-ink: #10233d;
  --nmt-muted: #5f7186;
  --nmt-line: #d8e5ee;
  --nmt-paper: #ffffff;
  --nmt-soft: #eefbff;
  --nmt-radius: 8px;
  --nmt-shadow: 0 18px 44px rgba(3, 26, 57, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--nmt-ink);
  background: var(--nmt-paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

a {
  color: var(--nmt-navy);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--nmt-navy-dark);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 58px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 24px;
}

.nmt-skip {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 999;
  padding: 10px 14px;
  color: #fff;
  background: var(--nmt-navy);
}

.nmt-skip:focus {
  top: 12px;
}

.nmt-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--nmt-line);
  backdrop-filter: blur(10px);
}

.nmt-header-inner,
.nmt-section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.nmt-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 86px;
}

.nmt-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  color: var(--nmt-navy-dark);
  text-decoration: none;
}

.nmt-brand img,
.custom-logo {
  width: 62px;
  height: 62px;
}

.nmt-brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.12;
  text-transform: uppercase;
}

.nmt-brand small {
  display: block;
  color: var(--nmt-muted);
  font-size: 12px;
  line-height: 1.25;
}

.nmt-nav {
  margin-left: auto;
}

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

.nmt-menu a {
  color: var(--nmt-navy-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.nmt-call-button,
.nmt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: var(--nmt-radius);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.nmt-call-button,
.nmt-button-primary {
  color: #fff;
  background: var(--nmt-navy);
}

.nmt-button-primary:hover,
.nmt-call-button:hover {
  color: #fff;
  background: var(--nmt-navy-dark);
}

.nmt-button-ghost {
  color: var(--nmt-navy);
  background: #fff;
  border-color: var(--nmt-navy);
}

.nmt-button-pay {
  margin-right: 8px;
  margin-top: 10px;
  color: var(--nmt-navy-dark);
  background: var(--nmt-yellow);
  border-color: var(--nmt-navy);
}

.nmt-button[disabled] {
  cursor: progress;
  opacity: 0.7;
}

.nmt-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 64px;
  background:
    linear-gradient(180deg, rgba(189, 239, 255, 0.8), rgba(255, 255, 255, 0.95)),
    var(--nmt-soft);
}

.nmt-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(141, 209, 65, 0), rgba(22, 133, 68, 0.18));
  pointer-events: none;
}

.nmt-hero-grid,
.nmt-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 44px;
  align-items: center;
}

.nmt-two-col-reverse {
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
}

.nmt-hero-copy,
.nmt-hero-visual,
.nmt-section-copy,
.nmt-tool,
.nmt-account-box {
  position: relative;
  z-index: 1;
}

.nmt-hero-lede {
  max-width: 680px;
  color: #314760;
  font-size: 21px;
}

.nmt-kicker {
  margin-bottom: 10px;
  color: var(--nmt-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nmt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.nmt-trust-list {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nmt-trust-list li {
  position: relative;
  padding-left: 28px;
  color: #243b54;
  font-weight: 700;
}

.nmt-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--nmt-green-bright);
  border-radius: 50%;
  background: var(--nmt-navy);
}

.nmt-hero-visual img {
  display: block;
  border: 4px solid var(--nmt-navy);
  border-radius: 18px;
  box-shadow: var(--nmt-shadow);
}

.nmt-band {
  padding: 82px 0;
  background: #fff;
}

.nmt-schedule-band {
  background: linear-gradient(180deg, #ffffff, #eefbff);
}

.nmt-section-copy p {
  max-width: 590px;
  color: #40566e;
  font-size: 19px;
}

.nmt-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 520px;
  margin-top: 24px;
}

.nmt-mini-stats span {
  min-height: 86px;
  padding: 14px;
  color: var(--nmt-navy);
  background: var(--nmt-yellow-light);
  border: 2px solid var(--nmt-navy);
  border-radius: var(--nmt-radius);
  font-weight: 800;
  text-align: center;
}

.nmt-mini-stats strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.nmt-tool,
.nmt-account-box {
  padding: 24px;
  background: #fff;
  border: 3px solid var(--nmt-navy);
  border-radius: var(--nmt-radius);
  box-shadow: var(--nmt-shadow);
}

.nmt-tool-head h2 {
  margin-bottom: 8px;
  font-size: 32px;
}

.nmt-tool-head p:last-child {
  color: var(--nmt-muted);
}

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

.nmt-tool label,
.nmt-tool legend {
  display: block;
  margin: 0 0 14px;
  color: var(--nmt-navy-dark);
  font-size: 14px;
  font-weight: 900;
}

.nmt-tool input,
.nmt-tool select,
.nmt-tool textarea,
.nmt-account-box input {
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
  padding: 10px 12px;
  color: var(--nmt-ink);
  background: #fff;
  border: 2px solid #b9c9d6;
  border-radius: 6px;
  font: inherit;
}

.nmt-tool textarea {
  min-height: 92px;
  resize: vertical;
}

.nmt-tool input:focus,
.nmt-tool select:focus,
.nmt-tool textarea:focus,
.nmt-account-box input:focus {
  outline: 3px solid rgba(141, 209, 65, 0.45);
  border-color: var(--nmt-green);
}

.nmt-checks {
  display: grid;
  gap: 8px;
  margin: 6px 0 18px;
  padding: 12px;
  border: 2px solid var(--nmt-line);
  border-radius: var(--nmt-radius);
}

.nmt-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 800;
}

.nmt-checks input {
  width: 20px;
  min-height: 20px;
  margin: 0;
}

.nmt-estimate-output {
  margin: 18px 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--nmt-navy), var(--nmt-navy-dark));
  border-radius: var(--nmt-radius);
}

.nmt-estimate-output span,
.nmt-estimate-output small {
  display: block;
}

.nmt-estimate-output strong {
  display: block;
  color: #fff;
  font-size: 44px;
  line-height: 1.05;
}

.nmt-estimate-output small {
  color: var(--nmt-yellow-light);
  font-weight: 800;
}

.nmt-form-result {
  margin-top: 14px;
}

.nmt-result-success,
.nmt-result-error {
  padding: 14px;
  border-radius: var(--nmt-radius);
}

.nmt-result-success {
  background: #ecffd8;
  border: 2px solid var(--nmt-green);
}

.nmt-result-error {
  background: #fff0f0;
  border: 2px solid #df2b2f;
}

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

.nmt-services {
  padding: 82px 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(8, 47, 89, 0.96), rgba(3, 26, 57, 0.98)),
    var(--nmt-navy);
}

.nmt-services h2,
.nmt-services h3,
.nmt-services .nmt-kicker {
  color: #fff;
}

.nmt-services .nmt-kicker {
  color: var(--nmt-yellow-light);
}

.nmt-section-title {
  max-width: 720px;
  margin-bottom: 32px;
}

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

.nmt-service-grid article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--nmt-radius);
}

.nmt-service-grid p {
  color: #d9ecf6;
}

.nmt-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  color: var(--nmt-navy);
  background: var(--nmt-yellow);
  border-radius: 50%;
  font-weight: 900;
}

.nmt-account-section,
.nmt-faq {
  padding: 82px 0;
}

.nmt-account-section {
  background: #fff;
}

.nmt-account-box .login-username,
.nmt-account-box .login-password,
.nmt-account-box .login-remember,
.nmt-account-box .login-submit {
  margin: 0 0 14px;
}

.nmt-account-box .button {
  min-height: 48px;
  padding: 12px 18px;
  color: #fff;
  background: var(--nmt-navy);
  border: 0;
  border-radius: var(--nmt-radius);
  font-weight: 900;
}

.nmt-muted {
  color: var(--nmt-muted);
}

.nmt-order-list {
  display: grid;
  gap: 10px;
}

.nmt-order-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 12px;
  border: 2px solid var(--nmt-line);
  border-radius: var(--nmt-radius);
}

.nmt-faq {
  background: var(--nmt-soft);
}

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

.nmt-faq details {
  padding: 20px;
  background: #fff;
  border: 2px solid var(--nmt-line);
  border-radius: var(--nmt-radius);
}

.nmt-faq summary {
  color: var(--nmt-navy-dark);
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}

.nmt-footer {
  color: #dbefff;
  background: var(--nmt-navy-dark);
}

.nmt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  padding: 48px 0;
}

.nmt-footer h2,
.nmt-footer h3,
.nmt-footer a {
  color: #fff;
}

.nmt-footer p {
  color: #dbefff;
}

.nmt-footer-logo {
  width: 82px;
  height: 82px;
}

.nmt-footer-bottom {
  padding: 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.nmt-footer-bottom p {
  margin: 0;
}

.nmt-page {
  min-height: 55vh;
  padding: 72px 0;
}

.nmt-content {
  max-width: 850px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .nmt-header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .nmt-brand {
    min-width: 0;
    flex: 1 1 280px;
  }

  .nmt-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
  }

  .nmt-menu {
    min-width: 520px;
  }

  .nmt-hero-grid,
  .nmt-two-col,
  .nmt-two-col-reverse {
    grid-template-columns: 1fr;
  }

  .nmt-two-col-reverse .nmt-section-copy {
    order: -1;
  }

  .nmt-service-grid,
  .nmt-faq-grid,
  .nmt-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  .nmt-header-inner,
  .nmt-section-inner {
    width: min(100% - 24px, 1160px);
  }

  .nmt-brand img,
  .custom-logo {
    width: 54px;
    height: 54px;
  }

  .nmt-call-button {
    width: 100%;
  }

  .nmt-hero,
  .nmt-band,
  .nmt-services,
  .nmt-account-section,
  .nmt-faq {
    padding: 48px 0;
  }

  .nmt-hero-lede,
  .nmt-section-copy p {
    font-size: 17px;
  }

  .nmt-hero-actions,
  .nmt-button {
    width: 100%;
  }

  .nmt-form-grid,
  .nmt-mini-stats,
  .nmt-order-row {
    grid-template-columns: 1fr;
  }

  .nmt-tool,
  .nmt-account-box {
    padding: 18px;
  }

  .nmt-estimate-output strong {
    font-size: 34px;
  }
}
