@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap");

:root {
  --sky: #00b4d8;
  --sky-dark: #0094b3;
  --ink: #1a2535;
  --soft: #f4f8fb;
  --pink: #e0396b;
  --mint: #e8f7fa;
  --muted: #6b7a8f;
  --border: #dde6ed;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

@keyframes ncw-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ncw-scroll-cue {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 60px;
  transition: box-shadow 0.35s ease;
}
nav.nav--elevated {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06);
}
.nav-logo {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.nav-logo strong {
  color: var(--ink);
}
.nav-cta {
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.nav-cta:hover {
  background: #c42d5e;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(224, 57, 107, 0.28);
}
.nav-cta:active {
  transform: translateY(0);
}

/* HERO */
.hero {
  background: linear-gradient(150deg, #e8f7fa 0%, #f4f8fb 60%, #fdf0f4 100%);
  padding: 100px 6% 72px;
}
.hero-inner {
  max-width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero-inner > div:first-child {
  animation: ncw-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.eyebrow {
  display: inline-block;
  background: var(--sky);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
  animation: ncw-fade-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: italic;
  color: var(--sky);
}
.hero-desc {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 28px;
}
.hero-scroll {
  color: var(--sky);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    color 0.2s ease,
    transform 0.25s ease;
}
.hero-scroll:hover {
  color: var(--sky-dark);
  transform: translateX(4px);
}
.hero-scroll .hero-scroll-arrow {
  display: inline-block;
  animation: ncw-scroll-cue 2.2s ease-in-out infinite;
}
.hero-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  animation: ncw-fade-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease;
}
.hero-form-card:hover {
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}
.hero-form-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.hero-form-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: #c42d5e;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(224, 57, 107, 0.25);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-ghost {
  color: var(--sky);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost:hover {
  color: var(--sky-dark);
}

/* POWERED BY */
.powered-bg {
  background: var(--ink);
}
.powered-inner {
  max-width: 80%;
  margin: 0 auto;
  padding: 64px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.powered-inner .section-label {
  color: var(--sky);
}
.powered-inner h2 {
  color: #fff;
  margin-bottom: 16px;
}
.powered-inner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.97rem;
  line-height: 1.7;
}
.powered-reasons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reason {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}
.reason:hover {
  transform: translateX(5px);
}
.reason-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 180, 216, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.reason:hover .reason-icon {
  transform: scale(1.06);
}
.reason-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.reason-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* SECTIONS */
.section {
  padding: 72px 6%;
  max-width: 50%;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
h2 em {
  font-style: italic;
  color: var(--sky);
}
.section-lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 580px;
  margin-bottom: 48px;
}

/* ABOUT LSGO */
.lsgo-bg {
  background: var(--soft);
}
.lsgo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 80%;
  margin: 0 auto;
  padding: 72px 6%;
}
.lsgo-pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pill {
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid var(--sky);
  padding: 16px 18px;
  font-size: 0.93rem;
  color: var(--ink);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.pill strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky);
  margin-bottom: 4px;
}

/* VIDEO */
.video-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 16px 60px rgba(0, 180, 216, 0.15),
    0 2px 12px rgba(0, 0, 0, 0.08);
  background: var(--ink);
  aspect-ratio: 16/9;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}
.video-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 22px 70px rgba(0, 180, 216, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.1);
}
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #1a2535 0%, #243347 100%);
}
.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(0, 180, 216, 0.2);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.35s ease;
}
.video-card:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 0 14px rgba(0, 180, 216, 0.15);
}
.video-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.video-card--inline {
  aspect-ratio: auto;
  cursor: default;
  background: transparent;
  overflow: visible;
}

.video-card--inline:hover {
  transform: none;
  box-shadow:
    0 16px 60px rgba(0, 180, 216, 0.12),
    0 2px 12px rgba(0, 0, 0, 0.06);
}

.video-card--inline:hover .play-btn {
  transform: none;
}

.nciw-inline-video-wrap {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  /* Dark letterboxing while the player loads; avoid "empty black" if embed has no height */
  background: #0b1220;
  /* HubSpot / Vimeo players need a known box; without it the iframe can render at 0 height */
  aspect-ratio: 16 / 9;
  box-shadow:
    0 16px 60px rgba(0, 180, 216, 0.15),
    0 2px 12px rgba(0, 0, 0, 0.08);
}

/*
  HubSpot hosted videos typically render nested wrappers (.hs-responsive-embed / .iframe_wrapper / .hs-video-widget).
  Avoid forcing *every* direct child to `position:absolute` — it can break HubSpot’s layered thumbnail/player DOM.
*/

.nciw-inline-video-wrap .hs-responsive-embed,
.nciw-inline-video-wrap .iframe_wrapper {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.nciw-inline-video-wrap .hs-responsive-embed iframe,
.nciw-inline-video-wrap .hs-responsive-embed video,
.nciw-inline-video-wrap .hs-responsive-embed object,
.nciw-inline-video-wrap .hs-responsive-embed embed {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}

.nciw-inline-video-wrap iframe,
.nciw-inline-video-wrap video {
  width: 100% !important;
  height: 100% !important;
}

/* Hosted video widgets */
.nciw-inline-video-wrap .hs-video-widget,
.nciw-inline-video-wrap .w-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/* Older Safari / browsers without aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
  .nciw-inline-video-wrap {
    height: 0;
    padding-top: 56.25%;
  }
  .nciw-inline-video-wrap > * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.nciw-inline-video-caption {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
  text-align: center;
}

.nciw-inline-video-hint {
  margin-top: 0.75rem;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

/* STEPS */
.steps-section {
  background: var(--ink);
}
.steps-section .section-label {
  color: var(--sky);
}
.steps-section h2 {
  color: #fff;
}
.steps-section .section-lead {
  color: rgba(255, 255, 255, 0.55);
}

.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}
.step-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.step-row:hover .step-circle {
  transform: scale(1.08);
}
.step-line {
  width: 2px;
  flex: 1;
  min-height: 28px;
  background: rgba(0, 180, 216, 0.25);
  margin: 4px 0;
}
.step-body {
  padding-bottom: 32px;
  padding-top: 10px;
}
.step-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.step-body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}
.step-row:last-child .step-line {
  display: none;
}
.step-row:last-child .step-body {
  padding-bottom: 0;
}

/* FORM — HubSpot embed (see module.html {% form %}) */
.form-wrapper {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  max-width: 560px;
  margin: 0 auto;
  transition: box-shadow 0.35s ease;
}
.form-wrapper:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.nciw-hubspot-form {
  margin-top: 0.25rem;
}
.nciw-form-placeholder {
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: 8px;
  line-height: 1.5;
}
.nciw-hubspot-form .hs-form,
.nciw-hubspot-form .hs-form .hs-form-field {
  max-width: 100%;
}
.nciw-hubspot-form .hs-form fieldset {
  max-width: 100% !important;
}
.nciw-hubspot-form .hs-input,
.nciw-hubspot-form .hs-form textarea,
.nciw-hubspot-form .hs-form select {
  width: 100% !important;
  padding: 10px 13px !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  font-family: inherit !important;
  font-size: 0.92rem !important;
  color: var(--ink) !important;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.nciw-hubspot-form .hs-input:focus,
.nciw-hubspot-form .hs-form textarea:focus,
.nciw-hubspot-form .hs-form select:focus {
  outline: none !important;
  border-color: var(--sky) !important;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12) !important;
}
.nciw-hubspot-form .hs-form label {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
}
.nciw-hubspot-form .hs-button,
.nciw-hubspot-form .hs-form input[type="submit"] {
  width: 100%;
  background: var(--pink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 13px !important;
  font-family: inherit !important;
  font-size: 0.97rem !important;
  font-weight: 600 !important;
  cursor: pointer;
  margin-top: 8px;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.nciw-hubspot-form .hs-button:hover,
.nciw-hubspot-form .hs-form input[type="submit"]:hover {
  background: #c42d5e !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(224, 57, 107, 0.28);
}
.nciw-hubspot-form .hs-button:active,
.nciw-hubspot-form .hs-form input[type="submit"]:active {
  transform: translateY(0);
}
.nciw-hubspot-form .hs-error-msgs label {
  color: #c0392b !important;
}

/* HubSpot Forms Next (hsfc-*) — legacy rules above only target .hs-input / .hs-form */
.nciw-hubspot-form .hsfc-Form {
  color: var(--ink);
}
.nciw-hubspot-form .hsfc-TextInput,
.nciw-hubspot-form .hsfc-Form input.hsfc-TextInput,
.nciw-hubspot-form .hsfc-Form textarea {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
  caret-color: var(--ink);
}
.nciw-hubspot-form .hsfc-TextInput::placeholder,
.nciw-hubspot-form .hsfc-Form input.hsfc-TextInput::placeholder,
.nciw-hubspot-form .hsfc-Form textarea::placeholder {
  color: var(--muted) !important;
  opacity: 1 !important;
  -webkit-text-fill-color: var(--muted) !important;
}
.nciw-hubspot-form .hsfc-FieldLabel,
.nciw-hubspot-form .hsfc-FieldLabel > span {
  color: var(--ink) !important;
}
.nciw-hubspot-form .hsfc-DropdownInput .hsfc-TextInput,
.nciw-hubspot-form .hsfc-DropdownOptions .hsfc-TextInput {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}
.nciw-hubspot-form .hsfc-TextInput:-webkit-autofill,
.nciw-hubspot-form .hsfc-TextInput:-webkit-autofill:hover,
.nciw-hubspot-form .hsfc-TextInput:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink) !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
}

/* FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dark) 100%);
  padding: 72px 6%;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 28px;
}
.btn-white {
  background: #fff;
  color: var(--sky);
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.97rem;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.btn-white:active {
  transform: translateY(-1px);
}

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 24px 6%;
  font-size: 0.78rem;
}
footer a {
  color: rgba(255, 255, 255, 0.4);
}

/* scroll reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps-flow .step-row {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.steps-flow.is-visible .step-row:nth-child(1) {
  transition-delay: 0.02s;
}
.steps-flow.is-visible .step-row:nth-child(2) {
  transition-delay: 0.08s;
}
.steps-flow.is-visible .step-row:nth-child(3) {
  transition-delay: 0.14s;
}
.steps-flow.is-visible .step-row:nth-child(4) {
  transition-delay: 0.2s;
}
.steps-flow.is-visible .step-row:nth-child(5) {
  transition-delay: 0.26s;
}
.steps-flow.is-visible .step-row:nth-child(6) {
  transition-delay: 0.32s;
}
.steps-flow.is-visible .step-row:nth-child(7) {
  transition-delay: 0.38s;
}
.steps-flow.is-visible .step-row {
  opacity: 1;
  transform: translateY(0);
}

/* MODAL */
#nciw-video-modal {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
#nciw-video-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-inner {
  background: #1a2535;
  border-radius: 14px;
  width: min(760px, 92vw);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: scale(0.94) translateY(12px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}
#nciw-video-modal.open .modal-inner {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.modal-close:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

.modal-inner--has-video {
  display: block;
  padding: 0;
  overflow: hidden;
}

.modal-inner--has-video .modal-close {
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.nciw-modal-video-wrap {
  position: absolute;
  inset: 0;
  background: #000;
}

.nciw-modal-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.nciw-modal-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  gap: 1rem;
  text-align: center;
}

.nciw-modal-placeholder-icon {
  font-size: 2.5rem;
  line-height: 1;
  opacity: 0.45;
  color: rgba(255, 255, 255, 0.9);
}

.nciw-modal-placeholder .nciw-modal-placeholder-copy {
  max-width: 22rem;
  margin: 0;
  border: none;
  padding: 0;
}

.video-card--no-vimeo {
  opacity: 0.96;
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner > div:first-child,
  .hero-form-card,
  .eyebrow {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .hero-scroll .hero-scroll-arrow {
    animation: none !important;
  }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .steps-flow .step-row,
  .steps-flow.is-visible .step-row {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav-cta:hover,
  .btn-primary:hover,
  .nciw-hubspot-form .hs-button:hover,
  .btn-white:hover,
  .hero-form-card:hover,
  .video-card:hover,
  .pill:hover,
  .reason:hover {
    transform: none;
  }
  #nciw-video-modal .modal-inner {
    transition: none;
  }
  #nciw-video-modal.open .modal-inner {
    transform: none;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .lsgo-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .powered-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero {
    padding-top: 88px;
  }
}
