/*
  North Valley VoIP website
  Vanilla PHP/HTML/CSS/JS. Component classes use an nv- prefix so the website can
  be integrated into Blesta without relying on a page-wide wrapper class.
*/

/* --------------------------------------------------
   North Valley variables
-------------------------------------------------- */
:root {
  --nv-background: #ffffff;
  --nv-foreground: #14283b;
  --nv-muted: #f4f7fb;
  --nv-muted-2: #eef3fa;
  --nv-muted-text: #5a6b7d;
  --nv-border: #e3e9f1;
  --nv-navy: #164e8a;
  --nv-blue: #2b6cb0;
  --nv-sky: #4f97d8;
  --nv-red: #db3b2e;
  --nv-red-hover: #c93429;
  --nv-white: #ffffff;
  --nv-container-width: 90%;
  --nv-container-maxwidth: 1250px;
  --nv-radius: 12px;
  --nv-radius-large: 24px;
  --nv-shadow: 0 20px 55px rgba(20, 40, 59, 0.10);
  --nv-shadow-blue: 0 30px 70px -30px rgba(22, 78, 138, 0.45);
  --nv-font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nv-font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Alias used by the shared Zomex reset focus state. */
  --color-primary-background: var(--nv-blue);
}

/* --------------------------------------------------
   Reset — same reset used by Zomex
-------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border: 0;
}

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

ul,
ol {
  list-style: none;
  padding-left: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: inherit;
  vertical-align: top;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  cursor: pointer;
}

button:disabled,
input:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
}

a {
  color: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary-background);
  outline-offset: 3px;
}

/* --------------------------------------------------
   Defaults / shared container
-------------------------------------------------- */
body {
  background: var(--nv-background);
  color: var(--nv-foreground);
  font-family: var(--nv-font-body);
  font-weight: 400;
}

.contentcontainer {
  margin: 0 auto;
  width: var(--nv-container-width);
  max-width: var(--nv-container-maxwidth);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}


/* --------------------------------------------------
   Main content defaults
   Scoped to .nv-main so shared Blesta/header/footer markup is unaffected.
-------------------------------------------------- */
.nv-main h2,
.nv-main h3,
.nv-main h4,
.nv-main h5,
.nv-main h6 {
  color: var(--nv-foreground);
  font-family: var(--nv-font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.nv-main h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); }
.nv-main h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.nv-main h4 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
.nv-main h5 { font-size: clamp(1.125rem, 1.6vw, 1.375rem); }
.nv-main h6 { font-size: 1rem; letter-spacing: 0; text-transform: uppercase; }

/* Standard/free-form page content. Component sections below retain their own spacing. */
.nv-page-content {
  padding: 82px 0 104px;
  background: var(--nv-background);
}

.nv-page-content__inner {
  width: 100%;
  max-width: 850px;
}

.nv-main .nv-page-content h2,
.nv-main .nv-page-content h3,
.nv-main .nv-page-content h4,
.nv-main .nv-page-content h5,
.nv-main .nv-page-content h6 {
  margin: 2.5rem 0 1.25rem;
}

.nv-main .nv-page-content h2:first-child,
.nv-main .nv-page-content h3:first-child,
.nv-main .nv-page-content h4:first-child,
.nv-main .nv-page-content h5:first-child,
.nv-main .nv-page-content h6:first-child {
  margin-top: 0;
}

.nv-main .nv-page-content p {
  margin: 0 0 1.35rem;
  color: var(--nv-muted-text);
  line-height: 1.75;
}

.nv-main .nv-page-content p:last-child {
  margin-bottom: 0;
}

.nv-main .nv-page-content a:not(.nv-button) {
  color: var(--nv-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.nv-main .nv-page-content a:not(.nv-button):hover,
.nv-main .nv-page-content a:not(.nv-button):focus {
  color: var(--nv-navy);
  text-decoration-thickness: 2px;
}


.nv-header h1,
.nv-header h2,
.nv-header h3,
.nv-hero h1,
.nv-hero h2,
.nv-hero h3,
.nv-solution h1,
.nv-solution h2,
.nv-solution h3,
.nv-features h1,
.nv-features h2,
.nv-features h3,
.nv-phones h1,
.nv-phones h2,
.nv-phones h3,
.nv-why h1,
.nv-why h2,
.nv-why h3,
.nv-steps h1,
.nv-steps h2,
.nv-steps h3,
.nv-testimonials h1,
.nv-testimonials h2,
.nv-testimonials h3,
.nv-subbanner h1,
.nv-subbanner h2,
.nv-subbanner h3,
.nv-final-cta h1,
.nv-final-cta h2,
.nv-final-cta h3,
.nv-footer h1,
.nv-footer h2,
.nv-footer h3,
.nv-trust h1,
.nv-trust h2,
.nv-trust h3 {
  font-family: var(--nv-font-heading);
  color: var(--nv-foreground);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.nv-hero p,
.nv-trust p,
.nv-solution p,
.nv-features p,
.nv-phones p,
.nv-steps p,
.nv-testimonials p,
.nv-final-cta p,
.nv-footer p {
  color: var(--nv-muted-text);
}

/* --------------------------------------------------
   Reusable elements
-------------------------------------------------- */
.nv-eyebrow {
  color: var(--nv-red);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nv-eyebrow--sky { color: #73b4ee; }

.nv-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 600;
}
.nv-pill--blue {
  background: var(--nv-muted-2);
  border: 1px solid var(--nv-border);
  color: var(--nv-navy);
}
.nv-final-cta .nv-pill--light {
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.98);
  color: var(--nv-navy);
  box-shadow: 0 8px 20px rgba(112,30,24,.18);
  font-weight: 700;
}
.nv-final-cta .nv-pill--light i {
  color: var(--nv-red);
  font-size: 0.875rem;
  line-height: 1;
}
.nv-pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--nv-red); }

.nv-icon-box {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  color: var(--nv-blue);
  border: 1px solid var(--nv-border);
  box-shadow: 0 4px 12px rgba(20,40,59,.035);
}
.nv-icon-box i { font-size: 1rem; line-height: 1; }
.nv-icon-box--soft-blue { background: rgba(43,108,176,.10); border-color: transparent; }
.nv-icon-box--soft-red { background: rgba(219,59,46,.10); border-color: transparent; color: var(--nv-red); }
.nv-icon-box--blue { background: var(--nv-navy); color: #fff; border-color: transparent; }
.nv-icon-box--sky { background: var(--nv-sky); color: #fff; border-color: transparent; }
.nv-icon-box--red { background: var(--nv-red); color: #fff; border-color: transparent; }
.nv-icon-box--on-dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.10); color: #72b5ef; box-shadow: none; }

.nv-button-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}
.nv-button-row--left { justify-content: flex-start; }
.nv-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.nv-button i { font-size: 0.85rem; line-height: 1; }
.nv-button:hover { transform: translateY(-2px); text-decoration: none; }
.nv-button--red { color: #fff; background: var(--nv-red); box-shadow: 0 5px 14px rgba(219,59,46,.16); }
.nv-button--red:hover { color: #fff; background: var(--nv-red-hover); box-shadow: 0 9px 18px rgba(219,59,46,.22); }
.nv-button--blue { color: #fff; background: var(--nv-navy); box-shadow: 0 5px 14px rgba(22,78,138,.16); }
.nv-button--blue:hover { background: #113f70; box-shadow: 0 9px 18px rgba(22,78,138,.22); }
.nv-button--outline { color: var(--nv-navy); background: #fff; border-color: var(--nv-border); }
.nv-button--outline:hover { background: var(--nv-muted); border-color: #d7e0eb; }
.nv-button--white { color: var(--nv-red); background: #fff; }
.nv-button--white:hover { background: rgba(255,255,255,.92); }
.nv-button--ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.38); }
.nv-button--ghost:hover { background: rgba(255,255,255,.10); }

.nv-section-head {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.nv-section-head h2 {
  margin-top: 13px;
  font-size: clamp(1.9rem, 2.6vw, 2.25rem);
}
.nv-section-head > p:last-child {
  max-width: 660px;
  margin: 18px auto 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* --------------------------------------------------
   Header
-------------------------------------------------- */
.nv-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.nv-header.is-scrolled {
  background: rgba(255,255,255,.95);
  border-bottom-color: var(--nv-border);
  box-shadow: 0 5px 22px rgba(20,40,59,.05);
}
.nv-header__inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nv-logo { flex: 0 0 auto; display: inline-flex; align-items: center; }
.nv-logo img { width: 225px; height: auto; }
.nv-nav { flex: 1 1 auto; display: flex; align-items: center; justify-content: center; gap: 4px; }
.nv-nav a,
.nv-login {
  padding: 9px 11px;
  border-radius: 8px;
  color: #4c6073;
  font-size: 0.86rem;
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}
.nv-nav a:hover,
.nv-login:hover { color: var(--nv-navy); }
.nv-header__actions { flex: 0 0 auto; display: flex; align-items: center; gap: 5px; }
.nv-button--header { min-height: 40px; padding: 10px 17px; font-size: .85rem; }
.nv-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nv-border);
  border-radius: 10px;
  color: var(--nv-navy);
  background: #fff;
}
.nv-menu-button i { font-size: 1.15rem; line-height: 1; }
.nv-menu-button__close { display: none; }
.nv-menu-button[aria-expanded="true"] .nv-menu-button__open { display: none; }
.nv-menu-button[aria-expanded="true"] .nv-menu-button__close { display: block; }
.nv-mobile-menu { display: none; }

/* --------------------------------------------------
   Hero
-------------------------------------------------- */
.nv-hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 132px;
  background: #fff;
}
.nv-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 440px at 88% 0%, rgba(79,151,216,.14), transparent 61%),
    radial-gradient(620px 380px at 0% 15%, rgba(22,78,138,.055), transparent 60%);
}
.nv-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 42px;
}
.nv-hero__copy { max-width: 570px; }
.nv-hero h1 {
  margin-top: 23px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.nv-hero h1 span { color: var(--nv-blue); }
.nv-hero__lead { margin-top: 24px; max-width: 560px; font-size: 1.04rem; line-height: 1.78; }
.nv-hero .nv-button-row { margin-top: 28px; }
.nv-hero__checks { display: flex; flex-wrap: wrap; gap: 9px 22px; margin-top: 26px; color: var(--nv-muted-text); font-size: .82rem; }
.nv-hero__checks span { display: inline-flex; align-items: center; gap: 7px; }
.nv-hero__checks i { width: 16px; color: var(--nv-blue); font-size: 0.9rem; line-height: 1; text-align: center; }
.nv-hero__visual { position: relative; min-width: 0; }
.nv-hero__video-wrap {
  overflow: hidden;
  border: 1px solid var(--nv-border);
  border-radius: 10px;
  background: #f7faff;
  box-shadow: var(--nv-shadow-blue);
}
.nv-hero__video {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  object-position: center;
  background: #f7faff;
}


/* --------------------------------------------------
   Trust bar
-------------------------------------------------- */
.nv-trust { background: #f8fafd; border-top: 1px solid var(--nv-border); border-bottom: 1px solid var(--nv-border); }
.nv-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; padding-top: 70px; padding-bottom: 70px; }
.nv-trust__item h3 { margin-top: 16px; font-size: .98rem; letter-spacing: -0.02em; }
.nv-trust__item p { margin-top: 7px; font-size: .80rem; line-height: 1.65; }

/* --------------------------------------------------
   Complete solution
-------------------------------------------------- */
.nv-solution { padding: 128px 0 134px; background: #fff; }
.nv-solution__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 95px; }
.nv-solution__copy { max-width: 560px; }
.nv-solution__copy h2 { margin-top: 12px; font-size: clamp(1.9rem, 2.6vw, 2.25rem); }
.nv-solution__copy p:not(.nv-eyebrow) { margin-top: 18px; font-size: .98rem; line-height: 1.78; }
.nv-solution__cards { display: grid; gap: 16px; }
.nv-solution-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  padding: 15px 18px;
  border: 1px solid var(--nv-border);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(20,40,59,.025);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.nv-solution-card:hover { transform: translateY(-2px); border-color: #d3deeb; box-shadow: 0 10px 24px rgba(20,40,59,.06); }
.nv-solution-card h3 { font-size: .92rem; letter-spacing: -0.01em; }
.nv-solution-card p { margin-top: 2px; font-size: .76rem; line-height: 1.5; }

/* --------------------------------------------------
   Features
-------------------------------------------------- */
.nv-features { padding: 123px 0 127px; background: #f8fafd; }
.nv-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  overflow: hidden;
  border: 1px solid var(--nv-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 3px 15px rgba(20,40,59,.025);
}
.nv-feature-grid article { min-height: 220px; padding: 31px 31px 28px; border-right: 1px solid var(--nv-border); border-bottom: 1px solid var(--nv-border); transition: background-color .2s ease; }
.nv-feature-grid article:nth-child(3n) { border-right: 0; }
.nv-feature-grid article:nth-last-child(-n+3) { border-bottom: 0; }
.nv-feature-grid article:hover { background: #f9fbfd; }
.nv-feature-grid h3 { margin-top: 18px; font-size: 1rem; }
.nv-feature-grid p { margin-top: 7px; font-size: .79rem; line-height: 1.65; }

/* --------------------------------------------------
   Phones
-------------------------------------------------- */
.nv-phones { padding: 146px 0 154px; background: #fff; }
.nv-phone-featured {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  margin-top: 57px;
  overflow: hidden;
  border: 1px solid var(--nv-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(20,40,59,.025);
}
.nv-phone-placeholder {
  min-height: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px;
  background:
    radial-gradient(320px 220px at 50% 38%, rgba(79,151,216,.14), transparent 64%),
    linear-gradient(135deg, #eef4fb 0%, #fbfdff 100%);
  border-right: 1px solid var(--nv-border);
}
.nv-phone-placeholder__icon {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--nv-blue);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--nv-border);
  box-shadow: 0 7px 18px rgba(20,40,59,.06);
}
.nv-phone-placeholder__icon i { font-size: 1.35rem; line-height: 1; }
.nv-phone-placeholder__label { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border-radius: 999px; background: rgba(255,255,255,.88); border: 1px solid var(--nv-border); color: var(--nv-muted-text); font-size: .68rem; font-weight: 600; box-shadow: 0 4px 12px rgba(20,40,59,.04); }
.nv-phone-placeholder__label i { font-size: 0.7rem; line-height: 1; }
.nv-phone-copy { padding: 50px 48px; display: flex; flex-direction: column; justify-content: center; }
.nv-phone-badge { width: fit-content; padding: 5px 9px; border-radius: 999px; background: var(--nv-muted-2); color: var(--nv-blue); font-size: .65rem; line-height: 1; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.nv-phone-copy h3 { margin-top: 15px; font-size: 1.55rem; }
.nv-phone-copy p { margin-top: 12px; font-size: .88rem; line-height: 1.7; }
.nv-phone-copy .nv-phone-note { font-size: .75rem; }
.nv-phone-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.nv-phone-card { overflow: hidden; border: 1px solid var(--nv-border); border-radius: 24px; background: #fff; box-shadow: 0 4px 16px rgba(20,40,59,.025); }
.nv-phone-card .nv-phone-placeholder { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--nv-border); }
.nv-phone-card .nv-phone-copy { padding: 31px 34px 36px; justify-content: flex-start; }
.nv-phone-card .nv-phone-copy h3 { font-size: 1.25rem; }

/* --------------------------------------------------
   Why North Valley
-------------------------------------------------- */
.nv-why { position: relative; overflow: hidden; padding: 129px 0; background: #205087; color: #fff; }
.nv-why__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px 380px at 92% 0%, rgba(79,151,216,.23), transparent 62%), radial-gradient(480px 320px at 0% 100%, rgba(219,59,46,.12), transparent 62%); }
.nv-why__grid { position: relative; display: grid; grid-template-columns: .95fr 1.15fr; align-items: center; gap: 94px; }
.nv-why__intro { max-width: 510px; }
.nv-why h2 { margin-top: 12px; color: #fff; font-size: clamp(1.9rem, 2.6vw, 2.25rem); }
.nv-why__intro > p:not(.nv-eyebrow) { margin-top: 18px; color: rgba(255,255,255,.76); font-size: .92rem; line-height: 1.76; }
.nv-why__image { position: relative; margin-top: 31px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; box-shadow: 0 23px 55px rgba(0,0,0,.17); }
.nv-why__image img { width: 100%; aspect-ratio: 1.52 / 1; object-fit: cover; }
.nv-why__image span { position: absolute; top: 12px; right: 12px; padding: 5px 8px; border-radius: 7px; background: rgba(20,40,59,.73); color: #fff; font-size: .61rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.nv-reasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 46px; }
.nv-reasons h3 { margin-top: 14px; color: #fff; font-size: .89rem; letter-spacing: -0.015em; }
.nv-reasons p { margin-top: 7px; color: rgba(255,255,255,.67); font-size: .76rem; line-height: 1.6; }

/* --------------------------------------------------
   Getting started
-------------------------------------------------- */
.nv-steps { padding: 148px 0 154px; background: #f8fafd; }
.nv-step-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 46px; margin-top: 58px; }
.nv-step-grid::before { content: ''; position: absolute; z-index: 0; top: 26px; left: 4%; right: 4%; height: 1px; background: #dce5ef; }
.nv-step { position: relative; z-index: 1; }
.nv-step__icon { display: flex; width: 52px; height: 52px; align-items: center; justify-content: center; border-radius: 15px; background: var(--nv-blue); color: #fff; box-shadow: 0 8px 18px rgba(43,108,176,.15); }
.nv-step__icon i { font-size: 1rem; line-height: 1; }
.nv-step__number { display: block; margin-top: 19px; color: var(--nv-red); font-size: .71rem; font-weight: 800; letter-spacing: .09em; }
.nv-step h3 { margin-top: 3px; font-size: .94rem; }
.nv-step p { margin-top: 7px; font-size: .76rem; line-height: 1.6; }

/* --------------------------------------------------
   Testimonials
-------------------------------------------------- */

/* --------------------------------------------------
   Subbanner
-------------------------------------------------- */
.nv-subbanner {
  margin-top: 76px;
  padding: 66px 0 64px;
  background: #f4f7fb;
  border-bottom: 1px solid var(--nv-border);
  text-align: center;
}

.nv-subbanner h1 {
  margin: 0;
  color: var(--nv-foreground);
  font-family: var(--nv-font-heading);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.nv-testimonials--page {
  padding-top: 92px;
}

.nv-testimonials { padding: 108px 0 118px; background: #fff; }
.nv-testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 54px; }
.nv-testimonial { min-height: 278px; display: flex; flex-direction: column; padding: 31px; border: 1px solid var(--nv-border); border-radius: 20px; background: #fff; box-shadow: 0 3px 14px rgba(20,40,59,.02); }
.nv-quote { color: var(--nv-sky); font-size: 1.65rem; line-height: 1; }
.nv-testimonial blockquote { margin-top: 14px; flex: 1 1 auto; color: #43586b; font-size: .82rem; line-height: 1.72; }
.nv-testimonial figcaption { display: flex; align-items: center; gap: 11px; margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--nv-border); }
.nv-testimonial figcaption span { display: flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 50%; background: var(--nv-muted-2); color: var(--nv-muted-text); font-size: .58rem; font-weight: 700; }
.nv-testimonial figcaption small { color: var(--nv-muted-text); font-size: .70rem; font-weight: 600; }

/* --------------------------------------------------
   Final CTA
-------------------------------------------------- */
.nv-final-cta { padding: 155px 0 113px; background: #fff; }
.nv-final-cta__box { position: relative; overflow: hidden; border-radius: 24px; background: var(--nv-red); color: #fff; box-shadow: 0 16px 35px rgba(119,36,30,.18); }
.nv-final-cta__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(460px 280px at 10% 0%, rgba(255,255,255,.14), transparent 62%), radial-gradient(500px 340px at 95% 100%, rgba(22,78,138,.30), transparent 62%); }
.nv-final-cta__content { position: relative; max-width: 700px; margin: 0 auto; padding: 77px 30px 78px; text-align: center; }
.nv-final-cta__content .nv-pill { margin: 0 auto; }
.nv-final-cta h2 { margin-top: 18px; color: #fff; font-size: clamp(2.1rem, 3.3vw, 3rem); }
.nv-final-cta__content > p:not(.nv-pill) { max-width: 650px; margin: 18px auto 0; color: rgba(255,255,255,.88); font-size: .94rem; line-height: 1.7; }
.nv-final-cta .nv-button-row { margin-top: 28px; }

/* --------------------------------------------------
   Footer
-------------------------------------------------- */
.nv-footer { padding: 80px 0; background: #f8fafd; border-top: 1px solid var(--nv-border); }
.nv-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.nv-footer__brand { max-width: 384px; }
.nv-footer__brand img { height: auto; width: 225px; }
.nv-footer__brand p { margin-top: 20px; font-size: .875rem; line-height: 1.65; }
.nv-footer h3 { font-size: .875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.nv-footer ul { margin-top: 16px; display: grid; gap: 12px; }
.nv-footer li,
.nv-footer a { color: var(--nv-muted-text); font-size: .875rem; line-height: 1.45; }
.nv-footer a:hover { color: var(--nv-navy); }
.nv-footer__legal { margin-top: 32px; }
.nv-footer__contact li { display: grid; grid-template-columns: 16px 1fr; align-items: start; gap: 10px; }
.nv-footer__contact i { width: 16px; margin-top: 3px; color: var(--nv-blue); font-size: 0.875rem; line-height: 1; text-align: center; }
.nv-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--nv-border); }
.nv-footer__bottom p { font-size: .875rem; line-height: 1.5; }
.nv-footer__bottom p:last-child { font-size: .75rem; }

/* --------------------------------------------------
   Back to top
-------------------------------------------------- */
.nv-back-to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 950;
  display: inline-flex;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  appearance: none;
  cursor: pointer;
  background: var(--nv-navy);
  color: #fff;
  box-shadow: 0 12px 28px rgba(20,40,59,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background-color .2s ease;
}

.nv-back-to-top i {
  font-size: 1rem;
  line-height: 1;
}

.nv-back-to-top:hover,
.nv-back-to-top:focus-visible {
  background: var(--nv-blue);
}

.nv-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* --------------------------------------------------
   Motion
-------------------------------------------------- */
.nv-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.nv-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------
   Responsive
-------------------------------------------------- */
@media (max-width: 1180px) {
  .nv-nav { gap: 0; }
  .nv-nav a { padding-left: 8px; padding-right: 8px; }
  .nv-hero__grid { gap: 52px; }
  .nv-solution__grid,
  .nv-why__grid { gap: 65px; }
}

@media (max-width: 1020px) {
  .nv-nav,
  .nv-header__actions { display: none; }
  .nv-header__inner { justify-content: space-between; }
  .nv-menu-button { display: inline-flex; }
  .nv-mobile-menu { display: block; overflow: hidden; max-height: 0; background: rgba(255,255,255,.98); border-top: 0 solid var(--nv-border); transition: max-height .3s ease, border-top-width .3s ease; }
  .nv-mobile-menu.is-open { max-height: 520px; border-top-width: 1px; }
  .nv-mobile-menu nav { display: grid; gap: 3px; padding-top: 13px; padding-bottom: 17px; }
  .nv-mobile-menu a:not(.nv-button) { padding: 10px 11px; border-radius: 8px; color: var(--nv-foreground); font-size: .9rem; font-weight: 600; }
  .nv-mobile-menu a:not(.nv-button):hover { background: var(--nv-muted); }
  .nv-mobile-menu__login { border: 1px solid var(--nv-border); text-align: center; margin-top: 4px; }
  .nv-mobile-menu .nv-button { margin-top: 5px; width: 100%; }

  .nv-hero { padding-top: 122px; }
  .nv-hero__grid { grid-template-columns: 1fr; gap: 70px; }
  .nv-hero__copy { max-width: 700px; }
  .nv-hero__visual { max-width: 720px; margin: 0 auto; }

  .nv-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .nv-solution__grid { grid-template-columns: 1fr; gap: 50px; }
  .nv-solution__copy { max-width: 730px; }
  .nv-feature-grid { grid-template-columns: repeat(2,1fr); }
  .nv-feature-grid article { border-right: 1px solid var(--nv-border); border-bottom: 1px solid var(--nv-border) !important; }
  .nv-feature-grid article:nth-child(2n) { border-right: 0; }
  .nv-feature-grid article:nth-last-child(-n+2) { border-bottom: 0 !important; }
  .nv-phone-featured { grid-template-columns: 1fr; }
  .nv-phone-featured .nv-phone-placeholder { border-right: 0; border-bottom: 1px solid var(--nv-border); }
  .nv-why__grid { grid-template-columns: 1fr; gap: 52px; }
  .nv-why__intro { max-width: 690px; }
  .nv-step-grid { grid-template-columns: repeat(2,1fr); }
  .nv-step-grid::before { display: none; }
  .nv-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .nv-footer__grid > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 720px) {
  :root { --nv-container-width: 88%; }
  .nv-header__inner { height: 68px; }
  .nv-logo img { width: 132px; }
  .nv-hero { padding: 108px 0 74px; }
  .nv-hero h1 { font-size: clamp(2.65rem, 11vw, 4rem); }
  .nv-hero__lead { font-size: .96rem; }
  .nv-hero .nv-button-row--left { align-items: stretch; }
  .nv-hero .nv-button-row--left .nv-button { width: 100%; }
  .nv-hero__checks { display: grid; }

  .nv-trust__grid { grid-template-columns: 1fr; gap: 34px; padding-top: 45px; padding-bottom: 45px; }
  .nv-solution,
  .nv-features,
  .nv-phones,
  .nv-why,
  .nv-steps,
  .nv-testimonials { padding-top: 82px; padding-bottom: 86px; }
  .nv-section-head h2,
  .nv-solution__copy h2,
  .nv-why h2 { font-size: 2rem; }
  .nv-section-head > p:last-child { font-size: .96rem; }
  .nv-feature-grid { grid-template-columns: 1fr; }
  .nv-feature-grid article { min-height: 0; border-right: 0 !important; border-bottom: 1px solid var(--nv-border) !important; }
  .nv-feature-grid article:last-child { border-bottom: 0 !important; }
  .nv-phone-grid { grid-template-columns: 1fr; }
  .nv-phone-placeholder { min-height: 280px; }
  .nv-phone-copy { padding: 35px 30px; }
  .nv-reasons { grid-template-columns: 1fr; gap: 30px; }
  .nv-step-grid { grid-template-columns: 1fr; gap: 34px; }
  .nv-testimonial-grid { grid-template-columns: 1fr; }
  .nv-testimonial { min-height: 245px; }
  .nv-final-cta { padding: 62px 0 74px; }
  .nv-final-cta__content { padding: 58px 22px; }
  .nv-final-cta h2 { font-size: 2.2rem; }
  .nv-final-cta .nv-button { width: 100%; }
  .nv-footer__grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .nv-footer__grid > :last-child { grid-column: auto; }
  .nv-footer__brand { grid-column: 1 / -1; max-width: 480px; }
  .nv-footer__bottom { flex-direction: column; align-items: flex-start; }
  .nv-back-to-top { right: 18px; bottom: 18px; width: 44px; height: 44px; }
}

@media (max-width: 450px) {
  .contentcontainer { width: 88%; }
  .nv-pill--blue { font-size: .72rem; }
  .nv-hero__visual { margin-left: 8px; margin-right: 8px; }
  .nv-solution-card { grid-template-columns: 44px 1fr; padding-left: 14px; padding-right: 14px; }
  .nv-footer__grid { grid-template-columns: 1fr; }
  .nv-footer__brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nv-reveal { opacity: 1; transform: none; transition: none; }
  .nv-button,
  .nv-solution-card,
  .nv-back-to-top { transition: none; }
}


@media (max-width: 700px) {
  .nv-subbanner {
    margin-top: 68px;
    padding: 48px 0 46px;
  }

  .nv-testimonials--page {
    padding-top: 74px;
  }
}

/* --------------------------------------------------
   Features page
-------------------------------------------------- */
.nv-fp-hero,
.nv-fp-system,
.nv-fp-core,
.nv-fp-anywhere,
.nv-fp-handling,
.nv-fp-phones,
.nv-fp-compare,
.nv-fp-fit,
.nv-fp-help {
  position: relative;
}

.nv-fp-hero {
  overflow: hidden;
  padding: 128px 0 96px;
  background: #fff;
}

.nv-fp-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 440px at 88% 0%, rgba(79,151,216,.14), transparent 61%),
    radial-gradient(620px 380px at 0% 15%, rgba(22,78,138,.055), transparent 60%);
}

.nv-fp-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 54px;
}

.nv-fp-hero__copy { max-width: 575px; }

.nv-fp-hero h1 {
  margin-top: 23px;
  color: var(--nv-foreground);
  font-family: var(--nv-font-heading);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.nv-fp-hero h1 span { color: var(--nv-blue); }
.nv-fp-hero__lead { margin-top: 24px; color: var(--nv-muted-text); font-size: 1.04rem; line-height: 1.78; }
.nv-fp-hero .nv-button-row { margin-top: 28px; }
.nv-fp-hero__checks { display: flex; flex-wrap: wrap; gap: 9px 22px; margin-top: 26px; color: var(--nv-muted-text); font-size: .82rem; }
.nv-fp-hero__checks span { display: inline-flex; align-items: center; gap: 7px; }
.nv-fp-hero__checks i { color: var(--nv-blue); font-size: .9rem; }
.nv-fp-hero__visual { position: relative; min-width: 0; }

.nv-fp-image-card {
  overflow: hidden;
  border: 1px solid var(--nv-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--nv-shadow-blue);
}

.nv-fp-image-card img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; object-position: center; }
.nv-fp-hero__video-wrap {
  overflow: hidden;
  border: 1px solid var(--nv-border);
  border-radius: 10px;
  background: #f7faff;
  box-shadow: var(--nv-shadow-blue);
}
.nv-fp-hero__video {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  object-position: center;
  background: #f7faff;
}


.nv-fp-system,
.nv-fp-anywhere,
.nv-fp-phones,
.nv-fp-help { background: #fff; }

.nv-fp-system { padding: 112px 0; }
.nv-fp-anywhere { padding: 112px 0; }
.nv-fp-handling { padding: 112px 0; background: #f8fafd; }
.nv-fp-phones { padding: 112px 0; }
.nv-fp-compare { padding: 112px 0; background: #f8fafd; }
.nv-fp-help { padding: 86px 0 46px; }

.nv-fp-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
}

.nv-fp-system__visual,
.nv-fp-anywhere__visual { position: relative; min-width: 0; }

.nv-fp-image-badge {
  position: absolute;
  right: -24px;
  bottom: -20px;
  width: 208px;
  padding: 14px 16px;
  border: 1px solid var(--nv-border);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 15px 30px rgba(20,40,59,.12);
}

.nv-fp-image-badge--left { right: auto; left: -24px; bottom: 24px; width: 190px; }
.nv-fp-image-badge small { display: block; color: var(--nv-muted-text); font-size: .68rem; }
.nv-fp-image-badge strong { display: block; margin-top: 2px; color: var(--nv-foreground); font-size: .8rem; line-height: 1.3; }

.nv-fp-copy { max-width: 565px; }
.nv-fp-copy h2 { margin-top: 13px; font-size: clamp(1.9rem, 2.6vw, 2.35rem); }
.nv-fp-copy__lead { margin-top: 20px; color: var(--nv-muted-text); font-size: 1rem; line-height: 1.75; }

.nv-fp-point-list { display: grid; gap: 20px; margin-top: 30px; }
.nv-fp-point-list li { display: flex; align-items: flex-start; gap: 15px; }
.nv-fp-point-list .nv-icon-box { width: 43px; height: 43px; flex-basis: 43px; border-radius: 11px; }
.nv-fp-point-list h3 { font-size: .9rem; letter-spacing: -.02em; }
.nv-fp-point-list p { margin-top: 4px; color: var(--nv-muted-text); font-size: .78rem; line-height: 1.62; }
.nv-fp-point-list--compact { gap: 19px; }
.nv-fp-inline-check { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; color: var(--nv-navy); font-size: .78rem; font-weight: 600; }
.nv-fp-inline-check i { color: var(--nv-blue); }

.nv-fp-core { padding: 112px 0; background: #f8fafd; }
.nv-fp-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 54px; }
.nv-fp-feature-card { display: flex; min-height: 252px; flex-direction: column; padding: 28px; border: 1px solid var(--nv-border); border-radius: 22px; background: #fff; box-shadow: 0 4px 16px rgba(20,40,59,.025); transition: transform .2s ease, box-shadow .2s ease; }
.nv-fp-feature-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20,40,59,.07); }
.nv-fp-feature-card h3 { margin-top: 17px; font-size: 1rem; }
.nv-fp-feature-card p { margin-top: 7px; flex: 1 1 auto; color: var(--nv-muted-text); font-size: .78rem; line-height: 1.65; }
.nv-fp-tag { width: fit-content; margin-top: 18px; padding: 5px 10px; border-radius: 999px; background: var(--nv-muted-2); color: var(--nv-blue); font-size: .66rem; font-weight: 700; }

.nv-fp-device-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 28px; }
.nv-fp-device-grid article { padding: 18px; border: 1px solid var(--nv-border); border-radius: 15px; background: #fff; box-shadow: 0 3px 11px rgba(20,40,59,.025); }
.nv-fp-device-grid .nv-icon-box { width: 38px; height: 38px; flex-basis: 38px; border-radius: 10px; }
.nv-fp-device-grid h3 { margin-top: 12px; font-size: .82rem; }
.nv-fp-device-grid p { margin-top: 4px; color: var(--nv-muted-text); font-size: .7rem; line-height: 1.55; }

.nv-fp-journey { padding: 30px; border: 1px solid var(--nv-border); border-radius: 22px; background: #fff; box-shadow: 0 4px 16px rgba(20,40,59,.025); }
.nv-fp-journey__label { color: var(--nv-muted-text); font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.nv-fp-journey ol { margin-top: 18px; }
.nv-fp-journey li { position: relative; }
.nv-fp-journey__row { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--nv-border); border-radius: 14px; background: #fff; }
.nv-fp-journey__row .nv-icon-box { width: 42px; height: 42px; flex-basis: 42px; }
.nv-fp-journey__row strong { display: block; color: var(--nv-foreground); font-size: .8rem; line-height: 1.3; }
.nv-fp-journey__row small { display: block; margin-top: 3px; color: var(--nv-muted-text); font-size: .68rem; line-height: 1.35; }
.nv-fp-journey__line { display: block; width: 1px; height: 13px; margin: 4px auto; background: var(--nv-border); }
.nv-fp-handling .nv-button-row { margin-top: 31px; }

.nv-fp-phone-list { display: grid; gap: 20px; margin-top: 54px; }
.nv-fp-phone-product { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--nv-border); border-radius: 22px; background: #fff; box-shadow: 0 4px 16px rgba(20,40,59,.025); }
.nv-fp-phone-product--reverse .nv-fp-phone-placeholder { order: 2; border-right: 0; border-left: 1px solid var(--nv-border); }
.nv-fp-phone-placeholder { min-height: 330px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 28px; border-right: 1px solid var(--nv-border); background: radial-gradient(300px 210px at 50% 35%, rgba(79,151,216,.14), transparent 64%), linear-gradient(135deg,#eef4fb 0%,#fbfdff 100%); }
.nv-fp-phone-placeholder__icon { display: flex; width: 58px; height: 58px; align-items: center; justify-content: center; border: 1px solid var(--nv-border); border-radius: 15px; background: rgba(255,255,255,.88); color: var(--nv-blue); box-shadow: 0 7px 18px rgba(20,40,59,.06); }
.nv-fp-phone-placeholder__icon i { font-size: 1.25rem; }
.nv-fp-phone-placeholder__label { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border: 1px solid var(--nv-border); border-radius: 999px; background: rgba(255,255,255,.9); color: var(--nv-muted-text); font-size: .65rem; font-weight: 600; box-shadow: 0 4px 12px rgba(20,40,59,.04); }
.nv-fp-phone-product__copy { display: flex; flex-direction: column; justify-content: center; padding: 38px 42px; }
.nv-fp-phone-product__copy h3 { margin-top: 13px; font-size: 1.35rem; }
.nv-fp-phone-product__copy > p { margin-top: 11px; color: var(--nv-muted-text); font-size: .8rem; line-height: 1.65; }
.nv-fp-phone-product__copy ul { display: grid; gap: 8px; margin-top: 18px; }
.nv-fp-phone-product__copy li { display: flex; align-items: flex-start; gap: 8px; color: var(--nv-foreground); font-size: .73rem; line-height: 1.55; }
.nv-fp-phone-product__copy li i { margin-top: 4px; color: var(--nv-blue); font-size: .68rem; }
.nv-fp-phone-product__copy .nv-fp-phone-note { margin-top: 16px; font-size: .69rem; }

.nv-fp-compare-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 54px; }
.nv-fp-compare-card { display: flex; min-height: 230px; flex-direction: column; padding: 27px; border: 1px solid var(--nv-border); border-radius: 20px; background: #fff; box-shadow: 0 4px 15px rgba(20,40,59,.025); }
.nv-fp-compare-card--featured { border: 2px solid var(--nv-blue); box-shadow: 0 8px 20px rgba(43,108,176,.08); }
.nv-fp-compare-card > p { margin-top: 16px; color: var(--nv-blue); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.nv-fp-compare-card h3 { margin-top: 3px; font-size: 1.02rem; }
.nv-fp-compare-card small { margin-top: 10px; color: var(--nv-muted-text); font-size: .72rem; line-height: 1.6; }

.nv-fp-fit { overflow: hidden; padding: 112px 0; background: #205087; color: #fff; }
.nv-fp-fit__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(650px 430px at 90% 0%, rgba(79,151,216,.30), transparent 62%), radial-gradient(520px 340px at 0% 100%, rgba(219,59,46,.17), transparent 62%); }
.nv-fp-fit__inner { position: relative; }
.nv-fp-fit .nv-section-head h2 { color: #fff; }
.nv-fp-fit .nv-section-head > p:last-child { color: rgba(255,255,255,.78); }
.nv-fp-fit-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; margin-top: 52px; }
.nv-fp-fit-grid article { min-height: 200px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.055); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.nv-fp-fit-grid h3 { margin-top: 14px; color: #fff; font-size: .82rem; letter-spacing: -.015em; }
.nv-fp-fit-grid p { margin-top: 7px; color: rgba(255,255,255,.7); font-size: .7rem; line-height: 1.58; }
.nv-fp-fit .nv-button-row { margin-top: 38px; }
.nv-fp-fit .nv-button--white { color: var(--nv-navy); }

.nv-fp-help__box { max-width: 850px; margin: 0 auto; padding: 48px 48px 50px; border: 1px solid var(--nv-border); border-radius: 22px; background: #f4f7fb; text-align: center; }
.nv-fp-help__box .nv-pill { margin: 0 auto; }
.nv-fp-help__box h2 { margin-top: 20px; font-size: clamp(1.75rem, 2.4vw, 2.2rem); }
.nv-fp-help__box > p:not(.nv-pill) { max-width: 690px; margin: 14px auto 0; color: var(--nv-muted-text); font-size: .9rem; line-height: 1.7; }
.nv-fp-help__box .nv-button-row { margin-top: 24px; }

@media (max-width: 1180px) {
  .nv-fp-hero__grid { gap: 58px; }
  .nv-fp-split { gap: 48px; }
}

@media (max-width: 1020px) {
  .nv-fp-hero { padding-top: 122px; }
  .nv-fp-hero__grid,
  .nv-fp-split { grid-template-columns: 1fr; }
  .nv-fp-hero__grid { gap: 70px; }
  .nv-fp-hero__copy,
  .nv-fp-copy { max-width: 730px; }
  .nv-fp-hero__visual,
  .nv-fp-system__visual,
  .nv-fp-anywhere__visual { width: 100%; max-width: 720px; margin: 0 auto; }
  .nv-fp-system__visual { order: 2; }
  .nv-fp-anywhere__visual { order: 2; }
  .nv-fp-feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .nv-fp-phone-product { grid-template-columns: 1fr; }
  .nv-fp-phone-product--reverse .nv-fp-phone-placeholder { order: initial; border-left: 0; }
  .nv-fp-phone-placeholder { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--nv-border); }
  .nv-fp-fit-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 720px) {
  .nv-fp-hero { padding: 108px 0 78px; }
  .nv-fp-hero h1 { font-size: clamp(2.55rem, 11vw, 4rem); }
  .nv-fp-hero__lead { font-size: .96rem; }
  .nv-fp-hero .nv-button-row--left { align-items: stretch; }
  .nv-fp-hero .nv-button-row--left .nv-button { width: 100%; }
  .nv-fp-hero__checks { display: grid; }

  .nv-fp-system,
  .nv-fp-core,
  .nv-fp-anywhere,
  .nv-fp-handling,
  .nv-fp-phones,
  .nv-fp-compare,
  .nv-fp-fit { padding-top: 82px; padding-bottom: 86px; }
  .nv-fp-help { padding-top: 64px; padding-bottom: 10px; }
  .nv-fp-copy h2 { font-size: 2rem; }
  .nv-fp-image-badge { right: -10px; }
  .nv-fp-image-badge--left { right: auto; left: -10px; }
  .nv-fp-feature-grid,
  .nv-fp-device-grid,
  .nv-fp-compare-grid,
  .nv-fp-fit-grid { grid-template-columns: 1fr; }
  .nv-fp-feature-card { min-height: 0; }
  .nv-fp-phone-product__copy { padding: 31px 28px 34px; }
  .nv-fp-phone-placeholder { min-height: 270px; }
  .nv-fp-help__box { padding: 40px 24px 42px; }
  .nv-fp-help__box .nv-button { width: 100%; }
}

@media (max-width: 450px) {
  .nv-fp-hero__visual,
  .nv-fp-system__visual,
  .nv-fp-anywhere__visual { margin-left: 8px; margin-right: 8px; width: auto; }
  .nv-fp-image-badge { width: 180px; }
}

/* --------------------------------------------------
   Enhanced Yealink product cards
-------------------------------------------------- */
.nv-product-showcase {
  padding: 112px 0 118px;
  background: #fff;
}

.nv-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 54px;
}

.nv-product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--nv-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(20,40,59,.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.nv-product-card:hover {
  transform: translateY(-4px);
  border-color: #d5deea;
  box-shadow: 0 16px 36px rgba(20,40,59,.10);
}

.nv-product-card::after {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #164e8a 0%, #2e6eaf 100%);
}

.nv-product-card--red::after {
  background: linear-gradient(90deg, #db3b2e 0%, #ef6a43 100%);
}

.nv-product-card__media {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 26px 28px;
  background: radial-gradient(350px 220px at 50% 12%, rgba(22,78,138,.10), transparent 60%), linear-gradient(180deg, #f7fbff 0%, #eef4fa 100%);
}

.nv-product-card__media--warm {
  background: radial-gradient(350px 220px at 50% 12%, rgba(219,59,46,.10), transparent 60%), linear-gradient(180deg, #fff9f7 0%, #fdf0ea 100%);
}

.nv-product-card__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22,78,138,.08);
  color: var(--nv-blue);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nv-product-card__tag--red {
  background: rgba(219,59,46,.09);
  color: var(--nv-red);
}

.nv-product-card__media img {
  width: 100%;
  max-width: 270px;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 28px rgba(20,40,59,.14));
}

.nv-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 28px 24px 24px;
}

.nv-product-card__body h3 {
  font-size: 1.35rem;
}

.nv-product-card__body p {
  margin-top: 10px;
  color: var(--nv-muted-text);
  font-size: .84rem;
  line-height: 1.68;
}

.nv-product-card__body ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.nv-product-card__body li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--nv-foreground);
  font-size: .76rem;
  line-height: 1.55;
}

.nv-product-card__body li i {
  margin-top: 3px;
  color: var(--nv-blue);
  font-size: .8rem;
}

.nv-product-card--red .nv-product-card__body li i {
  color: var(--nv-red);
}

.nv-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--nv-border);
}

.nv-product-card__footer strong {
  color: var(--nv-foreground);
  font-family: var(--nv-font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.nv-product-card__footer .nv-button {
  min-width: 132px;
}

/* --------------------------------------------------
   Testimonial portraits
-------------------------------------------------- */
.nv-testimonial figcaption img {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--nv-border);
  box-shadow: 0 4px 10px rgba(20,40,59,.08);
}

@media (max-width: 1180px) {
  .nv-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .nv-product-showcase {
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .nv-product-card__media {
    min-height: 230px;
  }
}

@media (max-width: 720px) {
  .nv-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nv-product-card__body {
    padding: 24px 20px 20px;
  }

  .nv-product-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .nv-product-card__footer .nv-button {
    width: 100%;
  }
}
