:root {
  --ink: #13211f;
  --muted: #647572;
  --paper: #f5f8f5;
  --white: #ffffff;
  --line: #dce7e1;
  --mint: #ccefdc;
  --mint-strong: #8ce0b1;
  --green: #1e8b62;
  --deep-green: #0f453a;
  --navy: #172b35;
  --orange: #ff9662;
  --yellow: #f4c761;
  --shadow: 0 24px 70px rgba(22, 62, 50, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  padding: 28px 0;
}

.nav-wrap,
.site-nav,
.brand,
.hero-actions,
.card-topline,
.supplier-id,
.footer-wrap,
.demo-card {
  display: flex;
  align-items: center;
}

.nav-wrap {
  justify-content: space-between;
}

.brand {
  gap: 11px;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.brand strong {
  font-weight: 700;
}

.brand-mark {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 6px 5px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--deep-green);
  transform: rotate(-8deg);
}

.brand-mark span {
  display: block;
  width: 4px;
  border-radius: 3px;
  background: var(--mint-strong);
}

.brand-mark span:nth-child(1) { height: 8px; opacity: .65; }
.brand-mark span:nth-child(2) { height: 14px; }
.brand-mark span:nth-child(3) { height: 19px; opacity: .8; }

.site-nav {
  gap: 34px;
  color: #526660;
  font-size: 13px;
  font-weight: 500;
}

.site-nav a:not(.nav-cta) {
  transition: color .2s ease;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--deep-green);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(15, 69, 58, .2);
  border-radius: 6px;
  color: var(--deep-green);
  background: rgba(255, 255, 255, .32);
  transition: background .2s ease, color .2s ease;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--deep-green);
}

.nav-cta span,
.button span,
.card-action span {
  margin-left: 10px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 180px 0 80px;
  overflow: hidden;
  background: #e9f5ec;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgba(72, 131, 101, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(72, 131, 101, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -230px;
  right: 8%;
  width: 500px;
  height: 500px;
  background: rgba(160, 229, 187, .45);
}

.hero-glow-two {
  bottom: -310px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, .75);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 85px;
  align-items: center;
}

.hero-copy {
  max-width: 570px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 7px 1px 0;
  border-radius: 50%;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  letter-spacing: -.05em;
}

h1 {
  max-width: 590px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 67px);
  font-weight: 600;
  line-height: 1.04;
}

h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-lead {
  max-width: 440px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  gap: 27px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--deep-green);
  box-shadow: 0 10px 20px rgba(15, 69, 58, .16);
}

.button-primary:hover,
.button-dark:hover {
  background: #0a372e;
  box-shadow: 0 14px 26px rgba(15, 69, 58, .2);
}

.button-dark {
  color: var(--white);
  background: var(--deep-green);
}

.button-light {
  color: var(--deep-green);
  background: var(--white);
}

.button-light:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
}

.text-link {
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  font-size: 18px;
  font-weight: 400;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.validation-visual {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(30, 139, 98, .17);
  border-radius: 50%;
  transform: rotate(-25deg);
}

.orbit-one {
  width: 500px;
  height: 300px;
}

.orbit-two {
  width: 415px;
  height: 510px;
  transform: rotate(42deg);
}

.validation-card {
  position: relative;
  z-index: 1;
  width: min(100%, 370px);
  padding: 27px;
  border: 1px solid rgba(178, 206, 192, .75);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card-topline {
  justify-content: space-between;
}

.card-kicker {
  display: block;
  margin-bottom: 4px;
  color: #82968d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.validation-card h2 {
  margin-bottom: 0;
  font-size: 23px;
  letter-spacing: -.06em;
}

.live-badge {
  padding: 5px 8px;
  border-radius: 30px;
  color: var(--green);
  background: #e4f7eb;
  font-size: 10px;
  font-weight: 700;
}

.live-badge span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 4px 1px 0;
  border-radius: 50%;
  background: var(--green);
}

.supplier-id {
  gap: 10px;
  margin: 24px 0 21px;
  padding-bottom: 20px;
  border-bottom: 1px solid #edf1ee;
}

.supplier-logo {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: var(--deep-green);
  background: var(--mint);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.supplier-id span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.supplier-id strong {
  font-size: 12px;
}

.supplier-id small {
  color: #9aaca4;
  font-size: 9px;
}

.more-dots {
  margin-left: auto;
  color: #9aaca4;
  letter-spacing: 2px;
}

.checks {
  display: grid;
  gap: 14px;
}

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 9px;
  align-items: center;
  font-size: 11px;
}

.status-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 700;
}

.check-row small {
  font-size: 9px;
}

.is-valid .status-icon { color: var(--green); background: #e2f6e9; }
.is-valid small { color: var(--green); }
.is-warning .status-icon { color: #ad7d15; background: #fff2c9; }
.is-warning small { color: #b1872f; }
.is-invalid .status-icon { color: #d0654c; background: #ffebe3; }
.is-invalid small { color: #d0654c; }

.report-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 25px;
  padding-top: 18px;
  gap: 8px;
  border-top: 1px solid #edf1ee;
}

.summary-item {
  display: grid;
  gap: 2px;
  padding: 10px 8px;
  border-radius: 7px;
  background: #f4f8f5;
  text-align: center;
}

.summary-item strong {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.summary-item span {
  color: #73867d;
  font-size: 9px;
  font-weight: 700;
}

.summary-item.is-passed strong,
.summary-item.is-passed span {
  color: var(--green);
}

.summary-item.is-warning strong,
.summary-item.is-warning span {
  color: #b1872f;
}

.summary-item.is-error strong,
.summary-item.is-error span {
  color: #d0654c;
}

.card-action {
  width: 100%;
  margin-top: 22px;
  padding: 12px 0 0;
  border: 0;
  border-top: 1px solid #edf1ee;
  color: var(--deep-green);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.card-action span {
  float: right;
  font-size: 15px;
  font-weight: 400;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid #e1ebe4;
  border-radius: 7px;
  color: #49655a;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 25px rgba(22, 62, 50, .08);
  font-size: 10px;
  font-weight: 600;
}

.note-one {
  top: 76px;
  left: -6px;
}

.note-two {
  right: -12px;
  bottom: 70px;
}

.note-icon {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 5px;
  color: var(--green);
  background: #e5f5e9;
  font-size: 10px;
}

.note-two .note-icon {
  color: #d27754;
  background: #fff0e9;
}

.scroll-cue {
  position: absolute;
  bottom: 27px;
  left: 50%;
  display: flex;
  gap: 9px;
  align-items: center;
  color: #91a69c;
  font-size: 10px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 16px;
  height: 25px;
  border: 1px solid #a5b9ae;
  border-radius: 10px;
}

.scroll-cue span::after {
  display: block;
  width: 3px;
  height: 5px;
  margin: 5px auto 0;
  border-radius: 3px;
  background: #6d8b7c;
  content: "";
}

.section {
  padding: 120px 0;
}

.benefits-section {
  background: var(--white);
}

.section-heading {
  max-width: 475px;
}

.section-heading.centered {
  max-width: 600px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading h2,
.demo-content h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.08;
}

.section-heading h2 span,
.demo-content h2 span {
  color: var(--green);
}

.section-heading > p:last-of-type,
.demo-content > p:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-card {
  min-height: 290px;
  padding: 28px 25px 24px;
  border-right: 1px solid var(--line);
}

.benefit-card:first-child {
  border-left: 1px solid var(--line);
}

.benefit-number {
  display: block;
  margin-bottom: 34px;
  color: #aab9b1;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.benefit-icon {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 21px;
  border-radius: 9px;
  background: #e8f6ed;
}

.benefit-icon::before,
.benefit-icon::after {
  position: absolute;
  display: block;
  content: "";
}

.icon-clock::before {
  top: 9px;
  left: 9px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.icon-clock::after {
  top: 13px;
  left: 17px;
  width: 2px;
  height: 7px;
  background: var(--green);
  box-shadow: -4px 5px 0 -0.5px var(--green);
}

.icon-bolt::before {
  top: 8px;
  left: 14px;
  width: 9px;
  height: 20px;
  background: var(--green);
  clip-path: polygon(52% 0, 100% 0, 62% 42%, 100% 42%, 22% 100%, 40% 55%, 0 55%);
}

.icon-grid::before {
  top: 10px;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 10px 0 var(--green), 0 10px var(--green), 10px 10px var(--green);
}

.icon-sliders::before {
  top: 11px;
  left: 10px;
  width: 18px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 7px var(--green), 0 14px var(--green);
}

.icon-sliders::after {
  top: 8px;
  left: 15px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: #e8f6ed;
  box-shadow: -5px 7px 0 -2px #e8f6ed, -5px 7px 0 0 var(--green), 6px 14px 0 -2px #e8f6ed, 6px 14px 0 0 var(--green);
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
  letter-spacing: -.04em;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.process-section {
  background: #e9f5ec;
}

.process-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 130px;
  align-items: center;
}

.process-grid .button {
  margin-top: 23px;
}

.steps {
  display: grid;
}

.step {
  display: grid;
  grid-template-columns: 52px 1px 1fr;
  gap: 19px;
  min-height: 127px;
}

.step-number {
  color: var(--green);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.step-line {
  position: relative;
  width: 1px;
  height: 100%;
  background: #c7ddd0;
}

.step-line::before {
  position: absolute;
  top: 0;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.step-copy {
  padding-bottom: 28px;
}

.step-copy h3 {
  margin-bottom: 7px;
  font-size: 22px;
}

.step-copy p {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.demo-section {
  padding-top: 90px;
  padding-bottom: 90px;
  background: var(--white);
}

.demo-card {
  position: relative;
  min-height: 270px;
  justify-content: space-between;
  gap: 40px;
  padding: 55px 70px;
  overflow: hidden;
  border-radius: 13px;
  color: var(--white);
  background: var(--deep-green);
}

.demo-card::before {
  position: absolute;
  top: -190px;
  right: 150px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(164, 235, 193, .14);
  border-radius: 50%;
  content: "";
}

.demo-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.demo-content .eyebrow {
  color: var(--mint-strong);
}

.demo-content h2 {
  margin-bottom: 12px;
}

.demo-content > p:last-child {
  max-width: 450px;
  margin-bottom: 0;
  color: #b5d3c2;
}

.demo-card .button {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.demo-shape {
  position: absolute;
  border: 1px solid rgba(164, 235, 193, .14);
  border-radius: 50%;
}

.demo-shape-one {
  right: -100px;
  bottom: -220px;
  width: 400px;
  height: 400px;
}

.demo-shape-two {
  right: 70px;
  bottom: -175px;
  width: 300px;
  height: 300px;
}

.site-footer {
  padding: 28px 0;
  color: #789087;
  background: var(--paper);
  font-size: 10px;
}

.footer-wrap {
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-size: 11px;
}

.site-footer p {
  margin-bottom: 0;
}

.modal {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 35, 30, .55);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 450px);
  max-height: calc(100vh - 40px);
  padding: 38px;
  overflow: auto;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 25px 80px rgba(12, 46, 37, .25);
  transform: translateY(15px);
  transition: transform .25s ease;
}

.modal.is-open .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: #eef5f0;
  font-size: 11px;
  cursor: pointer;
}

.modal-dialog h2 {
  margin-bottom: 9px;
  font-size: 32px;
}

.modal-intro {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 13px;
}

#demo-form {
  display: grid;
  gap: 8px;
}

#demo-form label {
  margin-top: 6px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

#demo-form input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #dce7e1;
  border-radius: 5px;
  outline: 0;
  color: var(--ink);
  background: #f9fbf9;
  font-size: 13px;
}

#demo-form select,
#demo-form textarea {
  width: 100%;
  border: 1px solid #dce7e1;
  border-radius: 5px;
  outline: 0;
  color: var(--ink);
  background: #f9fbf9;
  font-size: 13px;
}

#demo-form select {
  padding: 12px 13px;
}

#demo-form textarea {
  min-height: 100px;
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.5;
}

#demo-form input:focus,
#demo-form select:focus,
#demo-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30, 139, 98, .12);
}

fieldset {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 13px;
  border: 1px solid #dce7e1;
  border-radius: 7px;
}

legend {
  padding: 0 5px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.choice {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  align-items: flex-start;
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.35;
}

.choice input {
  width: 14px !important;
  height: 14px;
  justify-self: start;
  margin: 1px 0 0;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  accent-color: var(--green);
}

.form-submit {
  width: 100%;
  margin-top: 12px;
}

.form-privacy {
  margin: 8px 0 0;
  color: #8a9b93;
  font-size: 10px;
  line-height: 1.45;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.form-message {
  min-height: 20px;
  margin: 6px 0 0;
  color: var(--green);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .hero-grid,
  .process-grid {
    gap: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 650px;
  }

  .validation-visual {
    min-height: 450px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card:nth-child(2) {
    border-right: 0;
  }

  .benefit-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 36px, 1140px);
  }

  .site-header {
    padding-top: 20px;
  }

  .menu-toggle {
    position: relative;
    z-index: 12;
    display: grid;
    gap: 4px;
    width: 34px;
    padding: 8px 6px;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 2px;
    background: var(--deep-green);
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle.is-open > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.is-open > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 13px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 67px 25px 20px;
    visibility: hidden;
    border: 1px solid rgba(15, 69, 58, .08);
    border-radius: 10px;
    opacity: 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 50px rgba(22, 62, 50, .14);
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid #edf1ee;
  }

  .site-nav .nav-cta {
    margin-top: 11px;
    padding: 13px 15px;
    border: 0;
    text-align: center;
  }

  .hero {
    padding-top: 135px;
    padding-bottom: 70px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .validation-visual {
    min-height: 390px;
    margin: 15px -15px 0;
  }

  .validation-card {
    padding: 22px;
  }

  .orbit-one {
    width: 360px;
    height: 260px;
  }

  .orbit-two {
    width: 300px;
    height: 390px;
  }

  .floating-note {
    font-size: 9px;
  }

  .note-one {
    top: 41px;
    left: -2px;
  }

  .note-two {
    right: -4px;
    bottom: 40px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading.centered {
    margin-bottom: 40px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-card:nth-child(2) {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .benefit-card + .benefit-card {
    border-top: 1px solid var(--line);
  }

  .benefit-number {
    margin-bottom: 22px;
  }

  .process-grid {
    gap: 44px;
  }

  .demo-section {
    padding: 55px 0;
  }

  .demo-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 40px 28px;
  }

  .demo-card .button {
    width: 100%;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-brand {
    margin-bottom: 8px;
  }

  .modal-dialog {
    padding: 30px 24px;
  }
}
