@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(manrope-latin-ext.woff2) format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(manrope-latin.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
:root {
  --ink: #142521;
  --muted: #55645e;
  --paper: #f7f9f7;
  --line: #dbe3de;
  --dark: #071412;
  --green: #24674c;
  --mint: #b5f4d6;
  --white: #fff;
  --radius: 6px;
  color-scheme: light;
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
}
button,
input,
textarea,
summary {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
summary {
  cursor: pointer;
}
button {
  border: 0;
}
img,
svg {
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 750;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}
h1 {
  font-size: 58px;
  line-height: 1.12;
}
h2 {
  font-size: 36px;
  line-height: 1.22;
}
h3 {
  font-size: 21px;
  line-height: 1.4;
}
p {
  line-height: 1.75;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
li {
  line-height: 1.65;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #38856a;
  outline-offset: 5px;
}
::selection {
  background: var(--mint);
  color: var(--dark);
}
.container {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
}
.icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  vertical-align: middle;
}
.section {
  padding-block: 88px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  line-height: 1.7;
  margin-bottom: 16px;
}
.section-heading {
  max-width: 670px;
}
.section-heading > p:last-child:not(.eyebrow) {
  margin-top: 20px;
  max-width: 620px;
  color: var(--muted);
}
.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.section-heading-row .section-heading {
  max-width: 650px;
}
.section-heading-row > .text-link {
  max-width: 230px;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 14px 21px;
  background: var(--mint);
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: var(--radius);
  line-height: 1.5;
  transition:
    background 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  background: #cef9e5;
  box-shadow: 0 4px 18px #00000012;
}
.button .icon {
  width: 19px;
  height: 19px;
  flex-basis: 19px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.text-link:hover {
  color: var(--green);
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-200%);
  padding: 14px;
  background: var(--white);
}
.skip-link:focus {
  transform: translateY(0);
}
/* All locales and page types use this same header and footer. */
.site-header {
  background: var(--dark);
  color: #e9f2ed;
  border-bottom: 1px solid #26362f;
  position: relative;
  z-index: 10;
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8de6b6;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border: 1px solid #345846;
  border-radius: var(--radius);
  background: #10251a;
  flex-shrink: 0;
}
.brand-mark svg {
  width: 26px;
  height: 26px;
}
.brand-hq {
  color: #8de6b6;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
}
.desktop-nav a {
  padding-block: 12px;
}
.desktop-nav a:hover {
  color: var(--mint);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.button-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 12px;
  gap: 10px;
}
.language-menu {
  position: relative;
}
.language-menu > summary {
  list-style: none;
  min-height: 42px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid #41544a;
  border-radius: var(--radius);
}
summary::-webkit-details-marker {
  display: none;
}
.language-menu .icon {
  width: 15px;
  height: 15px;
  flex-basis: 15px;
}
.language-menu[open] > summary .icon {
  transform: rotate(180deg);
}
.language-menu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 180px;
  background: #10231b;
  border: 1px solid #395747;
  box-shadow: 0 10px 30px #0004;
  padding: 6px;
  border-radius: var(--radius);
}
.language-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  font-size: 14px;
  border-radius: 3px;
}
.language-menu a:hover,
.language-menu a[aria-current] {
  background: #213b2e;
  color: var(--mint);
}
.mobile-menu {
  display: none;
}
.site-footer {
  background: var(--dark);
  color: #acbfb5;
  padding: 60px 0 22px;
}
.site-footer .brand {
  color: #f7fbf8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-grid > div:first-child p {
  max-width: 280px;
  margin-top: 20px;
  font-size: 14px;
}
.footer-grid h2 {
  font-size: 13px;
  color: #f2f7f3;
  margin-bottom: 18px;
}
.footer-grid > nav > a,
.footer-grid > div > a:not(.brand) {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 12px;
}
.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--mint);
}
.footer-grid .icon {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #2a3c32;
  padding-top: 22px;
  font-size: 12px;
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
.footer-bottom p {
  line-height: 1.5;
}
/* One unframed workflow below the copy keeps the hero readable at every width. */
.hero {
  background: var(--dark);
  color: #f6faf7;
  border-bottom: 1px solid #263f31;
}
.hero-inner {
  padding-block: 48px 30px;
}
.hero-intro {
  text-align: center;
}
.hero .eyebrow {
  color: #aed2ba;
  margin: 0 auto 16px;
  max-width: 700px;
}
.hero h1 {
  max-width: 960px;
  margin-inline: auto;
  font-size: 54px;
  line-height: 1.12;
}
.hero h1 span {
  color: var(--mint);
}
.hero-copy {
  max-width: 690px;
  margin: 22px auto 0;
  color: #c4cfc8;
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 26px;
}
.hero-actions .button {
  box-shadow:
    inset 0 1px 0 #ffffff40,
    0 5px 14px #0003;
}
.hero .text-link {
  color: #eef5f0;
  max-width: 230px;
  font-size: 13px;
}
.hero .text-link:hover {
  color: var(--mint);
}
.hero-proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 20px auto 0;
  max-width: 900px;
  font-size: 12px;
  color: #bed2c5;
}
.hero-proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-proof .icon {
  color: #88cba6;
  width: 14px;
  height: 14px;
  flex-basis: 14px;
}
.hero-workflow {
  margin: 34px 0 0;
  padding-top: 21px;
  border-top: 1px solid #243b30;
}
.hero-workflow figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #adc7b8;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}
.flow-caption-mark {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  background: #8bd5a9;
}
.hero-flow-stages {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  margin-top: 18px;
}
.hero-flow-stages::before {
  content: "";
  position: absolute;
  height: 1px;
  top: 21px;
  left: 12.5%;
  right: 12.5%;
  background: #355a45;
}
.flow-stage {
  position: relative;
  min-width: 0;
  text-align: center;
}
.flow-stage-symbol {
  position: relative;
  width: 74px;
  height: 42px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #43694f;
  border-radius: var(--radius);
  background: #10281d;
  color: #9ce1b6;
}
.flow-stage-index {
  font-size: 10px;
  font-weight: 700;
  color: #adc7b8;
}
.flow-stage-3 .flow-stage-symbol {
  color: #e5d498;
  border-color: #726344;
  background: #23291d;
}
.flow-stage-4 .flow-stage-symbol {
  color: #b9d5ed;
  border-color: #3e6169;
  background: #13282b;
}
.flow-stage-role {
  display: block;
  color: #9db7a8;
  font-size: 10px;
  line-height: 1.6;
  margin-bottom: 4px;
}
.flow-stage h2 {
  color: #f1f8f3;
  font-size: 15px;
  line-height: 1.5;
}
.flow-stage p {
  color: #aec1b5;
  font-size: 12px;
  line-height: 1.65;
  max-width: 228px;
  margin: 6px auto 0;
}
.flow-connector {
  position: absolute;
  top: 12px;
  right: -22px;
  width: 18px;
  height: 18px;
  color: #82b797;
  background: var(--dark);
}
.hero-workflow-note {
  margin: 16px auto 0;
  text-align: center;
  color: #9cb3a5;
  font-size: 10px;
  line-height: 1.6;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  min-width: 0;
}
.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 4px;
}
.service-icon .icon {
  width: 25px;
  height: 25px;
}
.tone-green {
  background: #e4f2e8;
  color: #286845;
}
.tone-blue {
  background: #e8eff7;
  color: #3b618a;
}
.tone-ochre {
  background: #f4efd9;
  color: #7a651a;
}
.service-card h3 {
  max-width: 270px;
}
.service-card > p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.service-outcome {
  font-size: 11px;
  line-height: 1.6;
  font-weight: 800;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: auto;
}
.service-card > p {
  padding-bottom: 28px;
}
.service-card .text-link {
  margin-top: 14px;
  font-size: 13px;
  justify-content: space-between;
}
.service-card .text-link .icon {
  flex-shrink: 0;
}
.example-section {
  background: #0c2118;
  color: #eff7f1;
}
.example-section .eyebrow,
.example-section .process-number {
  color: #ade7c0;
}
.example-section .section-heading > p:last-child:not(.eyebrow),
.example-section .invoice-steps p {
  color: #bed0c4;
}
.example-section .text-link {
  color: #c4f2d5;
}
.example-section .invoice-steps li {
  border-color: #41624d;
}
.workflow-demo {
  margin-top: 36px;
  background: #fff;
  color: var(--ink);
  border: 1px solid #486b53;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 36px #13342509;
}
.demo-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 15px 24px;
  background: #122e20;
  color: #eaf5ed;
  border-color: #44654e;
}
.demo-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 750;
}
.demo-name .icon {
  color: #a4e1b8;
}
.demo-tabs {
  display: flex;
  gap: 4px;
}
.demo-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 750;
  color: #c5d6cb;
  background: transparent;
  min-height: 42px;
  border-radius: 4px;
}
.demo-tabs button[aria-selected="true"] {
  background: var(--mint);
  color: var(--dark);
}
.demo-tabs button:hover:not([aria-selected="true"]) {
  background: #244934;
}
.step-index {
  font-size: 10px;
  opacity: 0.7;
}
.demo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 370px;
}
.document-area {
  background: #f0f3f1;
  padding: 24px 48px 32px;
}
.small-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 650;
}
.small-label .icon {
  width: 15px;
  height: 15px;
  flex-basis: 15px;
}
.invoice-paper {
  background: white;
  border: 1px solid #d9e0dc;
  box-shadow: 0 8px 15px #193c2510;
  max-width: 340px;
  min-height: 238px;
  margin: 22px auto 0;
  padding: 25px;
  font-size: 11px;
}
.paper-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #5c6c62;
  font-size: 10px;
}
.paper-top > span:first-child {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}
.paper-company {
  margin-top: 27px;
  font-weight: 750;
}
.invoice-paper > p:not(.paper-company) {
  color: var(--muted);
}
.paper-lines {
  display: grid;
  gap: 9px;
  margin-block: 22px;
}
.paper-lines span {
  height: 3px;
  background: #edf0ee;
  width: 100%;
}
.paper-lines span:last-child {
  width: 60%;
}
.paper-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.paper-total strong {
  font-size: 14px;
}
.review-area {
  padding: 30px 36px;
}
.review-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.review-heading h3 {
  font-size: 19px;
}
.review-heading .icon {
  color: var(--green);
}
.review-area > p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  min-height: 68px;
}
.review-fields {
  margin: 18px 0;
}
.review-fields > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-block: 8px;
  border-bottom: 1px solid #e7ece8;
  font-size: 12px;
}
.review-fields dt {
  color: var(--muted);
}
.review-fields dd {
  margin: 0;
  text-align: right;
  font-weight: 650;
}
.review-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
}
.review-status .icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}
.status-0 {
  color: #42658b;
}
.status-1 {
  color: #88651a;
}
.status-2 {
  color: #21613d;
}
.demo-footnote {
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid var(--line);
  padding: 13px 24px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}
.demo-footnote .icon {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
}
.tools-band {
  background: white;
  border-bottom: 1px solid var(--line);
  padding-block: 36px;
}
.tools-band .container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.tools-band .container > div {
  max-width: 320px;
}
.tools-band h2 {
  font-size: 15px;
}
.tools-band p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.tools-band ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex: 1;
  flex-wrap: wrap;
  gap: 14px 20px;
}
.tools-band li {
  font-size: 12px;
  font-weight: 800;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  list-style: none;
  margin-top: 40px;
}
.process-grid li {
  border-top: 1px solid #b7c6bc;
  padding-top: 23px;
}
.process-number {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  display: inline-flex;
  margin-bottom: 20px;
}
.process-grid h3 {
  font-size: 20px;
}
.process-grid p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 13px;
}
.about-section {
  background: #123123;
  color: #eff7f1;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.about-section .eyebrow {
  color: #b2d3bd;
}
.about-section .section-heading > p:last-child {
  color: #bdd0c3;
  font-size: 15px;
}
.about-section .text-link {
  color: #d4f6df;
  margin-top: 22px;
}
.person-line {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}
.person-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid #6a947a;
  border-radius: 50%;
  color: #cbf6da;
  font-size: 20px;
}
.person-line strong {
  font-size: 14px;
  display: block;
}
.person-line div > span {
  display: block;
  font-size: 11px;
  margin-top: 4px;
  color: #bdd0c3;
}
.trust-list {
  align-self: center;
}
.trust-list article {
  display: flex;
  gap: 20px;
  padding-block: 24px;
  border-bottom: 1px solid #3a5745;
}
.trust-list article:first-child {
  padding-top: 0;
}
.trust-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.trust-list .icon {
  color: #a9d8b7;
  margin-top: 3px;
}
.trust-list h3 {
  font-size: 18px;
}
.trust-list p {
  font-size: 14px;
  color: #bdd0c3;
  margin-top: 10px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.7;
  padding-block: 20px;
}
.faq-list summary .icon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 14px;
  color: var(--muted);
  padding: 0 30px 22px 0;
}
.audit-section {
  background: #eaf0ec;
  border-top: 1px solid var(--line);
}
.audit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.audit-layout .section-heading > p:last-child {
  font-size: 15px;
}
.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.check-list li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  font-weight: 650;
}
.check-list .icon {
  color: var(--green);
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}
.contact-alternative {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #cbd7cf;
}
.contact-alternative p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.preview-notice {
  font-size: 11px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  color: #50685a;
}
.preview-notice .icon {
  width: 15px;
  height: 15px;
  flex-basis: 15px;
  margin-top: 2px;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.7;
  margin-bottom: 8px;
}
.field label span {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
input,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #aebeb3;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  font-size: 14px;
  line-height: 1.6;
  min-height: 48px;
}
textarea {
  resize: vertical;
  min-height: 118px;
}
input::placeholder,
textarea::placeholder {
  color: #67766d;
  opacity: 1;
}
.submit-button {
  width: 100%;
  background: #183d2b;
  color: #fff;
  justify-content: space-between;
}
.submit-button:hover {
  background: #28543d;
}
.form-note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
.form-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-status:empty {
  display: none;
}
.form-status {
  font-size: 13px;
  padding: 14px;
  border-left: 3px solid var(--green);
  margin-top: 20px;
  background: #fff;
}
.form-status[data-state="error"] {
  border-color: #a13e2d;
  color: #8a2e20;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.pain-list {
  list-style: none;
  align-self: center;
}
.pain-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 14px;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}
.pain-list .icon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
  color: var(--green);
}
.invoice-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.invoice-steps li {
  border-top: 1px solid #b7c6bc;
  padding-top: 20px;
}
.invoice-steps h3 {
  font-size: 18px;
}
.invoice-steps p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}
.boundary-section {
  background: #edf1f6;
}
.boundary-section .icon {
  color: #416183;
  margin-bottom: 22px;
}
.boundary-section h2 {
  font-size: 25px;
}
.boundary-section p {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}
.legal-section {
  padding-block: 70px 90px;
}
.legal-content {
  max-width: 760px;
  margin: auto;
}
.legal-content h1 {
  font-size: 44px;
  margin-bottom: 20px;
}
.legal-content h2 {
  font-size: 25px;
  margin: 38px 0 15px;
}
.legal-content h3 {
  font-size: 19px;
  margin: 24px 0 12px;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
}
.legal-content p {
  margin-block: 15px;
}
.legal-content ul {
  padding-left: 23px;
  margin-block: 16px;
}
.legal-content a {
  text-decoration: underline;
  overflow-wrap: anywhere;
  color: var(--green);
}
.legal-content strong {
  color: var(--ink);
}
@media (max-width: 1190px) {
  .desktop-nav {
    gap: 16px;
  }
  .header-inner {
    gap: 20px;
  }
  .header-cta {
    display: none;
  }
  .about-layout,
  .audit-layout {
    gap: 56px;
  }
  .demo-toolbar {
    padding-inline: 20px;
  }
  .document-area {
    padding-inline: 30px;
  }
}
@media (max-width: 900px) {
  h2 {
    font-size: 31px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-inner {
    padding-block: 40px 28px;
  }
  .hero-flow-stages {
    gap: 16px;
  }
  .flow-connector {
    right: -17px;
  }
  .flow-stage h2 {
    font-size: 14px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-card {
    padding: 24px 20px;
  }
  .service-card h3 {
    font-size: 19px;
  }
  .service-card > p {
    font-size: 14px;
  }
  .section {
    padding-block: 64px;
  }
  .section-heading-row {
    display: block;
  }
  .section-heading-row > .text-link {
    margin-top: 22px;
    max-width: none;
  }
  .demo-name {
    max-width: 200px;
  }
  .review-area {
    padding: 26px;
  }
  .document-area {
    padding-inline: 24px;
  }
  .tools-band .container {
    display: block;
  }
  .tools-band .container > div {
    max-width: 580px;
  }
  .tools-band ul {
    margin-top: 24px;
    justify-content: flex-start;
    gap: 16px 28px;
  }
  .process-grid {
    gap: 24px;
  }
  .about-layout,
  .audit-layout,
  .faq-layout,
  .split-section {
    gap: 40px;
  }
  .about-layout h2,
  .audit-layout h2 {
    font-size: 30px;
  }
  .footer-grid {
    gap: 36px;
    grid-template-columns: 1.1fr 1fr 1fr;
  }
  .footer-grid .brand {
    font-size: 22px;
  }
  .footer-grid .brand-mark {
    width: 36px;
    margin-right: 6px;
  }
  .invoice-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .invoice-steps li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding-block: 18px;
  }
  .invoice-steps p {
    margin-top: 5px;
  }
  .invoice-steps .process-number {
    margin: 3px 0 0;
  }
}
@media (max-width: 680px) {
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 72px;
    gap: 16px;
    justify-content: space-between;
  }
  .brand {
    font-size: 22px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    margin-right: 7px;
  }
  .desktop-nav {
    display: none;
  }
  .header-actions {
    gap: 8px;
  }
  .language-menu > summary {
    min-width: 54px;
    min-height: 42px;
    font-size: 11px;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu > summary {
    list-style: none;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid #41544a;
    border-radius: var(--radius);
  }
  .mobile-menu > nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 12px 20px 20px;
    background: #10231b;
    border-bottom: 1px solid #395747;
  }
  .mobile-menu > nav > a {
    display: block;
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid #30493a;
  }
  .language-menu nav {
    right: 0;
  }
  .hero-inner {
    padding-block: 32px 24px;
  }
  .hero h1 {
    font-size: 34px;
    max-width: 520px;
    line-height: 1.17;
    hyphens: auto;
  }
  .hero .eyebrow {
    font-size: 10px;
    max-width: 350px;
    margin-bottom: 15px;
  }
  .hero-copy {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 18px;
  }
  .hero-actions {
    gap: 18px 22px;
    margin-top: 22px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding: 13px 18px;
    min-height: 50px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    max-width: 100%;
  }
  .hero-proof {
    gap: 7px 16px;
    margin-top: 20px;
    font-size: 10px;
    max-width: 420px;
  }
  .hero-proof li {
    gap: 6px;
  }
  .hero-proof .icon {
    width: 12px;
    flex-basis: 12px;
  }
  .hero-workflow {
    margin-top: 25px;
    padding-top: 17px;
  }
  .hero-workflow figcaption {
    font-size: 10px;
  }
  .hero-flow-stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
    margin-top: 16px;
  }
  .hero-flow-stages::before,
  .flow-connector {
    display: none;
  }
  .flow-stage-symbol {
    width: 62px;
    height: 34px;
    margin-bottom: 8px;
  }
  .flow-stage-symbol .icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
  .flow-stage-role {
    font-size: 10px;
    margin-bottom: 3px;
  }
  .flow-stage h2 {
    font-size: 13px;
    line-height: 1.5;
  }
  .flow-stage p {
    display: none;
  }
  .hero-workflow-note {
    font-size: 10px;
    margin-top: 15px;
  }
  .section {
    padding-block: 50px;
  }
  h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
  }
  .section-heading > p:last-child:not(.eyebrow) {
    font-size: 14px;
    margin-top: 15px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 16px;
  }
  .service-card {
    padding: 25px;
  }
  .service-card h3 {
    font-size: 22px;
    max-width: 100%;
  }
  .service-card > p {
    font-size: 14px;
    padding-bottom: 24px;
  }
  .service-icon {
    margin-bottom: 18px;
    width: 42px;
    height: 42px;
  }
  .service-outcome {
    padding-top: 18px;
  }
  .workflow-demo {
    margin-top: 27px;
  }
  .demo-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }
  .demo-name {
    max-width: none;
    font-size: 11px;
  }
  .demo-tabs {
    width: 100%;
  }
  .demo-tabs button {
    flex: 1;
    padding: 10px 8px;
    font-size: 11px;
    gap: 5px;
  }
  .demo-body {
    grid-template-columns: 1fr;
  }
  .document-area {
    padding: 19px 24px 24px;
  }
  .invoice-paper {
    min-height: 192px;
    max-width: 310px;
    padding: 20px;
    margin-top: 17px;
  }
  .paper-company {
    margin-top: 18px;
  }
  .paper-lines {
    margin-block: 15px;
    gap: 6px;
  }
  .review-area {
    padding: 24px;
  }
  .review-area > p {
    min-height: 0;
    font-size: 13px;
  }
  .review-heading h3 {
    font-size: 18px;
  }
  .review-fields > div {
    font-size: 12px;
  }
  .demo-footnote {
    font-size: 10px;
    padding: 13px 17px;
    align-items: flex-start;
  }
  .demo-footnote .icon {
    margin-top: 2px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
  }
  .process-number {
    margin-bottom: 12px;
  }
  .process-grid h3 {
    font-size: 20px;
  }
  .process-grid p {
    font-size: 14px;
    margin-top: 10px;
  }
  .about-layout,
  .faq-layout,
  .audit-layout,
  .split-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-layout h2,
  .audit-layout h2 {
    font-size: 28px;
  }
  .trust-list article {
    padding-block: 22px;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .faq-list details > p {
    font-size: 14px;
  }
  .check-list {
    margin-top: 22px;
  }
  .contact-alternative {
    margin-top: 26px;
    padding-top: 20px;
  }
  .audit-layout {
    gap: 32px;
  }
  .tools-band ul {
    gap: 14px 24px;
  }
  .tools-band li {
    font-size: 11px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    padding-bottom: 32px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid > div:first-child p {
    max-width: none;
    margin-top: 15px;
  }
  .footer-grid > nav > a,
  .footer-grid > div > a:not(.brand) {
    font-size: 12px;
    overflow-wrap: anywhere;
  }
  .footer-grid h2 {
    margin-bottom: 15px;
  }
  .footer-bottom {
    display: block;
    font-size: 11px;
  }
  .footer-bottom > div {
    margin-top: 18px;
  }
  .site-footer {
    padding-top: 42px;
  }
  .legal-section {
    padding-block: 42px 64px;
  }
  .legal-content h1 {
    font-size: 34px;
  }
  .legal-content h2 {
    font-size: 23px;
  }
  .legal-content p,
  .legal-content li {
    font-size: 14px;
  }
  .boundary-section h2 {
    font-size: 24px;
  }
  .pain-list li {
    font-size: 13px;
  }
  .form-note {
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .brand {
    font-size: 20px;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  .header-actions {
    gap: 6px;
  }
  .language-menu > summary {
    min-width: 48px;
  }
  .mobile-menu > summary {
    width: 38px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero-copy {
    font-size: 14px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero-proof {
    font-size: 10px;
    gap: 8px 10px;
  }
  .hero-actions .button {
    font-size: 12px;
    gap: 12px;
  }
  .service-card {
    padding: 22px;
  }
  .demo-tabs button {
    font-size: 10px;
  }
  .step-index {
    display: none;
  }
  .review-area {
    padding: 21px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
}
.solution-features .service-card > p {
  padding-bottom: 0;
}
.solution-details {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
}
.solution-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}
.solution-copy ol,
.solution-copy ul {
  padding-left: 22px;
  margin-top: 24px;
  color: var(--muted);
}
.solution-copy li {
  padding-left: 5px;
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.8;
}
.solution-copy li::marker {
  color: var(--green);
  font-weight: 750;
}
@media (max-width: 900px) {
  .solution-details {
    gap: 36px;
  }
}
@media (max-width: 680px) {
  .solution-details {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .solution-copy p,
  .solution-copy li {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
/* Small navigational additions share the site's existing spacing and palette. */
.breadcrumb-band {
  background: var(--dark);
  color: #c0d0c8;
}
.breadcrumbs {
  padding-block: 16px;
  font-size: 12px;
}
.breadcrumbs ol,
.related-solutions ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs li + li::before {
  content: "/";
  padding-right: 24px;
  color: var(--muted);
}
.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.related-solutions {
  padding-block: 32px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.related-solutions h2 {
  margin: 0 0 16px;
  font-size: 16px;
}
