:root {
  --nix-blue: #203d93;
  --nix-navy: #0c1b4d;
  --nix-mid: #155eb8;
  --nix-cyan: #159ee3;
  --nix-green: #59c847;
  --nix-lime: #b8d936;
  --dark: #07152f;
  --text: #263650;
  --muted: #667794;
  --light: #f5fbff;
  --line: #dce9f6;
  --white: #fff;
  --shadow: 0 22px 55px rgba(14, 37, 87, .14);
  --radius: 22px;
  --radius-lg: 34px;
  --max: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.62;
  overflow-x: hidden
}

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

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

.container {
  width: min(var(--max), calc(100% - 34px));
  margin: auto
}

.section {
  padding: 88px 0
}

.section-sm {
  padding: 58px 0
}

.grid {
  display: grid;
  gap: 24px
}

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

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

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(21, 158, 227, .22);
  border-radius: 999px;
  background: rgba(21, 158, 227, .08);
  color: var(--nix-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em
}

.pill:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nix-blue), var(--nix-lime));
  box-shadow: 0 0 0 5px rgba(184, 217, 54, .18)
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  color: var(--dark);
  line-height: 1.12
}

h1 {
  font-size: clamp(40px, 7vw, 76px);
  letter-spacing: -.055em
}

h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  letter-spacing: -.035em
}

h3 {
  font-size: 24px
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--nix-blue), var(--nix-cyan));
  color: #fff;
  font-weight: 900;
  border: 0;
  box-shadow: 0 16px 34px rgba(21, 94, 184, .24);
  cursor: pointer;
  transition: .25s ease
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(21, 94, 184, .32)
}

.btn.alt {
  background: #fff;
  color: var(--nix-blue);
  border: 1px solid var(--line);
  box-shadow: none
}

.btn.green {
  background: linear-gradient(135deg, var(--nix-green), var(--nix-lime));
  color: #09213d
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px
}

.topbar {
  background: linear-gradient(90deg, var(--nix-navy), var(--nix-blue));
  color: #dfefff;
  font-size: 13px
}

.topbar .inner {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.topbar a {
  opacity: .95
}

.topbar .links {
  display: flex;
  gap: 22px;
  align-items: center;
  white-space: nowrap
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 233, 246, .82)
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 225px
}

.brand img {
  height: 56px;
  width: auto;
  object-fit: contain
}

.brand span {
  display: none
}

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

.nav-item {
  height: 82px;
  display: flex;
  align-items: center
}

.nav-link {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 900;
  color: #18345f
}

.nav-link:hover {
  color: var(--nix-blue)
}

.nav-link .chev {
  font-size: 12px;
  color: var(--nix-cyan)
}

.mega {
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  transform: translateX(-50%) translateY(10px);
  width: min(1120px, calc(100vw - 28px));
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(220, 233, 246, .95);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 999
}

.mega:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 12px;
  background: transparent
}

.nav-item:hover .mega,
.nav-item:focus-within .mega,
.nav-item.open .mega,
.nav-item.hover-open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0)
}

.mega:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(32, 61, 147, .26), rgba(21, 158, 227, .18), rgba(184, 217, 54, .25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none
}

.mega-feature {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(32, 61, 147, .08), rgba(21, 158, 227, .08), rgba(184, 217, 54, .16));
  min-height: 100%
}

.mega-feature strong {
  display: block;
  font-size: 22px;
  color: var(--dark);
  line-height: 1.16;
  margin-bottom: 8px
}

.mega-feature p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 14px
}

.mega-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--nix-blue);
  margin-bottom: 10px
}

.mega-list {
  display: grid;
  gap: 8px
}

.mega-list a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  color: #29405e;
  font-size: 14px;
  font-weight: 800
}

.mega-list a:hover {
  background: #f2f9ff;
  color: var(--nix-blue)
}

.mega-list a:before {
  content: "";
  margin-top: 7px;
  min-width: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nix-cyan), var(--nix-lime))
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px
}

.hamburger span {
  width: 21px;
  height: 2px;
  background: var(--nix-blue);
  display: block;
  border-radius: 5px
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 85% 18%, rgba(184, 217, 54, .18), transparent 35%), radial-gradient(circle at 15% 30%, rgba(21, 158, 227, .15), transparent 34%), linear-gradient(180deg, #f7fcff 0, #fff 100%)
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(32, 61, 147, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 61, 147, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%)
}

.slider {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0 60px
}

.slide {
  display: none;
  grid-template-columns: 1.02fr .98fr;
  gap: 48px;
  align-items: center;
  animation: fadeUp .65s ease both
}

.slide.active {
  display: grid
}

.hero-copy {
  position: relative
}

.hero h1 span {
  background: linear-gradient(135deg, var(--nix-blue), var(--nix-cyan), var(--nix-lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px
}

.hero-point {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 10px 26px rgba(14, 37, 87, .08)
}

.hero-point b {
  display: block;
  color: var(--dark);
  font-size: 15px
}

.hero-point small {
  color: var(--muted)
}

.hero-visual {
  position: relative
}

.hero-visual .main-img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .8);
  animation: float 6s ease-in-out infinite
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(14, 37, 87, .13);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  animation: float 5s ease-in-out infinite
}

.float-card .dot {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--nix-blue), var(--nix-lime))
}

.float-card b {
  display: block;
  font-size: 14px;
  color: var(--dark)
}

.float-card small {
  display: block;
  color: var(--muted);
  font-size: 12px
}

.fc1 {
  left: -28px;
  top: 58px
}

.fc2 {
  right: -18px;
  bottom: 70px;
  animation-delay: 1.2s
}

.slider-controls {
  display: flex;
  gap: 9px;
  margin-top: 34px
}

.slider-controls button {
  width: 42px;
  height: 8px;
  border: 0;
  border-radius: 99px;
  background: #cfe2f5;
  cursor: pointer
}

.slider-controls button.active {
  width: 72px;
  background: linear-gradient(90deg, var(--nix-blue), var(--nix-lime))
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(14, 37, 87, .08);
  transition: .25s ease;
  position: relative;
  overflow: hidden
}

.card:after {
  content: "";
  position: absolute;
  inset: auto -30px -70px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(184, 217, 54, .14)
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(21, 158, 227, .28)
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(32, 61, 147, .1), rgba(21, 158, 227, .12), rgba(184, 217, 54, .18));
  font-size: 28px;
  margin-bottom: 18px
}

.card p {
  color: var(--muted);
  margin-bottom: 0
}

.soft {
  background: linear-gradient(180deg, #f6fbff 0, #fff 100%)
}

.dark-band {
  background: radial-gradient(circle at 10% 20%, rgba(21, 158, 227, .22), transparent 28%), radial-gradient(circle at 85% 80%, rgba(184, 217, 54, .20), transparent 30%), linear-gradient(135deg, #07152f, #102b78 52%, #0b1d4e);
  color: #dce8ff;
  position: relative;
  overflow: hidden
}

.dark-band h2,
.dark-band h3 {
  color: #fff
}

.dark-band .lead,
.dark-band p {
  color: #c8d8f4
}

.stat-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14)
}

.stat-card strong {
  font-size: 42px;
  line-height: 1;
  color: #fff;
  display: block
}

.stat-card span {
  color: #c9dbf7
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px
}

.section-title .lead {
  margin: 0
}

.feature-split {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 42px;
  align-items: center
}

.feature-img {
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line)
}

.checks {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none
}

.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #334b6c
}

.checks li:before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nix-green), var(--nix-lime));
  color: #082243;
  font-weight: 900;
  flex: none
}

.process {
  counter-reset: step
}

.process .card:before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 46px;
  font-weight: 900;
  color: rgba(32, 61, 147, .08)
}

.tech-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.tech-strip span {
  padding: 12px 15px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 900;
  color: #234064;
  box-shadow: 0 10px 24px rgba(14, 37, 87, .05)
}

.cta {
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--nix-blue), var(--nix-cyan) 55%, var(--nix-lime));
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative
}

.cta:after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18)
}

.cta h2 {
  color: #fff
}

.cta p {
  margin: 0;
  color: #edf6ff
}

.breadcrumb {
  padding: 70px 0;
  background: radial-gradient(circle at 86% 20%, rgba(184, 217, 54, .24), transparent 32%), linear-gradient(135deg, #f7fcff, #eef8ff);
  border-bottom: 1px solid var(--line)
}

.breadcrumb h1 {
  font-size: clamp(34px, 5vw, 58px)
}

.breadcrumb p {
  max-width: 780px
}

.content-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 16px 44px rgba(14, 37, 87, .07)
}

.two-col-text {
  columns: 2;
  column-gap: 42px
}

.article {
  max-width: 900px;
  margin: auto
}

.article h2 {
  font-size: 34px;
  margin-top: 38px
}

.article p,
.article li {
  color: #485d7b
}

.blog-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  background: #f2f9ff
}

.blog-card .meta {
  font-size: 13px;
  color: var(--nix-blue);
  font-weight: 900;
  margin: 15px 0 8px
}

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

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: #fff
}

.form textarea {
  min-height: 120px;
  resize: vertical
}

.form .success {
  display: none;
  padding: 14px 16px;
  background: #edfbe8;
  border: 1px solid rgba(89, 200, 71, .35);
  border-radius: 14px;
  color: #214a1b;
  font-weight: 800
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 760px
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left
}

th {
  background: #f3f9ff;
  color: #17376a;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em
}

td {
  color: #405878
}

.badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 99px;
  background: rgba(184, 217, 54, .18);
  color: #214a1b;
  font-weight: 900;
  font-size: 12px
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden
}

.faq-q {
  width: 100%;
  padding: 19px 20px;
  background: #fff;
  border: 0;
  text-align: left;
  font: inherit;
  font-weight: 900;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer
}

.faq-a {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted)
}

.faq-item.active .faq-a {
  display: block
}

.site-footer {
  background: #07152f;
  color: #cddafa;
  position: relative;
  overflow: hidden
}

.site-footer:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(21, 158, 227, .18), transparent 30%), radial-gradient(circle at 90% 80%, rgba(184, 217, 54, .16), transparent 32%)
}

.footer-top {
  position: relative;
  padding: 76px 0 34px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .85fr .9fr;
  gap: 34px
}

.footer-logo {
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  width: 240px;
  margin-bottom: 18px
}

.footer-logo img {
  height: auto
}

.site-footer h3 {
  color: #fff;
  font-size: 18px
}

.site-footer p {
  color: #b9c8e7
}

.footer-links {
  display: grid;
  gap: 10px
}

.footer-links a {
  color: #cddafa
}

.footer-links a:hover {
  color: #b8d936
}

.contact-line {
  display: flex;
  gap: 12px;
  margin: 10px 0;
  color: #cddafa
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 14px
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 13px;
  background: rgba(255, 255, 255, .08);
  color: #fff
}

.newsletter button {
  border: 0;
  border-radius: 12px;
  padding: 0 15px;
  background: var(--nix-lime);
  font-weight: 900;
  color: #09213d
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #aebfe1;
  font-size: 14px
}

.social {
  display: flex;
  gap: 10px
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .1);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .65s ease
}

.reveal.show {
  opacity: 1;
  transform: none
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

@media(max-width:1050px) {
  .nav-cta {
    display: none
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 132px;
    max-height: calc(100vh - 150px);
    overflow: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px
  }

  .nav-menu.open {
    display: flex
  }

  .hamburger {
    display: flex
  }

  .nav-item {
    height: auto;
    display: block
  }

  .nav-link {
    height: auto;
    padding: 14px 15px;
    justify-content: space-between
  }

  .mega {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    width: 100%;
    box-shadow: none;
    border-radius: 18px;
    padding: 14px;
    grid-template-columns: 1fr;
    top: auto
  }

  .nav-item.open .mega {
    display: grid
  }

  .nav-item:hover .mega {
    display: none
  }

  .nav-item.open:hover .mega {
    display: grid
  }

  .topbar .links span:nth-child(2) {
    display: none
  }

  .slide {
    grid-template-columns: 1fr
  }

  .hero {
    min-height: auto
  }

  .hero-visual {
    max-width: 620px
  }

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

  .grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .feature-split,
  .grid-2,
  .footer-grid,
  .cta {
    grid-template-columns: 1fr
  }

  .section-title {
    display: block
  }

  .two-col-text {
    columns: 1
  }
}

@media(max-width:640px) {
  .container {
    width: min(100% - 26px, var(--max))
  }

  .topbar {
    display: none
  }

  .nav {
    height: 74px
  }

  .brand img {
    height: 46px
  }

  .nav-menu {
    top: 86px
  }

  .slider {
    padding-top: 38px
  }

  .hero-points {
    grid-template-columns: 1fr
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr
  }

  .section {
    padding: 64px 0
  }

  .section-sm {
    padding: 42px 0
  }

  .card,
  .content-block {
    padding: 22px
  }

  .cta {
    padding: 28px
  }

  .footer-bottom {
    display: block
  }

  .float-card {
    display: none
  }

  .newsletter {
    display: block
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
    height: 46px;
    margin-bottom: 8px
  }
}


/* V7 responsive/hero fixes */
html,
body {
  max-width: 100%;
  overflow-x: hidden
}

.site-header,
.topbar,
main,
footer {
  max-width: 100vw
}

.container {
  max-width: var(--max)
}

.hero {
  width: 100%;
  max-width: 100vw;
  overflow: hidden
}

/* .slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
} */

.slide {
  width: 100%;
  max-width: 100%;
  min-width: 0
}

.hero-copy,
.hero-visual {
  min-width: 0;
  max-width: 100%
}

.hero-visual {
  padding: 18px;
  isolation: isolate
}

.hero-visual .main-img {
  width: 100%;
  max-width: 620px;
  margin-inline: auto
}

.fc1 {
  left: 12px
}

.fc2 {
  right: 12px
}

.hero-points {
  min-width: 0
}

.hero-point {
  min-width: 0
}

.slider-controls {
  position: relative;
  z-index: 5
}

.brand {
  min-width: 190px;
  max-width: 255px
}

.brand img {
  max-width: 100%;
  height: 54px;
  object-fit: contain
}

.nav-menu {
  min-width: 0
}

.nav-link {
  white-space: nowrap
}

.mega {
  max-width: calc(100vw - 32px);
  overflow: hidden
}

.mega-list a {
  min-width: 0
}

.breadcrumb {
  position: relative;
  overflow: hidden
}

.breadcrumb:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(184, 217, 54, .20);
  z-index: 0
}

.crumb-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 34px;
  align-items: center
}

.crumb-copy {
  min-width: 0
}

.crumb-visual {
  justify-self: end;
  width: 100%;
  max-width: 420px
}

.crumb-visual img {
  width: 100%;
  border-radius: 30px;
  border: 1px solid rgba(220, 233, 246, .95);
  box-shadow: var(--shadow);
  background: #fff;
  animation: float 7s ease-in-out infinite
}

.page-insight {
  background: linear-gradient(180deg, #fff, #f6fbff)
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: stretch
}

.insight-panel {
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(14, 37, 87, .07);
  position: relative;
  overflow: hidden
}

.insight-panel:before {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(184, 217, 54, .18)
}

.mini-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px
}

.mini-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #f2f9ff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  color: #203d93
}

.content-block,
.card,
.stat-card,
.feature-img,
.main-img {
  max-width: 100%
}

.grid {
  min-width: 0
}

.footer-grid {
  min-width: 0
}

.footer-grid>* {
  min-width: 0
}

.contact-line span {
  word-break: break-word
}

.table-wrap {
  max-width: 100%
}

@media(max-width:1180px) {
  .nav {
    gap: 10px
  }

  .nav-link {
    padding: 0 9px;
    font-size: 13px
  }

  .brand {
    min-width: 160px
  }

  .brand img {
    height: 50px
  }

  .mega {
    grid-template-columns: 1fr 1fr 1fr
  }
}

@media(max-width:1050px) {
  .site-header {
    position: sticky
  }

  .nav-menu {
    z-index: 1100
  }

  .crumb-grid,
  .insight-grid {
    grid-template-columns: 1fr
  }

  .crumb-visual {
    justify-self: start;
    max-width: 560px
  }

  .hero-visual {
    padding: 6px
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 58px)
  }

  .hero .lead {
    font-size: 16px
  }

  .slide {
    gap: 24px
  }

  .mega {
    overflow: visible
  }

  .mega-feature {
    padding: 18px
  }
}

@media(max-width:640px) {
  .container {
    width: calc(100% - 28px)
  }

  .brand {
    min-width: 0;
    max-width: 210px
  }

  .brand img {
    height: 42px
  }

  .hero {
    padding-top: 0
  }

  .slider {
    padding: 34px 0 42px
  }

  .slide {
    gap: 16px
  }

  .hero h1 {
    letter-spacing: -.035em
  }

  .btn-row {
    gap: 10px
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px
  }

  .hero-points {
    gap: 10px
  }

  .hero-point {
    padding: 13px
  }

  .hero-visual .main-img {
    border-radius: 22px
  }

  .slider-controls {
    justify-content: center;
    margin-top: 22px
  }

  .breadcrumb {
    padding: 46px 0
  }

  .breadcrumb h1 {
    font-size: clamp(30px, 10vw, 44px)
  }

  .crumb-grid {
    gap: 22px
  }

  .crumb-visual img {
    border-radius: 22px
  }

  .content-block .checks li,
  .checks li {
    font-size: 15px
  }

  .insight-panel {
    padding: 22px
  }

  .topbar .inner {
    height: auto
  }

  .footer-logo {
    width: 200px
  }

  .nav-menu {
    left: 10px;
    right: 10px
  }

  .grid {
    gap: 18px
  }

  table {
    min-width: 620px
  }
}

@media(max-width:380px) {
  .brand img {
    height: 36px
  }

  .nav {
    height: 68px
  }

  .nav-menu {
    top: 78px
  }

  .hero h1 {
    font-size: 32px
  }

  .pill {
    font-size: 11px
  }

  .hero-point b {
    font-size: 14px
  }

  .hero-point small {
    font-size: 12px
  }

  .section {
    padding: 52px 0
  }
}


/* V9 chatbot widget and assistant section */
.oti-section {
  padding: 36px 0 20px
}

.oti-showcase {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center
}

.oti-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 16px 44px rgba(14, 37, 87, .08)
}

.oti-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px
}

.oti-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f2f9ff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  color: var(--nix-blue)
}

.oti-preview-img {
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff
}

.oti-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--nix-blue), var(--nix-cyan));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(21, 94, 184, .28);
  display: flex;
  gap: 9px;
  align-items: center;
  cursor: pointer
}

.oti-launcher span {
  font-size: 20px
}

.oti-widget {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 1200;
  width: min(370px, calc(100vw - 22px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none
}

.oti-widget.open {
  display: block
}

.oti-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: linear-gradient(135deg, #f5fbff, #eef8ff)
}

.oti-head strong {
  display: block;
  color: var(--dark)
}

.oti-head small {
  color: var(--muted)
}

.oti-close {
  border: 0;
  background: #fff;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--nix-blue);
  font-size: 22px;
  cursor: pointer
}

.oti-messages {
  padding: 16px;
  max-height: 340px;
  overflow: auto;
  background: #fff
}

.bot-msg,
.user-msg {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 18px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5
}

.bot-msg {
  background: #f2f9ff;
  border: 1px solid var(--line);
  color: #35506e
}

.user-msg {
  background: linear-gradient(135deg, var(--nix-blue), var(--nix-cyan));
  color: #fff;
  margin-left: auto
}

.oti-chips {
  padding: 0 14px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.oti-chips button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--nix-blue);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  cursor: pointer
}

.oti-form {
  display: flex;
  gap: 8px;
  padding: 12px 14px 16px;
  border-top: 1px solid var(--line);
  background: #fff
}

.oti-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit
}

.oti-form button {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--nix-blue), var(--nix-cyan));
  color: #fff;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer
}

@media(max-width:960px) {
  .oti-showcase {
    grid-template-columns: 1fr
  }
}

@media(max-width:640px) {
  .oti-widget {
    right: 10px;
    bottom: 74px;
    width: calc(100vw - 20px)
  }

  .oti-launcher {
    right: 10px;
    bottom: 10px;
    padding: 11px 14px
  }

  .oti-launcher b {
    display: none
  }
}


/* V10 final graphics polish: no-logo PNG illustrations + V7 layout safety */
.hero,
.breadcrumb,
.section,
.soft,
.dark-band {
  overflow: hidden
}

.hero-visual .main-img,
.crumb-visual img,
.feature-img,
.blog-card img,
.card img,
.oti-preview-img {
  object-fit: cover;
  background: #fff
}

.hero-visual .main-img {
  aspect-ratio: 4/3;
  max-height: 520px
}

.crumb-visual img,
.feature-img {
  aspect-ratio: 4/3
}

.card img {
  aspect-ratio: 4/3
}

.blog-card img {
  aspect-ratio: 4/3;
  height: auto
}

.hero-visual {
  display: grid;
  place-items: center
}

.hero .slide {
  overflow: hidden
}

.float-card {
  max-width: calc(100% - 28px)
}

@media(max-width:1050px) {
  .hero-visual .main-img {
    max-height: none;
    max-width: 560px
  }

  .hero-visual {
    padding: 0
  }

  .slide {
    align-items: start
  }

  .crumb-visual img {
    max-width: 560px
  }
}

@media(max-width:640px) {

  .hero-visual .main-img,
  .crumb-visual img,
  .feature-img,
  .card img {
    border-radius: 18px
  }

  .hero-visual {
    margin-top: 12px
  }

  .hero .slide {
    grid-template-columns: 1fr
  }

  .hero-copy {
    max-width: 100%
  }
}

/* FINAL RESPONSIVE MENU FIX - keeps existing design, repairs mobile behaviour */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.hamburger {
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 5200;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.hamburger span {
  transition: transform .2s ease, opacity .2s ease;
}

.hamburger.active {
  border-color: rgba(32, 61, 147, .32);
  box-shadow: 0 12px 28px rgba(32, 61, 147, .14);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

  .site-header {
    z-index: 5100;
  }

  .nav {
    position: relative;
  }

  .nav-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: var(--nix-mobile-menu-top, 96px);
    width: auto;
    max-height: calc(100dvh - var(--nix-mobile-menu-top, 96px) - var(--nix-mobile-menu-gap, 12px));
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 5000;
    overscroll-behavior: contain;
    transform: translateY(-8px) scale(.98);
    transform-origin: top center;
  }

  .nav-menu.open {
    display: flex;
    transform: translateY(0) scale(1);
    animation: nixMobileMenuIn .18s ease both;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    min-height: 48px;
    border-radius: 15px;
    white-space: normal;
  }

  .nav-item.open > .nav-link,
  .nav-menu > li > .nav-link:hover {
    background: #f2f9ff;
    color: var(--nix-blue);
  }

  .nav-link .chev {
    margin-left: auto;
    transition: transform .18s ease;
  }

  .nav-item.open > .nav-link .chev {
    transform: rotate(180deg);
  }

  .mega {
    margin: 4px 0 12px;
    max-width: 100%;
    max-height: none;
    overflow: visible;
    border-color: rgba(220, 233, 246, .9);
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  }

  .mega-feature,
  .mega-col {
    min-width: 0;
  }

  .mega-list a {
    min-height: 42px;
    align-items: center;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .mega:before,
  .mega:after {
    display: none;
  }

  .nav-item:hover .mega,
  .nav-item:focus-within .mega,
  .nav-item.hover-open .mega {
    display: none;
  }

  .nav-item.open .mega,
  .nav-item.open:hover .mega,
  .nav-item.open:focus-within .mega {
    display: grid;
  }
}

@media(max-width:640px) {
  .nav-menu {
    left: 10px;
    right: 10px;
    border-radius: 22px;
    padding: 10px;
  }

  .mega {
    padding: 12px;
    border-radius: 17px;
  }

  .mega-feature {
    padding: 15px;
  }

  .mega-feature strong {
    font-size: 19px;
  }
}

@media(max-width:380px) {
  .nav-menu {
    left: 8px;
    right: 8px;
  }

  .nav-link {
    font-size: 13px;
    padding: 12px 13px;
  }
}

@keyframes nixMobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* MOBILE MEGA MENU FINAL PATCH - converts desktop mega grid into a true mobile accordion */
@media (max-width: 1050px) {
  .nav-menu,
  .nav-menu.open {
    box-sizing: border-box !important;
  }

  .nav-menu .nav-item {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .nav-menu .nav-link {
    height: auto !important;
    min-height: 54px !important;
    padding: 14px 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  .nav-menu .mega,
  .nav-menu .nav-item:hover .mega,
  .nav-menu .nav-item:focus-within .mega,
  .nav-menu .nav-item.hover-open .mega {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 6px 0 14px !important;
    padding: 14px !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow: visible !important;
    box-shadow: none !important;
    border-radius: 20px !important;
  }

  .nav-menu .nav-item.open > .mega,
  .nav-menu .nav-item.open:hover > .mega,
  .nav-menu .nav-item.open:focus-within > .mega {
    display: grid !important;
  }

  .nav-menu .mega-feature,
  .nav-menu .mega-col {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .nav-menu .mega-feature {
    min-height: auto !important;
    padding: 16px !important;
    border-radius: 18px !important;
  }

  .nav-menu .mega-feature strong {
    font-size: 21px !important;
    line-height: 1.16 !important;
    margin-bottom: 8px !important;
  }

  .nav-menu .mega-feature p {
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-bottom: 13px !important;
  }

  .nav-menu .mega-feature .btn {
    width: 100% !important;
    min-height: 44px !important;
    padding: 11px 14px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }

  .nav-menu .mega-col h4 {
    font-size: 11px !important;
    line-height: 1.2 !important;
    margin: 2px 0 8px !important;
  }

  .nav-menu .mega-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .nav-menu .mega-list a {
    width: 100% !important;
    min-height: 44px !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    background: rgba(245, 251, 255, .72) !important;
    border: 1px solid rgba(220, 233, 246, .78) !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .nav-menu .mega-list a:before {
    margin-top: 0 !important;
    flex: 0 0 8px !important;
  }
}

@media (max-width: 640px) {
  .nav {
    height: 76px !important;
  }

  .nav-menu {
    left: 8px !important;
    right: 8px !important;
    padding: 10px !important;
    border-radius: 22px !important;
  }

  .nav-menu .nav-link {
    min-height: 52px !important;
    padding: 13px 16px !important;
    font-size: 15px !important;
  }

  .nav-menu .mega {
    padding: 12px !important;
    border-radius: 18px !important;
  }

  .nav-menu .mega-feature {
    padding: 14px !important;
  }

  .nav-menu .mega-feature strong {
    font-size: 20px !important;
  }
}

@media (max-width: 380px) {
  .nav-menu .nav-link {
    font-size: 14px !important;
  }

  .nav-menu .mega-feature p {
    font-size: 13px !important;
  }

  .nav-menu .mega-list a {
    font-size: 13px !important;
  }
}

/* MOBILE OPEN MENU SCROLL FIX - keeps logo and close button visible while menu content scrolls */
@media (max-width: 1050px) {
  body.mobile-menu-open .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 7600 !important;
    background: rgba(255, 255, 255, .96) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    box-shadow: 0 12px 35px rgba(32, 61, 147, .10) !important;
  }

  body.mobile-menu-open .nav {
    height: var(--nix-mobile-header-height, 82px) !important;
  }

  body.mobile-menu-open .brand,
  body.mobile-menu-open .hamburger {
    position: relative !important;
    z-index: 7620 !important;
  }

  body.mobile-menu-open .nav-menu,
  body.mobile-menu-open .nav-menu.open {
    position: fixed !important;
    top: calc(var(--nix-mobile-header-height, 82px) + 10px) !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    max-height: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    z-index: 7580 !important;
  }
}

@media (max-width: 640px) {
  body.mobile-menu-open .nav {
    height: var(--nix-mobile-header-height, 76px) !important;
  }

  body.mobile-menu-open .nav-menu,
  body.mobile-menu-open .nav-menu.open {
    top: calc(var(--nix-mobile-header-height, 76px) + 8px) !important;
  }
}
