@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');

:root {
  --nwm-orange: #ff8b1f;
  --nwm-orange-deep: #e87500;
  --nwm-orange-soft: #fff0e2;
  --nwm-slate: #4e5862;
  --nwm-slate-dark: #343d46;
  --nwm-aqua-light: #b7eaf3;
  --nwm-mist: #eaf6f8;
  --nwm-paper: #ffffff;
  --nwm-ink: #172028;
  --nwm-muted: #66737d;
  --nwm-border: rgba(78, 88, 98, 0.16);
  --nwm-shadow: 0 24px 70px rgba(23, 32, 40, 0.12);
  --nwm-orange-shadow: 0 18px 42px rgba(255, 139, 31, 0.28);
  --nwm-radius-sm: 14px;
  --nwm-radius-md: 24px;
  --nwm-radius-lg: 34px;
  --shell: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Satoshi', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--nwm-paper);
  color: var(--nwm-ink);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button, input, textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--nwm-ink);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--nwm-border);
  box-shadow: 0 10px 30px rgba(23, 32, 40, 0.06);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.035em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--nwm-orange);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 139, 31, 0.28);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.brand-name {
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 400;
  color: var(--nwm-slate);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--nwm-muted);
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--nwm-ink);
  background: var(--nwm-mist);
}

.nav-links .nav-cta {
  margin-left: 6px;
  color: var(--nwm-paper);
  background: var(--nwm-slate);
}

.nav-links .nav-cta:hover {
  background: var(--nwm-orange);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--nwm-border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--nwm-slate);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 139, 31, 0.28), transparent 34%),
    radial-gradient(circle at 20% 78%, rgba(183, 234, 243, 0.42), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fffaf5 44%, var(--nwm-mist) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  right: -9vw;
  bottom: -8vw;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(183, 234, 243, 0.45);
  filter: blur(4px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--nwm-orange-deep);
  font-weight: 700;
  font-size: 0.79rem;
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1, h2, h3 {
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--nwm-ink);
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
/*  font-size: 84px;*/
/*  font-size: clamp(4rem, 8.5vw, 8.8rem);*/
  font-size: clamp(4rem, 7.5vw, 7.5rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 5rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 700;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--nwm-slate);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
}

.hero-actions,
.hero-card .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--nwm-orange);
  color: #fff;
  box-shadow: var(--nwm-orange-shadow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--nwm-slate-dark);
  border-color: var(--nwm-border);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--nwm-radius-lg);
  padding: 22px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--nwm-shadow);
  backdrop-filter: blur(22px);
}

.panel-topline {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--nwm-slate);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-card-main {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--nwm-slate-dark), var(--nwm-slate));
  color: #fff;
}

.hero-card-main h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.hero-card-main p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.card-number {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--nwm-aqua-light);
  font-weight: 900;
  letter-spacing: 0.12em;
}

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

.metric-card {
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--nwm-border);
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--nwm-orange-deep);
  font-size: 1.8rem;
  line-height: 1;
}

.metric-card span {
  display: block;
  color: var(--nwm-muted);
  font-size: 0.93rem;
}

.intro-band {
  color: #fff;
  background: var(--nwm-slate-dark);
}

.intro-band h2,
.intro-band .eyebrow {
  color: #fff;
}

.intro-band .eyebrow {
  color: var(--nwm-aqua-light);
}

.split,
.approach-grid,
.contact-grid,
.zapro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: start;
}

.intro-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.section-heading {
  max-width: 860px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin-inline: auto;
  color: var(--nwm-muted);
  font-size: 1.12rem;
}

.cards {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

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

.service-card,
.capability-card,
.contact-form,
.approach-item {
  border: 1px solid var(--nwm-border);
  border-radius: var(--nwm-radius-md);
  background: #fff;
  box-shadow: 0 18px 50px rgba(23, 32, 40, 0.05);
}

.service-card {
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.service-card p,
.capability-card p,
.approach-item p,
.zapro-copy p,
.contact-copy p {
  color: var(--nwm-muted);
}

.service-card ul,
.checklist ul {
  padding-left: 1.1rem;
  margin: auto 0 0;
  color: var(--nwm-slate);
}

.service-card li,
.checklist li {
  margin-bottom: 8px;
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: var(--nwm-orange-soft);
  color: var(--nwm-orange-deep);
  font-weight: 900;
}

.topic-chip {
  margin-bottom: 28px;
}

industry-chip {
  margin-bottom: 5px;
}

.muted {
  background: linear-gradient(180deg, var(--nwm-mist), #fff);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 38px 0 24px;
}

.filter-btn {
  padding: 10px 14px;
  border: 1px solid var(--nwm-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--nwm-muted);
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: transparent;
  background: var(--nwm-orange);
  color: #fff;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  min-height: 210px;
  padding: 24px;
  transition: transform 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nwm-shadow);
}

.capability-card.is-hidden {
  display: none;
}

.zapro {
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 139, 31, 0.32), transparent 34%),
    linear-gradient(145deg, var(--nwm-slate-dark), var(--nwm-slate));
}

.zapro h2,
.zapro h3,
.zapro .eyebrow {
  color: #fff;
}

.zapro .eyebrow {
  color: var(--nwm-aqua-light);
}

.zapro-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.zapro-stack {
  display: grid;
  gap: 14px;
}

.stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.stack-item span {
  color: rgba(255, 255, 255, 0.72);
}

.stack-item strong {
  color: var(--nwm-aqua-light);
  font-size: 1.35rem;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.process-step {
  position: relative;
  min-height: 186px;
  padding: 22px;
  border: 1px solid var(--nwm-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(23, 32, 40, 0.05);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--nwm-orange);
  color: #fff;
  font-weight: 900;
}

.process-step strong,
.process-step small {
  display: block;
}

.process-step strong {
  margin-bottom: 8px;
  color: var(--nwm-ink);
  font-size: 1.05rem;
}

.process-step small {
  color: var(--nwm-muted);
}

.approach-list {
  display: grid;
  gap: 16px;
}

.approach-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 24px;
}

.approach-item > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--nwm-slate);
  color: #fff;
  font-weight: 900;
}

.contact {
  background: #fff;
}

.checklist {
  margin-top: 34px;
  padding: 26px;
  border-radius: 24px;
  background: var(--nwm-mist);
}

.checklist h3 {
  margin-bottom: 14px;
}

.contact-form {
  padding: 28px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--nwm-slate-dark);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--nwm-border);
  border-radius: 16px;
  outline: none;
  color: var(--nwm-ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--nwm-orange);
  box-shadow: 0 0 0 4px rgba(255, 139, 31, 0.18);
}

.form-note {
  margin: 14px 0 0;
  color: var(--nwm-muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--nwm-border);
  background: var(--nwm-slate-dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand .brand-name {
  color: #fff;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--nwm-aqua-light);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .approach-grid,
  .contact-grid,
  .zapro-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  :root {
    --shell: min(100vw - 28px, 1160px);
  }

  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 78px 14px auto 14px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--nwm-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--nwm-shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 5.7rem);
  }

  .hero {
    min-height: auto;
  }

  .metric-grid,
  .cards.three,
  .capability-grid,
  .process-line,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    display: grid;
  }

  .service-card {
    min-height: auto;
  }

  .approach-item {
    grid-template-columns: 1fr;
  }

  .stack-item {
    display: grid;
  }
    
 .nwm-section {
     padding: 62px 0; 
    }
    
    
    
    
}


/* ZAPRO subscription calculator */
.zapro-pricing {
  position: relative;
  overflow: hidden;
}

.zapro-pricing::before {
  content: '';
  position: absolute;
  left: -12vw;
  top: 18%;
  width: 32vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 139, 31, 0.14);
  filter: blur(4px);
  pointer-events: none;
}

.pricing-calculator {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 18px;
  margin-top: 48px;
}

.calculator-panel {
  border: 1px solid var(--nwm-border);
  border-radius: var(--nwm-radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(23, 32, 40, 0.07);
  backdrop-filter: blur(18px);
}

.calculator-inputs {
  padding: 28px;
}

.calculator-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--nwm-slate-dark), var(--nwm-slate));
  color: #fff;
}

.calculator-topline span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.calculator-topline strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.calculator-badge {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--nwm-orange);
  color: #fff !important;
  font-weight: 700;
}

.billing-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.billing-switch legend {
  width: 100%;
  margin-bottom: 8px;
  color: var(--nwm-slate-dark);
  font-weight: 700;
}

.billing-switch label {
  position: relative;
  cursor: pointer;
}

.billing-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.billing-switch span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--nwm-border);
  border-radius: 999px;
  background: #fff;
  color: var(--nwm-muted);
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.billing-switch input:checked + span {
  border-color: transparent;
  background: var(--nwm-orange);
  color: #fff;
  box-shadow: var(--nwm-orange-shadow);
}

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

.calc-field {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--nwm-border);
  border-radius: 22px;
  background: #fff;
}

.calc-field-title,
.cost-row > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.calc-field-title span,
.cost-row > span > span {
  color: var(--nwm-ink);
  font-weight: 700;
  line-height: 1.2;
}

.calc-field small {
  color: var(--nwm-muted);
}

.calc-field-derived {
  align-content: start;
  background: linear-gradient(180deg, #fff, var(--nwm-mist));
}

.calc-field-derived p {
  margin: 12px 0 0;
  color: var(--nwm-slate);
  font-size: 0.95rem;
}

.calc-field-option {
  cursor: pointer;
}

.checkbox-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--nwm-slate-dark);
  font-weight: 700;
}

.checkbox-control input {
  width: 20px;
  height: 20px;
  margin: 0;
  float: right;
  accent-color: var(--nwm-orange);
}

.checkbox-control span {
  line-height: 1.2;
  min-width: 160px;
}

.users-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--nwm-slate-dark);
  font-weight: 700;
}

.users-control input {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--nwm-border);
  border-radius: 22px;
  background: #fff;
}

.users-control span {
  line-height: 1.2;
  min-width:60px;
}

.item-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.item-pill-core {
  background: var(--nwm-orange-soft);
  color: var(--nwm-orange-deep);
}

.item-pill-addon {
  background: var(--nwm-mist);
  color: var(--nwm-slate-dark);
}

.calc-field input {
  width: 100%;
  margin-top: 4px;
  padding: 13px 14px;
  border: 1px solid var(--nwm-border);
  border-radius: 16px;
  color: var(--nwm-ink);
  outline: none;
  background: var(--nwm-paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.calc-field input:focus {
  border-color: var(--nwm-orange);
  box-shadow: 0 0 0 4px rgba(255, 139, 31, 0.18);
}

.calculator-reset {
  margin-top: 18px;
}

.calculator-results {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: linear-gradient(145deg, var(--nwm-slate-dark), var(--nwm-slate));
  color: #fff;
}

.calculator-results .eyebrow {
  color: var(--nwm-aqua-light);
}

.calculator-total {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.calculator-total span {
  display: block;
  color: #fff;
  font-size: clamp(3rem, 4.0vw, 4.0rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.calculator-total small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.5rem;
}

.cost-breakdown {
  display: grid;
  gap: 10px;
}

.cost-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cost-row > span {
  flex: 1;
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.72);
}

.cost-row > span > span {
  color: rgba(255, 255, 255, 0.72);
}

.cost-row .item-pill-addon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--nwm-aqua-light);
}

.cost-row .item-pill-core {
  background: rgba(255, 139, 31, 0.18);
  color: #ffd7b1;
}

.cost-row strong {
  color: #fff;
  font-size: 1.08rem;
  white-space: nowrap;
}

.enterprise-price-btn {
  align-self: flex-start;
  margin-top: 22px;
}

.enterprise-price-btn[hidden] {
  display: none;
}

.pricing-note {
  margin-top: auto;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.module-explainer {
  position: relative;
  margin-top: 58px;
}

.module-explainer h3 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
}

.module-explainer .section-heading > p:last-child {
  color: var(--nwm-muted);
}

.module-sections {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.module-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 0.66fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--nwm-border);
  border-radius: var(--nwm-radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(23, 32, 40, 0.055);
}

.module-section-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-right: 28px;
  border-right: 1px solid var(--nwm-border);
}

.module-section-meta h4 {
  margin: 0;
  color: var(--nwm-ink);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.module-price {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--nwm-mist);
  color: var(--nwm-slate-dark);
  font-weight: 700;
  line-height: 1.25;
}

.module-section-body p {
  margin: 0 0 16px;
  color: var(--nwm-slate);
  font-size: 1.04rem;
  line-height: 1.68;
}

.module-section-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--nwm-muted);
}

.module-section-body li {
  padding-left: 4px;
  line-height: 1.58;
}


@media (max-width: 1080px) {
  .pricing-calculator {
    grid-template-columns: 1fr;
  }

  .module-section {
    grid-template-columns: 1fr;
  }

  .module-section-meta {
    padding-right: 0;
    padding-bottom: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--nwm-border);
  }
}

@media (max-width: 820px) {
  .calculator-fields {
    grid-template-columns: 1fr;
  }

  .calculator-topline,
  .cost-row {
    align-items: flex-start;
  }

  .calculator-topline {
    display: grid;
  }

  .module-section {
    padding: 24px;
  }
}


/* Monthly-first calculator total */
.calculator-total small {
  letter-spacing: -0.015em;
}

.module-explainer {
  scroll-margin-top: 110px;
}


.calculator-topline p {
  max-width: 460px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}


.item-pill-discount {
  background: rgba(183, 234, 243, 0.18);
  color: var(--nwm-aqua-light);
}

.discount-row strong {
  color: var(--nwm-aqua-light);
}


/* Industry-fit solutions */
.industries {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 10%, rgba(255, 139, 31, 0.12), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(183, 234, 243, 0.32), transparent 30%),
    #fff;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.industry-card {
  --industry-accent: var(--nwm-orange);
  --industry-accent-deep: var(--nwm-orange-deep);
  --industry-accent-soft: var(--nwm-orange-soft);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--nwm-border);
  border-top: 5px solid var(--industry-accent);
  border-radius: var(--nwm-radius-md);
  background:
    linear-gradient(180deg, var(--industry-accent-soft), rgba(255, 255, 255, 0.94) 42%, rgba(255, 255, 255, 0.92));
  box-shadow: 0 18px 50px rgba(23, 32, 40, 0.055);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--industry-accent);
  box-shadow: var(--nwm-shadow);
}

.industry-card:nth-child(1) {
  --industry-accent: #38cee7;
  --industry-accent-deep: #2a7c89;
  --industry-accent-soft: rgba(56, 206, 231, 0.13);
}

.industry-card:nth-child(2) {
  --industry-accent: var(--nwm-orange);
  --industry-accent-deep: var(--nwm-orange-deep);
  --industry-accent-soft: rgba(255, 139, 31, 0.13);
}

.industry-card:nth-child(3) {
  --industry-accent: var(--nwm-slate);
  --industry-accent-deep: var(--nwm-slate-dark);
  --industry-accent-soft: rgba(78, 88, 98, 0.10);
}

.industry-card:nth-child(4) {
  --industry-accent: #74dbe8;
  --industry-accent-deep: #356f78;
  --industry-accent-soft: rgba(183, 234, 243, 0.18);
}

.industry-card:nth-child(5) {
  --industry-accent: var(--nwm-aqua-light);
  --industry-accent-deep: #4e7f88;
  --industry-accent-soft: rgba(183, 234, 243, 0.20);
}

.industry-card:nth-child(6) {
  --industry-accent: #65717c;
  --industry-accent-deep: var(--nwm-slate-dark);
  --industry-accent-soft: rgba(78, 88, 98, 0.10);
}

.industry-card:nth-child(7) {
  --industry-accent: #ffb15d;
  --industry-accent-deep: var(--nwm-orange-deep);
  --industry-accent-soft: rgba(255, 139, 31, 0.12);
}

.industry-card:nth-child(8) {
  --industry-accent: #5c6873;
  --industry-accent-deep: var(--nwm-slate-dark);
  --industry-accent-soft: rgba(78, 88, 98, 0.12);
}

.industry-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.industry-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--industry-accent-deep);
  color: #fff;
  font-weight: 900;
  font-size: 0.88rem;
}

.industry-focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--industry-accent-soft);
  color: var(--industry-accent-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.industry-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.industry-card p {
  color: var(--nwm-muted);
  font-size: 1rem;
}

.industry-card ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding-left: 1.15rem;
  color: var(--nwm-slate);
}

.industry-card li {
  line-height: 1.5;
}

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

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