/* ============================================================================
   Header, mega-menu, mobile navigation
   ========================================================================= */

.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
}

/* --- Announcement strip ---------------------------------------------------
   Above the band, on the page background. It scrolls out of the way rather
   than sticking, because it is a notice and not navigation. */

.hdr__announce {
  transition: opacity var(--d-base) var(--ease-out-soft),
              max-height var(--d-base) var(--ease-out-soft);
  overflow: hidden;
  max-height: 3.5rem;
}
html.js .mega.is-open .mega__promo.mega-in::after{
    height:0;
}
.hdr.is-scrolled .hdr__announce { opacity: 0; max-height: 0; pointer-events: none; }

.hdr__announce-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
}
.hdr__announce-msg {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  flex: 1;
}
.hdr__announce-side {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  flex: none;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}
.hdr__announce-side:hover { color: var(--blue-600); }

/* --- The band -------------------------------------------------------------
   One flat surface spanning the viewport, on the page grey rather than white.
   It is not the page's background repeated: the hero opens on a blue-tinted
   wash, so a neutral grey band reads as a distinct plane above it — which is
   the whole reason the bar can be flat and still separate from the page.

   Translucent at rest so the hero's wash still moves underneath it, near-solid
   once scrolled. Translucency is worth having only while what shows through
   reads as texture; much past .9 the page copy underneath stays legible
   against the logo. */

.hdr__bar {
  position: relative;
  background: rgba(240, 243, 248, .82);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  box-shadow: inset 0 -1px 0 rgba(203, 213, 227, .55);
  transition: background-color var(--d-base) var(--ease-out-soft),
              box-shadow var(--d-base) var(--ease-out-soft);
}
.hdr.is-scrolled .hdr__bar {
  background: rgba(240, 243, 248, .96);
  box-shadow: inset 0 -1px 0 var(--border-strong), var(--e-3);
}

/* Reading progress, on the band's bottom edge.

   The band is full-bleed, so the rule simply spans it. The earlier version had
   to reproduce .container--wide's cap-and-centre geometry by hand: it
   underlined a pill drawn inside that container, while this element is a child
   of the viewport-wide header, and the two agreed only below the cap — 212px
   of overhang either side at 1920, 532px at 2560.

   Sized by inset alone, never a translate: Framer owns this element's
   transform for the scaleX progress. */
.hdr__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  transform-origin: 0 50%;
  background: var(--loop-gradient);
  opacity: 0;
  transition: opacity var(--d-base) var(--ease-out-soft);
}
.hdr.is-scrolled .hdr__progress { opacity: 1; }

.hdr__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
  min-height: 4.5rem;
  padding-block: 0.5rem;
}

/* --- Brand ---------------------------------------------------------------- */

.hdr__brand {
  display: flex;
  align-items: center;
  min-height: 44px;
  flex: none;
  border-radius: var(--r-sm);
  text-decoration: none;
}
/* Larger than it was under the pill. The logo is a lockup, not a wordmark —
   "By OnPoint Insights" sits under "SmartRoots" inside the same image — so a
   height that suits a one-line mark leaves the second line at the threshold of
   legibility. The band has the room the pill did not. */
.hdr__logo {
  width: auto;
  height: clamp(1.75rem, 1.25rem + 1.35vw, 2.4rem);
  transition: transform var(--d-base) var(--ease-out-expo);
}
.hdr__brand:hover .hdr__logo { transform: scale(1.02); }

/* --- Desktop nav ---------------------------------------------------------- */

.hdr__nav-wrap { flex: 1; display: none; justify-content: center; }

/* Air between the labels rather than around them. Against a white pill the
   triggers needed their own padded hit shapes to look deliberate; on a flat
   band the labels read as one row of peers, and the spacing is what separates
   them. Padding is still 44px tall for the touch target. */
.hdr__list { display: flex; align-items: center; gap: clamp(0.15rem, 0.9vw, 0.9rem); }

.hdr__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.55rem;
  min-height: 44px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: -0.002em;
  /* Full-strength text, not the secondary tier. On the pill the nav competed
     with the logo beside it and was stepped back; on the band it is the only
     thing in the middle of the row and reads as under-baked at 7.9:1 grey. */
  color: var(--text);
  white-space: nowrap;
  position: relative;
  transition: color var(--d-fast) var(--ease-out-soft), background-color var(--d-fast) var(--ease-out-soft);
}
.hdr__trigger:hover { color: var(--blue-700); background: var(--blue-100); }
.hdr__trigger.is-open { color: var(--blue-800); background: var(--blue-200); }

/* Active-section marker: a yellow dot, not a colour change, so it is not
   carried by colour alone and survives at any contrast setting. */
.hdr__trigger.is-active { color: var(--text); font-weight: 600; }
.hdr__trigger.is-active::after {
  content: '';
  position: absolute;
  bottom: 0.24rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow-400);
}

/* A tab with no dropdown: the same trigger, drawn as a link. */
.hdr__trigger--link,
.mnav__trigger--link { text-decoration: none; }

.hdr__caret { transition: transform var(--d-base) var(--ease-out-expo); opacity: .6; }
.hdr__trigger.is-open .hdr__caret { transform: rotate(180deg); opacity: 1; }

/* --- Mega menu ------------------------------------------------------------
   Centred with auto margins rather than `left:50% + translateX(-50%)`:
   Framer Motion writes `transform` while animating, which would clobber a
   transform-based centring and throw the panel off-screen.

   `top` is pulled up to the wrapper's own bottom and the gap is re-created as
   padding INSIDE this element. That matters: the padding is part of .mega's
   hit area, so the pointer never crosses a strip belonging to neither the
   trigger nor the panel — which is what made the links unreachable on hover.
   ------------------------------------------------------------------------ */
.mega {
  position: absolute;
  top: calc(100% - 0.9rem);
  left: 0;
  right: 0;
  margin-inline: auto;
  width: min(70rem, calc(100vw - 3rem));
  padding-top: 1.1rem;
}

.mega__panel {
  display: grid;
  grid-template-columns: 17.5rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--r-2xl);
  background: var(--white);
  box-shadow: var(--e-4), inset 0 0 0 1px var(--border);
  overflow: hidden;
}

/* --- Feature card: the panel's colour and its graphic --------------------- */

.mega__feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, var(--blue-600) 0%, var(--blue-800) 55%, var(--blue-900) 100%);
  color: #fff;
  text-decoration: none;
  transition: transform var(--d-base) var(--ease-out-expo),
              box-shadow var(--d-base) var(--ease-out-soft);
}
.mega__feature:hover { transform: translateY(-2px); box-shadow: var(--e-3); }

/* The brand loop as a watermark: large enough that its silhouette reads, low
   enough in opacity that it stays behind the copy. At half opacity and a
   smaller size the gradient's mid-point showed as a stray teal smudge instead
   of a shape. */
.mega__feature-loop {
  position: absolute;
  left: -18%;
  bottom: -34%;
  width: 150%;
  height: auto;
  opacity: 0.22;
  z-index: -1;
  pointer-events: none;
  transition: transform 0.7s var(--ease-out-expo), opacity 0.7s var(--ease-out-soft);
}
.mega__feature:hover .mega__feature-loop { transform: translate3d(2%, -3%, 0) scale(1.04); opacity: 0.3; }

.mega__feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .16);
  color: var(--yellow-300);
  margin-bottom: 1.1rem;
  transition: background-color var(--d-base) var(--ease-out-soft);
}
.mega__feature:hover .mega__feature-icon { background: rgba(255, 255, 255, .26); }

.mega__feature-title {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 96, 'wdth' 100;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 0.55rem;
}
.mega__feature-copy {
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: var(--text-on-ink-2);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega__feature-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  background: var(--yellow-300);
  color: var(--ink-900);
  font-size: var(--fs-xs);
  font-weight: 700;
  transition: gap var(--d-base) var(--ease-out-expo),
              background-color var(--d-fast) var(--ease-out-soft);
}
.mega__feature:hover .mega__feature-cta { gap: 0.75rem; background: var(--yellow-400); }

/* --- The Solutions panel ---------------------------------------------------
   The owner's own design for this one menu: a deep blue promo column on the
   left, six solution cards in two columns on the right. Every other group
   keeps the feature-card layout above.                                      */

.mega__panel--sol { grid-template-columns: 20rem minmax(0, 1fr); gap: 0; padding: 0; }

.mega__promo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.9rem 1.75rem 7rem;
  color: #fff;
  text-decoration: none;
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(90, 150, 220, .35) 0%, transparent 60%),
    linear-gradient(165deg, #0E3F86 0%, #0C3A7C 45%, #0A2F66 100%);
}
.mega__promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--text-on-ink-2);
}
.mega__promo-eyebrow i {
  width: 1.6rem;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow-300);
}
.mega__promo-title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 96, 'wdth' 100;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.mega__promo-body {
  margin-top: 0.9rem;
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--text-on-ink-2);
}
.mega__promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--r-pill);
  background: var(--yellow-300);
  color: var(--ink-900);
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: gap var(--d-base) var(--ease-out-expo),
              background-color var(--d-fast) var(--ease-out-soft);
}
.mega__promo:hover .mega__promo-cta { gap: 0.8rem; background: var(--yellow-400); }
/* Sits along the foot of the column, behind the copy. */
.mega__promo-art {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  z-index: -1;
  width: 100%;
  height: auto;
  color: rgba(255, 255, 255, .34);
  pointer-events: none;
}
/* The park drawing is taller than the civic one, so it gets its own clearance
   under the copy. */
.mega__promo-art--park { bottom: 0; color: rgba(255, 255, 255, .42); }
.mega__panel--serve .mega__promo { padding-bottom: 8.75rem; }

.mega__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-content: start;
  padding: 0.6rem;
}
.mega__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  height: 100%;
  padding: 1rem;
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: background-color var(--d-base) var(--ease-out-soft);
}
.mega__card:hover { background: var(--blue-50); }
/* Rounded squares, as in the owner's design, not circles. */
.mega__card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 13px;
}
/* One tint per solution, as in the design. */
.mega__card-icon.is-blue   { background: #DCEAFB; color: var(--blue-600); }
.mega__card-icon.is-mint   { background: #D8F0E4; color: #12795A; }
.mega__card-icon.is-orange { background: #FCE3D8; color: #C1502A; }
.mega__card-icon.is-green  { background: #E2F1D9; color: #3F7A2E; }
.mega__card-icon.is-violet { background: #E6E1FA; color: #5B45C4; }
.mega__card-icon.is-sky    { background: #DAE9FA; color: #2062A8; }

.mega__card-body { display: grid; gap: 0.35rem; min-width: 0; }
.mega__card-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.mega__card-title svg { color: var(--blue-500); transition: transform var(--d-base) var(--ease-out-expo); }
.mega__card:hover .mega__card-title svg { transform: translateX(3px); }
/* 12px exactly, at the owner's request — set in px rather than rem so it
   cannot drift with the root size. */
.mega__card-blurb { font-size: 12px; line-height: 1.55; color: var(--text-secondary); }
.mega__card-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.25rem; }
.mega__tag {
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-pill);
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
}

/* --- The Who We Serve panel -------------------------------------------------
   The same promo column, and two large cards rather than six small ones.    */

.mega__panel--serve { grid-template-columns: 20rem minmax(0, 1fr); gap: 0; padding: 0; }

.mega__serve {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  padding: 1.25rem;
}
/* The rule between the two cards, as in the design. */
.mega__serve > li + li { border-left: 1px solid var(--border); }

.mega__serve-card {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
  height: 100%;
  padding: 1rem 1.35rem;
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: background-color var(--d-base) var(--ease-out-soft);
}
.mega__serve-card:hover { background: var(--blue-50); }
.mega__serve-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background: #DCEAFB;
  color: var(--blue-700);
}
.mega__serve-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink-900);
}
/* 12px, matching the Solutions cards, at the owner's request. */
.mega__serve-blurb { font-size: 12px; line-height: 1.55; color: var(--text-secondary); }
.mega__serve-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--blue-600);
  transition: gap var(--d-base) var(--ease-out-expo);
}
.mega__serve-card:hover .mega__serve-cta { gap: 0.8rem; }

@media (max-width: 1100px) {
  .mega__panel--sol,
  .mega__panel--serve { grid-template-columns: minmax(0, 1fr); }
  .mega__promo { padding-bottom: 5.5rem; }
  .mega__cards { padding: 0.75rem; }
  .mega__serve > li + li { border-left: 0; border-top: 1px solid var(--border); }
}

/* --- Link grid ------------------------------------------------------------ */

.mega__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.15rem;
  align-content: start;
}

.mega__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: var(--r-lg);
  text-decoration: none;
  position: relative;
  transition: background-color var(--d-base) var(--ease-out-soft);
}
.mega__link:hover { background: var(--blue-100); }

.mega__link-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: var(--r-sm);
  background: var(--blue-100);
  color: var(--blue-600);
  transition: background-color var(--d-base) var(--ease-out-soft),
              color var(--d-base) var(--ease-out-soft),
              transform var(--d-base) var(--ease-out-expo);
}
.mega__link:hover .mega__link-icon,
.mega__link:focus-visible .mega__link-icon {
  background: var(--blue-500);
  color: #fff;
  transform: scale(1.06) rotate(-3deg);
}

.mega__link-text { min-width: 0; display: block; }
.mega__link-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.1rem;
  transition: color var(--d-fast) var(--ease-out-soft);
}
.mega__link:hover .mega__link-title { color: var(--blue-700); }

.mega__link-blurb {
  display: -webkit-box;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mega__link-arrow {
  align-self: center;
  flex: none;
  opacity: 0;
  transform: translateX(-6px);
  color: var(--blue-500);
  transition: opacity var(--d-base) var(--ease-out-soft),
              transform var(--d-base) var(--ease-out-expo);
}
.mega__link:hover .mega__link-arrow,
.mega__link:focus-visible .mega__link-arrow { opacity: 1; transform: translateX(0); }

/* --- Actions -------------------------------------------------------------- */

.hdr__actions { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; flex: none; }

/* The CTA keeps its shape — pill, near-black label, blue arrow disc — and
   loses its yellow glow. --e-yellow is sized to lift a button off a section
   surface; inside a 72px band it spills onto the hairline below and makes the
   band look smudged rather than the button look raised. */
.hdr__cta { display: none; box-shadow: none; }
.hdr__cta:hover { box-shadow: 0 10px 22px -14px rgba(201, 201, 21, .8); }

.hdr__burger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  color: var(--text);
  transition: background-color var(--d-fast) var(--ease-out-soft);
}
.hdr__burger:hover { background: rgba(12, 22, 38, .05); }

.hdr__burger-box { display: block; width: 20px; height: 14px; position: relative; }
.hdr__burger-box i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.8px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--d-base) var(--ease-out-expo), opacity var(--d-fast) linear;
}
.hdr__burger-box i:nth-child(1) { top: 0; }
.hdr__burger-box i:nth-child(2) { top: 6.1px; }
.hdr__burger-box i:nth-child(3) { top: 12.2px; }
.hdr__burger-box.is-open i:nth-child(1) { transform: translateY(6.1px) rotate(45deg); }
.hdr__burger-box.is-open i:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.hdr__burger-box.is-open i:nth-child(3) { transform: translateY(-6.1px) rotate(-45deg); }

/* --- Mobile nav ----------------------------------------------------------- */

.mnav {
  position: fixed;
  inset: 4.5rem 0 0 0;
  background: var(--page);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid var(--border);
}
.mnav__inner {
  padding: 1.25rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.mnav__group { border-bottom: 1px solid var(--border); }

.mnav__trigger {
  width: 100%;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 96, 'wdth' 100;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.014em;
  color: var(--text);
  text-align: left;
}
.mnav__plus { color: var(--blue-500); flex: none; transition: transform var(--d-base) var(--ease-out-expo); }
.mnav__trigger.is-open .mnav__plus { transform: rotate(135deg); }
.mnav__trigger.is-open .mnav__plus-v { opacity: 1; }

.mnav__sub { overflow: hidden; }
.mnav__sub li { border-top: 1px dashed var(--border); }
.mnav__sub li:first-child { border-top: 0; }
.mnav__sub a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.4rem 0 0.4rem 1rem;
  font-size: var(--fs-sm);
  font-weight: 550;
  color: var(--text-secondary);
  text-decoration: none;
}
.mnav__sub a:hover { color: var(--blue-600); }
.mnav__sub li:last-child a { padding-bottom: 0.9rem; }

.mnav__foot { margin-top: auto; padding-top: 2rem; }
.mnav__foot .btn { width: 100%; }

/* Book a demo popup */
#bookDemo .modal-dialog-centered {
  max-width: 1140px;
}

#bookDemo .modal-content {
  background-color: transparent;
  border: 0;
}

#bookDemo .modal-body {
  padding: 0;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
}

.see_how_it_works {
  border-radius: 20px 0 0 20px;
  background-color: var(--color-primary-yellow);
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text_block_wrapper {
  font-weight: 200;
}

.text_block_wrapper > p {
  font-size: var(--p-size-18);
}

.see_how_it_works_img {
  border-radius: 20px;
  margin-top: 57px;
}

.book_a_demo_form_container {
  padding-inline: 58px;
  background-color: white;
  border-radius: 0 20px 20px 0;
}

.book_a_demo_form_container .contact_us_form {
  gap: 30px 18px;
}

.book_a_demo_form_container .nrpa_primary_btn {
  padding-right: 0;
}

.nrpa_modal_close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: auto;
  padding: 0;
  cursor: pointer;
}

.text_block_list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nrpa_footer_bot_nav__container a {
  color: var(--color-text);
}
.nrpa_lets_connect_top_right_svg,
.nrpa_lets_connect_bottom_left_svg {
  position: absolute;
  border-radius: var(--border-radius);
}

.nrpa_lets_connect_top_right_svg {
  right: 0;
  top: 0;
}

.nrpa_lets_connect_bottom_left_svg {
  left: 0;
  bottom: 0;
}
.nrpa_contact_conersation {
  padding-top: 50px;
  padding-bottom: 50px;
}
/* ***************************popup*********************************** */
#bookDemo .modal-dialog-centered {
  max-width: 1140px;
}

#bookDemo .modal-content {
  background-color: transparent;
  border: 0;
}

#bookDemo .modal-body {
  padding: 0;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
}

.see_how_it_works {
  border-radius: 20px 0 0 20px;
  background-color: var(--color-primary);
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text_block_wrapper {
  font-weight: 200;
}

.text_block_wrapper > p {
  font-size: var(--p-size-18);
}

.see_how_it_works_img {
  border-radius: 20px;
  margin-top: 57px;
}

.book_a_demo_form_container {
  padding-inline: 58px;
  background-color: white;
  border-radius: 0 20px 20px 0;
}

.book_a_demo_form_container .contact_us_form {
  gap: 30px 18px;
}

.book_a_demo_form_container .nrpa_primary_btn {
  padding-right: 0;
}

.nrpa_modal_close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: auto;
  padding: 0;
  cursor: pointer;
}

.text_block_list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nrpa_footer_bot_nav__container a {
  color: var(--color-text);
}
.text_block_list_item p,
.text_block_wrapper p {
  color: white;
}

/* =========================================================
   BOOK DEMO MODAL
========================================================= */

.nrpa-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    padding: 20px;

    background: rgba(0, 0, 0, 0.6);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    overflow-y: auto;
}

.nrpa-modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   MODAL DIALOG
========================================================= */

.nrpa-modal-dialog {
    position: relative;

    width: 100%;
    max-width: 1200px;

    height: min(800px, calc(100vh - 40px));

    margin: auto;

    transform: translateY(20px) scale(0.98);

    transition: transform 0.3s ease;
}

.nrpa-modal.show .nrpa-modal-dialog {
    transform: translateY(0) scale(1);
}


/* =========================================================
   MODAL CONTENT
========================================================= */

.nrpa-modal-content {
    position: relative;

    width: 100%;
    height: 100%;

    /* background: #fff; */

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}


/* =========================================================
   MODAL BODY
========================================================= */

.nrpa-modal-body {
    position: relative;

    display: flex;

    width: 100%;
    height: 100%;

    padding: 0;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.nrpa_modal_close {
    position: absolute;

    top: 12px;
    right: 18px;

    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    margin: 0;
    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.nrpa_modal_close svg {
    display: block;

    width: 24px;
    height: 24px;
}

.nrpa_modal_close:hover {
    opacity: 0.65;
}


/* =========================================================
   LEFT BLUE SECTION
========================================================= */

.see_how_it_works {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 43%;
    min-width: 43%;
    height: 100%;

    padding: 45px 45px 0;

    background: #2869d1;

    color: #fff;

    overflow: hidden;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.see_how_it_works_content {
    position: relative;

    z-index: 2;

    width: 100%;
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.nrpa_highlight_text {
    display: inline-flex;
    align-items: center;

    min-height: 36px;

    margin-bottom: 12px;
    padding: 5px 13px;

    border-radius: 50px;

    background: #f5f572;

    color: #111;

    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;

    text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.see_how_it_works h2 {
    margin: 0;

    color: #fff;

    font-size: 40px;
    line-height: 1.15;
    font-weight: 500;
}

.see_how_it_works h2 span {
    color: #fff;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.text_block_wrapper {
    margin-top: 35px;
}

.text_block_wrapper > p {
    margin: 0 0 20px;

    color: #fff;

    font-size: 20px;
    line-height: 1.45;
}


/* =========================================================
   BENEFITS LIST
========================================================= */

.text_block_list {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.text_block_list_item {
    display: flex;
    align-items: center;

    gap: 7px;
}

.text_block_list_item svg {
    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    display: block;
}

.text_block_list_item p {
    margin: 0;

    color: #fff;

    font-size: 17px;
    line-height: 1.4;
}


/* =========================================================
   IMAGE
========================================================= */

.see_how_it_works_img_container {
    position: absolute;

    left: 45px;
    right: 45px;
    bottom: 60px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    height: 40%;

    z-index: 1;
}

.see_how_it_works_img {
    display: block;

    width: 100%;
    max-width: 480px;
    height: auto;

    margin: 0 auto;

    object-fit: contain;
    object-position: bottom center;

    border-radius: 25px;
}


/* =========================================================
   RIGHT FORM
========================================================= */

.book_a_demo_form_container {
    width: 57%;
    height: 100%;

    padding: 55px 60px 35px;

    background: #fff;

    overflow-y: auto;
}


/* =========================================================
   GRAVITY FORMS RESET
========================================================= */

.book_a_demo_form_container .gform_wrapper {
    margin: 0 !important;
}

.book_a_demo_form_container .gform_heading {
    display: none !important;
}

.book_a_demo_form_container .gform_fields {
    row-gap: 0 !important;
    column-gap: 22px !important;
}


/* =========================================================
   GRAVITY FORM COLUMNS
========================================================= */

.book_a_demo_form_container .gfield--width-half {
    grid-column: span 6 !important;
}

.book_a_demo_form_container .gfield--width-full {
    grid-column: 1 / -1 !important;
}


/* =========================================================
   LABEL
========================================================= */

.book_a_demo_form_container .gfield_label {
    margin-bottom: 7px !important;

    color: #071b3b !important;

    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
}

.book_a_demo_form_container .gfield_required {
    color: #e00000 !important;
}


/* =========================================================
   INPUTS
========================================================= */

.book_a_demo_form_container input[type="text"],
.book_a_demo_form_container input[type="email"],
.book_a_demo_form_container input[type="tel"],
.book_a_demo_form_container input[type="number"],
.book_a_demo_form_container input[type="url"],
.book_a_demo_form_container select,
.book_a_demo_form_container textarea {
    width: 100% !important;

    min-height: 47px;

    padding: 9px 15px !important;

    border: 1px solid #bdcce3 !important;
    border-radius: 9px !important;

    background: #fff !important;

    color: #182a44 !important;

    font-family: inherit !important;
    font-size: 15px !important;
    line-height: 1.4 !important;

    outline: none;

    box-sizing: border-box !important;
}

.book_a_demo_form_container input::placeholder,
.book_a_demo_form_container textarea::placeholder {
    color: #9aa5b5;

    opacity: 1;
}

.book_a_demo_form_container input:focus,
.book_a_demo_form_container select:focus,
.book_a_demo_form_container textarea:focus {
    border-color: #2869d1 !important;

    box-shadow: 0 0 0 2px rgba(40, 105, 209, 0.08);
}


/* =========================================================
   TEXTAREA
========================================================= */

.book_a_demo_form_container textarea {
    min-height: 76px !important;

    resize: vertical;
}


/* =========================================================
   FIELD SPACING
========================================================= */

.book_a_demo_form_container .gfield {
    margin-bottom: 20px !important;
}


/* =========================================================
   CHECKBOXES
========================================================= */

.book_a_demo_form_container .gfield_checkbox {
    display: flex !important;
    flex-direction: column;

    gap: 17px !important;

    margin: 5px 0 0 !important;
}

.book_a_demo_form_container .gchoice {
    display: flex !important;
    align-items: flex-start;

    gap: 14px;
}

.book_a_demo_form_container input[type="checkbox"] {
    flex: 0 0 25px;

    width: 25px !important;
    height: 25px !important;

    margin: 0 !important;

    appearance: none;
    -webkit-appearance: none;

    border: 1px solid #2869d1 !important;
    border-radius: 5px !important;

    background: #fff !important;

    position: relative;

    cursor: pointer;
}

.book_a_demo_form_container input[type="checkbox"]:checked {
    background: #2869d1 !important;
}

.book_a_demo_form_container input[type="checkbox"]:checked::after {
    content: "";

    position: absolute;

    left: 8px;
    top: 4px;

    width: 6px;
    height: 11px;

    border: solid #fff;

    border-width: 0 2px 2px 0;

    transform: rotate(45deg);
}

.book_a_demo_form_container .gchoice label {
    /* margin: 0 !important; */

    color: #071b3b !important;

    font-size: 15px !important;
    line-height: 1.4 !important;
}


/* =========================================================
   FORM FOOTER
========================================================= */

.book_a_demo_form_container .gform_footer {
    margin-top: 15px !important;
    padding: 0 !important;
}


/* =========================================================
   TABLET / SMALL LAPTOP
   992px - 1199px
========================================================= */

@media (max-width: 1199px) {

    .nrpa-modal {
        padding: 15px;
    }

    .nrpa-modal-dialog {
        max-width: 1100px;

        height: min(760px, calc(100vh - 30px));
    }

    .see_how_it_works {
        padding: 40px 35px 0;
    }

    .see_how_it_works h2 {
        font-size: 36px;
    }

    .text_block_wrapper {
        margin-top: 28px;
    }

    .text_block_wrapper > p {
        font-size: 18px;
    }

    .text_block_list_item p {
        font-size: 16px;
    }

    .see_how_it_works_img_container {
        left: 35px;
        right: 35px;
    }

    .book_a_demo_form_container {
        padding: 50px 45px 30px;
    }

}


/* =========================================================
   TABLET
   <= 991px
========================================================= */

@media (max-width: 991px) {

    .nrpa-modal {
        align-items: flex-start;

        padding: 15px;

        overflow-y: auto;
    }

    .nrpa-modal-dialog {
        width: 100%;
        max-width: 750px;

        height: auto;

        margin: 15px auto;
    }

    .nrpa-modal-content {
        height: auto;

        max-height: none;

        overflow: hidden;
    }

    .nrpa-modal-body {
        display: flex;
        flex-direction: column;

        height: auto;
    }


    /* BLUE SECTION */

    .see_how_it_works {
        width: 100%;
        min-width: 100%;
        height: auto;

        padding: 45px 40px 35px;
    }

    .see_how_it_works_content {
        width: 100%;
    }

    .see_how_it_works h2 {
        font-size: 38px;
    }

    .text_block_wrapper {
        margin-top: 25px;
    }


    /* IMAGE */

    .see_how_it_works_img_container {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        width: 100%;
        height: auto;

        margin-top: 30px;
    }

    .see_how_it_works_img {
        width: 100%;
        max-width: 430px;
    }


    /* FORM */

    .book_a_demo_form_container {
        width: 100%;
        height: auto;

        padding: 45px 40px 35px;

        overflow: visible;
    }

}


/* =========================================================
   MOBILE
   <= 767px
========================================================= */

@media (max-width: 767px) {

    .nrpa-modal {
        align-items: flex-start;

        padding: 8px;
    }

    .nrpa-modal-dialog {
        width: 100%;
        max-width: 100%;

        margin: 8px auto;
    }

    .nrpa-modal-content {
        border-radius: 8px;
    }


    /* CLOSE */

    .nrpa_modal_close {
        top: 10px;
        right: 10px;

        width: 30px;
        height: 30px;
    }

    .nrpa_modal_close svg {
        width: 22px;
        height: 22px;
    }


    /* BLUE */

    .see_how_it_works {
        padding: 42px 24px 25px;
    }

    .nrpa_highlight_text {
        min-height: 34px;

        margin-bottom: 12px;

        padding: 5px 11px;

        font-size: 12px;
    }

    .see_how_it_works h2 {
        font-size: 32px;
    }

    .text_block_wrapper {
        margin-top: 22px;
    }

    .text_block_wrapper > p {
        font-size: 17px;
    }

    .text_block_list {
        gap: 10px;
    }

    .text_block_list_item p {
        font-size: 15px;
    }

    .text_block_list_item svg {
        width: 22px;
        height: 22px;
    }


    /* IMAGE */

    .see_how_it_works_img_container {
        margin-top: 25px;
    }

    .see_how_it_works_img {
        max-width: 350px;

        border-radius: 18px 18px 0 0;
    }


    /* FORM */

    .book_a_demo_form_container {
        padding: 35px 20px 30px;
    }


    /* ONE COLUMN FORM */

    .book_a_demo_form_container .gfield--width-half {
        grid-column: 1 / -1 !important;
    }

}


/* =========================================================
   SMALL MOBILE
   <= 480px
========================================================= */

@media (max-width: 480px) {

    .nrpa-modal {
        padding: 5px;
    }

    .nrpa-modal-dialog {
        margin: 5px auto;
    }


    /* BLUE */

    .see_how_it_works {
        padding: 40px 18px 20px;
    }

    .see_how_it_works h2 {
        font-size: 29px;
    }

    .nrpa_highlight_text {
        font-size: 11px;
    }

    .text_block_wrapper > p {
        font-size: 15px;
    }

    .text_block_list_item p {
        font-size: 14px;
    }


    /* FORM */

    .book_a_demo_form_container {
        padding: 30px 15px 25px;
    }

    .book_a_demo_form_container .gfield_label {
        font-size: 13px !important;
    }

    .book_a_demo_form_container input[type="text"],
    .book_a_demo_form_container input[type="email"],
    .book_a_demo_form_container input[type="tel"],
    .book_a_demo_form_container select,
    .book_a_demo_form_container textarea {
        font-size: 14px !important;
    }

    .book_a_demo_form_container .gchoice label {
        font-size: 13px !important;
    }

}


/* =========================================================
   BODY LOCK
========================================================= */

body.modal-open {
    overflow: hidden;
}
/* --- Breakpoints ---------------------------------------------------------- */

@media (min-width: 640px) {
  .hdr__cta { display: inline-flex; }
}

/* 1200, not 1080: six nav groups plus the logo and the CTA genuinely do not
   fit inside the pill below this, and the CTA was pushing out past its right
   edge. Better a burger on a narrow laptop than a broken bar. */
@media (min-width: 1200px) {
  .hdr__nav-wrap { display: flex; }
  .hdr__burger { display: none; }
  .hdr__inner { min-height: 4.75rem; }
}

@media (max-width: 1199px) {
  .hdr__actions { margin-left: auto; }
}

@media (max-width: 560px) {
  .mega__panel { grid-template-columns: 1fr; }
}


/* Announcement strip collapses to just the message on small screens. */
@media (max-width: 767px) {
  .hdr__announce-side { display: none; }
  .hdr__announce-msg { font-size: 0.75rem; }
}
