:root {
  --ink: #182623;
  --muted: #52635e;
  --green: #166246;
  --green-dark: #103f31;
  --blue: #2762a5;
  --line: #dce4e0;
  --soft: #eff5f2;
  --yellow: #dfea9b;
  --white: #fff;
  --radius: 6px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
svg.lucide {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  stroke-width: 1.65;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.13;
  font-weight: 650;
}
h1 {
  font-size: 56px;
  margin-bottom: 24px;
}
h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
h3 {
  font-size: 23px;
  margin-bottom: 16px;
}
p {
  margin-bottom: 20px;
  color: var(--muted);
}
.wrap {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 30;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  transition:
    background 0.16s,
    box-shadow 0.16s;
}
.button:hover {
  background: var(--green-dark);
  box-shadow: 0 3px 12px #153d301a;
}
.button-light {
  background: var(--white);
  color: var(--green-dark);
}
.button-light:hover {
  background: #eef5e8;
}
.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}
.button-outline:hover {
  background: var(--soft);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fffffff5;
  border-bottom: 1px solid var(--line);
  min-height: 81px;
}
.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand-link {
  text-decoration: none;
  flex-shrink: 0;
}
.brand-link .brand-lockup__wordmark {
  font-size: 24px;
}
.brand-link .brand-lockup__descriptor {
  font-size: 10px;
  text-transform: none;
  font-weight: 500;
  color: var(--muted);
}
.brand-lockup__mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links > a:not(.button) {
  font-size: 14px;
  text-decoration: none;
  color: var(--muted);
  padding: 8px 0;
}
.nav-links > a[aria-current="page"]:not(.button) {
  color: var(--green);
  box-shadow: 0 2px var(--green);
}
.nav-links > a:not(.button):hover {
  color: var(--green);
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.hero {
  position: relative;
  min-height: 590px;
  min-height: min(650px, calc(100vh - 165px));
  min-height: min(650px, calc(100dvh - 165px));
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  z-index: -2;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: #071f2936;
  z-index: -1;
}
.hero-content {
  padding-top: 56px;
  padding-bottom: 44px;
}
.hero .eyebrow {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 1px 8px #133027;
}
.hero h1 {
  font-size: 62px;
  max-width: 540px;
  font-weight: 650;
  text-shadow: 0 2px 20px #112e3550;
  margin-bottom: 24px;
}
.hero-lead {
  font-size: 23px;
  color: #fff;
  line-height: 1.4;
  max-width: 460px;
  font-weight: 550;
  margin-bottom: 14px;
  text-shadow: 0 1px 12px #122f38;
}
.hero-copy {
  max-width: 400px;
  font-size: 17px;
  color: #fff;
  text-shadow: 0 1px 8px #16322d;
  margin-bottom: 28px;
}
.hero-secondary {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 0 1px 8px #15352d;
}
.hero-secondary:hover {
  text-decoration: underline;
}
.hero-note {
  color: white;
  font-size: 12px;
  margin: 17px 0 0;
  text-shadow: 0 1px 7px #0d261a;
}
.image-location {
  position: absolute;
  right: 32px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: white;
}
.image-location svg {
  width: 14px;
  height: 14px;
}
.benefit-band {
  border-bottom: 1px solid var(--line);
  background: white;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 27px;
  gap: 30px;
}
.benefit-grid > div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.benefit-grid > div > svg {
  color: var(--green);
  width: 28px;
  height: 28px;
}
.benefit-grid strong {
  font-size: 15px;
  display: block;
  font-weight: 650;
}
.benefit-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}
.section {
  padding-block: 80px;
}
.section-topless {
  padding-bottom: 70px;
}
.soft-band {
  background: var(--soft);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 36px;
}
.section-heading > div:first-child {
  max-width: 640px;
}
.section-heading > p,
.section-heading > div + div {
  max-width: 430px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading p:last-child {
  margin-bottom: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.feature {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  min-width: 0;
}
.feature-number {
  font-size: 11px;
  color: var(--muted);
  font-weight: 650;
  margin-bottom: 22px;
}
.feature > svg {
  width: 31px;
  height: 31px;
  color: var(--green);
  margin-bottom: 24px;
}
.feature h2,
.feature h3 {
  font-size: 24px;
  line-height: 1.25;
}
.feature p {
  font-size: 15px;
  line-height: 1.7;
}
.feature .text-link {
  margin-top: auto;
  font-size: 13px;
}
.feature:nth-child(2) > svg {
  color: var(--blue);
}
.feature:nth-child(3) > svg {
  color: #7d6c1b;
}
.product-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}
.product-story > div {
  max-width: 490px;
}
.product-story p {
  font-size: 17px;
}
.product-figure {
  margin: 0;
  min-width: 0;
}
.product-figure img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  background: #dde8df;
  border: 1px solid #ccd7ce;
  border-radius: 4px;
}
.product-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 30px;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.check-list svg {
  color: var(--green);
  width: 19px;
  height: 19px;
  margin-top: 2px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.audience-grid article {
  border-top: 2px solid var(--line);
  padding-top: 25px;
}
.audience-grid article > svg {
  margin-bottom: 20px;
  color: var(--green);
  width: 30px;
  height: 30px;
}
.audience-grid p {
  font-size: 15px;
  margin-bottom: 0;
}
.cta-band {
  background: var(--green-dark);
  padding-block: 55px;
  color: white;
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.cta-band h2 {
  font-size: 34px;
  margin-bottom: 13px;
}
.cta-band p {
  color: #d6e6df;
  margin-bottom: 0;
}
.cta-band .eyebrow {
  color: var(--yellow);
  margin-bottom: 15px;
}
.cta-band .button {
  flex-shrink: 0;
}
.footer-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  padding-block: 35px;
}
.footer-brand p {
  margin: 14px 0 0;
  font-size: 12px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-bottom {
  padding-block: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.page-intro {
  padding-top: 65px;
  padding-bottom: 45px;
}
.page-intro h1 {
  max-width: 780px;
}
.page-intro > p:last-child {
  font-size: 19px;
  max-width: 700px;
  margin-bottom: 0;
}
.audience-tabs {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.audience-tabs button {
  font-size: 16px;
  border: none;
  background: none;
  padding: 14px 0;
  color: var(--muted);
  border-bottom: 3px solid transparent;
}
.audience-tabs button[aria-selected="true"] {
  color: var(--green);
  border-color: var(--green);
  font-weight: 650;
}
.wide-photo {
  position: relative;
  margin-bottom: 26px;
  overflow: hidden;
  max-height: 330px;
}
.wide-photo img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.photo-caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  padding: 8px 14px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  border-radius: 3px;
}
.scope-note {
  font-size: 12px;
  line-height: 1.65;
  max-width: 850px;
  margin-top: 24px;
  margin-bottom: 0;
}
.technical-banner {
  background: #e8f0f7;
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 40px;
  margin-bottom: 26px;
  min-height: 260px;
}
.technical-banner > svg {
  width: 70px;
  height: 70px;
  color: var(--blue);
}
.technical-banner p:last-child {
  max-width: 560px;
  margin: 0;
}
.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
.process-line li {
  border-top: 1px solid #c5d3ca;
  padding-top: 24px;
}
.process-line li > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
}
.process-line h3 {
  font-size: 21px;
  margin-top: 22px;
}
.process-line p {
  font-size: 14px;
  margin: 0;
}
.tool-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 34px;
}
.tool-list > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}
.tool-list svg {
  color: var(--green);
  width: 27px;
  height: 27px;
}
.tool-list strong,
.tool-list small {
  display: block;
}
.tool-list strong {
  font-size: 15px;
  font-weight: 650;
}
.tool-list small {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.onboarding-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 940px;
}
.onboarding-list li {
  display: grid;
  grid-template-columns: 55px 1fr 50px;
  gap: 26px;
  border-top: 1px solid var(--line);
  padding-block: 30px;
  align-items: start;
}
.onboarding-list li > span {
  font-size: 15px;
  color: var(--blue);
  font-weight: 650;
}
.onboarding-list h2 {
  font-size: 25px;
  margin-bottom: 12px;
}
.onboarding-list p {
  margin: 0;
  max-width: 670px;
}
.onboarding-list li > svg {
  color: var(--green);
  width: 30px;
  height: 30px;
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.plan {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.plan:first-child {
  border-top: 3px solid var(--green);
}
.plan h3 {
  font-size: 30px;
}
.price {
  font-size: 47px;
  font-weight: 650;
  line-height: 1.1;
  margin: 8px 0 12px;
}
.price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  display: block;
  margin-top: 10px;
}
.plan .button {
  margin-top: auto;
  align-self: flex-start;
}
.plan-copy {
  max-width: 400px;
  line-height: 1.75;
}
.partner-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.partner-band p {
  max-width: 500px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
}
.faq-list summary {
  font-weight: 600;
  padding: 23px 30px 23px 0;
  position: relative;
  list-style: none;
  line-height: 1.5;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 3px;
  top: 21px;
  font-size: 23px;
  font-weight: 400;
  color: var(--green);
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list p {
  font-size: 15px;
  max-width: 660px;
  padding-right: 25px;
}
.enquiry-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 100px;
  align-items: start;
  padding-block: 55px 80px;
}
.enquiry-aside h1 {
  font-size: 38px;
}
.enquiry-aside > p {
  font-size: 15px;
  max-width: 340px;
}
.enquiry-aside img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  object-position: center 55%;
  border-radius: 3px;
  margin-block: 28px;
}
.aside-benefit {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}
.aside-benefit > svg {
  color: var(--green);
  margin-top: 3px;
}
.aside-benefit p {
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}
.enquiry-aside .text-link {
  font-size: 13px;
}
.enquiry-workspace {
  min-width: 0;
  max-width: 670px;
}
.step-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.quiet-command {
  border: 0;
  padding: 0;
  background: none;
  color: var(--green);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.progress-track {
  height: 4px;
  background: #e7ede9;
  margin: 12px 0 34px;
}
.progress-track span {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--green);
  transition: width 0.2s;
}
.form-step h2 {
  font-size: 29px;
  line-height: 1.22;
  margin-bottom: 26px;
}
.form-step > .eyebrow {
  font-size: 11px;
  margin-bottom: 13px;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
  min-width: 0;
}
legend {
  font-size: 13px;
  font-weight: 650;
  padding: 0;
  margin-bottom: 11px;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.choice {
  position: relative;
  min-width: 0;
  cursor: pointer;
}
.choice > input {
  position: absolute;
  top: 12px;
  right: 12px;
}
.choice > span {
  display: flex;
  flex-direction: column;
  gap: 17px;
  min-height: 131px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.4;
}
.choice > span > svg {
  color: var(--green);
  margin-top: 7px;
  width: 27px;
  height: 27px;
}
.choice input:checked + span {
  border-color: var(--green);
  background: #edf6f0;
  box-shadow: inset 0 0 0 1px var(--green);
}
.choice input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 650;
}
.field > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.field small {
  font-weight: 400;
  color: var(--muted);
  font-size: 11px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 47px;
  border: 1px solid #b9c7bf;
  border-radius: 4px;
  background: white;
  padding: 11px 12px;
  color: var(--ink);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.field textarea {
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #718078;
  font-size: 13px;
}
input[type="checkbox"],
input[type="radio"] {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
  flex: 0 0 17px;
  margin-top: 3px;
  cursor: pointer;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.check-grid label,
.check-stack label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.65;
  padding: 6px 0;
}
.check-stack {
  display: grid;
  gap: 5px;
}
.form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-more {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.form-more summary {
  font-size: 13px;
  font-weight: 650;
  padding-block: 15px;
}
.form-more summary span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 12px;
}
.form-more[open] summary {
  margin-bottom: 12px;
}
.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  margin-top: 27px;
}
.wizard-actions #step-next {
  margin-left: auto;
}
.draft-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 23px;
}
.draft-note button {
  border: 0;
  padding: 0;
  background: none;
  color: var(--green);
  text-decoration: underline;
  font-size: inherit;
}
.form-error {
  color: #9e2525;
  padding: 12px;
  background: #fff1f1;
  border-left: 3px solid #bd4242;
  font-size: 13px;
}
.form-status {
  font-size: 13px;
  color: var(--green);
  margin: 12px 0;
}
.form-status:empty {
  display: none;
}
.review-block {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.review-block header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.review-block h3 {
  font-size: 17px;
  margin: 0;
}
.review-block button {
  width: 35px;
  height: 35px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 4px;
  display: grid;
  place-items: center;
}
.review-block dl {
  margin: 0;
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  gap: 6px 15px;
  font-size: 13px;
  line-height: 1.6;
}
.review-block dt {
  color: var(--muted);
}
.review-block dd {
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.preview-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #edf3fa;
  color: #254c73;
  padding: 16px;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 24px;
}
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
@media (min-width: 1500px) {
  .hero-content {
    padding-top: 66px;
    padding-bottom: 56px;
  }
  .hero {
    min-height: 640px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .nav-links {
    gap: 19px;
  }
  .section-heading {
    gap: 35px;
  }
  .product-story {
    gap: 45px;
  }
  .feature {
    padding: 22px;
  }
  .enquiry-layout {
    grid-template-columns: 280px 1fr;
    gap: 45px;
  }
  .enquiry-aside h1 {
    font-size: 34px;
  }
  .hero h1 {
    font-size: 56px;
  }
}
@media (max-width: 760px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 29px;
  }
  h3 {
    font-size: 22px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  .site-header {
    min-height: 73px;
  }
  .nav-wrap {
    height: 72px;
    gap: 15px;
  }
  .brand-link .brand-lockup__wordmark {
    font-size: 22px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 15px #17352a0d;
    gap: 12px;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links > a:not(.button) {
    padding: 10px 2px;
  }
  .nav-links > a[aria-current="page"]:not(.button) {
    box-shadow: none;
    font-weight: 700;
  }
  .hero {
    min-height: 570px;
  }
  .hero-image {
    object-position: 48% 50%;
  }
  .hero-content {
    padding-top: 37px;
    padding-bottom: 35px;
  }
  .hero h1 {
    font-size: 45px;
    max-width: 350px;
    margin-bottom: 20px;
  }
  .hero-lead {
    font-size: 22px;
  }
  .hero-copy {
    font-size: 16px;
    max-width: 330px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .hero .actions {
    gap: 18px;
    max-width: 330px;
  }
  .hero-note {
    font-size: 11px;
    max-width: 290px;
  }
  .image-location {
    right: 18px;
    bottom: 12px;
    font-size: 10px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 24px;
  }
  .benefit-grid > div {
    gap: 15px;
  }
  .benefit-grid > div > svg {
    width: 23px;
    height: 23px;
  }
  .benefit-grid strong {
    font-size: 14px;
  }
  .benefit-grid small {
    font-size: 12px;
    margin-top: 0;
  }
  .section {
    padding-block: 50px;
  }
  .section-heading {
    display: block;
    margin-bottom: 27px;
  }
  .section-heading > p,
  .section-heading > div + div {
    margin-top: 20px;
    max-width: none;
  }
  .section-heading > .text-link {
    margin-top: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .feature {
    padding: 25px;
  }
  .feature-number {
    margin-bottom: 14px;
  }
  .feature > svg {
    margin-bottom: 18px;
  }
  .feature h2,
  .feature h3 {
    font-size: 24px;
  }
  .feature p {
    max-width: 540px;
  }
  .product-story {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .product-story p {
    font-size: 16px;
  }
  .product-figure img {
    max-height: 450px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .audience-grid article > svg {
    margin-bottom: 15px;
  }
  .cta-band {
    padding-block: 39px;
  }
  .cta-band .wrap {
    display: block;
  }
  .cta-band h2 {
    font-size: 29px;
  }
  .cta-band .button {
    margin-top: 25px;
  }
  .footer-wrap {
    display: block;
    padding-block: 28px;
  }
  .footer-links {
    margin-top: 25px;
    gap: 15px 22px;
  }
  .footer-bottom {
    display: block;
    font-size: 10px;
  }
  .footer-bottom span {
    display: block;
    margin-top: 5px;
  }
  .page-intro {
    padding-top: 40px;
    padding-bottom: 32px;
  }
  .page-intro > p:last-child {
    font-size: 17px;
  }
  .audience-tabs {
    gap: 25px;
  }
  .audience-tabs button {
    font-size: 14px;
  }
  .wide-photo,
  .wide-photo img {
    height: 240px;
  }
  .photo-caption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    font-size: 12px;
  }
  .technical-banner {
    padding: 26px;
    gap: 20px;
    display: block;
    min-height: 0;
  }
  .technical-banner > svg {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }
  .process-line {
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
  }
  .process-line h3 {
    font-size: 19px;
    margin-top: 15px;
  }
  .tool-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .tool-list > div {
    padding-block: 19px;
  }
  .onboarding-list li {
    grid-template-columns: 30px 1fr;
    gap: 14px;
    padding-block: 24px;
  }
  .onboarding-list li > svg {
    display: none;
  }
  .onboarding-list h2 {
    font-size: 23px;
  }
  .onboarding-list p {
    font-size: 15px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .plan {
    padding: 27px;
  }
  .plan h3 {
    font-size: 27px;
  }
  .price {
    font-size: 42px;
  }
  .partner-band,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .faq-list summary {
    font-size: 15px;
  }
  .enquiry-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 32px 45px;
  }
  .enquiry-aside h1 {
    font-size: 33px;
    margin-bottom: 15px;
  }
  .enquiry-aside h1 br {
    display: none;
  }
  .enquiry-aside > p {
    max-width: none;
    margin-bottom: 0;
  }
  .enquiry-aside img,
  .aside-benefit,
  .enquiry-aside > .text-link {
    display: none;
  }
  .enquiry-aside .eyebrow {
    margin-bottom: 12px;
  }
  .enquiry-workspace {
    max-width: none;
  }
  .progress-track {
    margin-bottom: 28px;
  }
  .form-step h2 {
    font-size: 26px;
  }
  .choice-grid {
    gap: 8px;
  }
  .choice > span {
    font-size: 12px;
    min-height: 138px;
    padding: 17px 10px;
  }
  .choice > input {
    top: 10px;
    right: 8px;
  }
  .choice > span > svg {
    width: 25px;
    height: 25px;
  }
  .check-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .form-columns {
    gap: 12px;
  }
  .review-block dl {
    grid-template-columns: 100px 1fr;
    gap: 7px 12px;
  }
  .form-step > .eyebrow {
    font-size: 10px;
  }
  .review-actions > .button {
    width: 100%;
  }
  .draft-note {
    font-size: 11px;
  }
}
@media (max-width: 760px) {
  .hero-image {
    object-position: 10% 50%;
  }
  .hero-copy {
    max-width: 260px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
