@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DMSans-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

:root {
  --green: #123b35;
  --green-dark: #0d2d29;
  --mint: #70e2c0;
  --ink: #12213a;
  --muted: #62726d;
  --line: #dbe6e1;
  --paper: #f5f8f6;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 9%, rgba(112, 226, 192, 0.22), transparent 28%),
    linear-gradient(180deg, #fbfaf5 0, #f7faf8 42%, #fff 100%);
}

a {
  color: inherit;
}

:is(a, summary):focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}

.seo-skip {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.seo-skip:focus {
  transform: translateY(0);
}

.seo-shell {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.seo-nav {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  min-height: 70px;
  margin-top: 12px;
  padding: 0 16px 0 18px;
  gap: 18px;
  border: 1px solid rgba(18, 59, 53, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(18, 59, 53, 0.08);
  backdrop-filter: blur(18px);
}

.seo-nav > a:first-child img {
  display: block;
  width: 154px;
  height: auto;
}

.seo-nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.seo-nav-links a {
  color: #314b44;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.seo-nav-demo,
.seo-btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--green), #176b59);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 13px 30px rgba(18, 59, 53, 0.22);
}

.seo-mobile-menu {
  position: relative;
  display: none;
}

.seo-mobile-menu summary {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  font-size: 21px;
  font-weight: 800;
  list-style: none;
}

.seo-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.seo-mobile-menu nav {
  position: absolute;
  right: 0;
  top: 52px;
  display: grid;
  width: min(290px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(18, 59, 53, 0.18);
}

.seo-mobile-menu nav a {
  min-height: 44px;
  padding: 12px;
  border-radius: 10px;
  color: #29483f;
  font-weight: 750;
  text-decoration: none;
}

.seo-mobile-menu nav a:last-child {
  background: #eaf8f3;
  color: var(--green);
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
  min-height: 690px;
  padding: 78px 0 82px;
}

.seo-hero > div:first-child {
  position: relative;
  z-index: 3;
}

.seo-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(18, 59, 53, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.seo-hero h1,
.seo-section h2,
.seo-cta h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.052em;
}

.seo-hero h1 {
  max-width: 720px;
  margin: 22px 0;
  color: var(--green-dark);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 0.99;
}

.seo-hero p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.seo-visual {
  position: relative;
  min-width: 0;
  padding: 42px 0 32px;
}

.seo-visual::before {
  content: "";
  position: absolute;
  inset: 2% -7% -8% 13%;
  border: 1px solid rgba(18, 59, 53, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(112, 226, 192, 0.045);
}

.seo-shot-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 38px 90px rgba(18, 59, 53, 0.2);
}

.seo-shot-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 12px;
  background: #f4f7f5;
  color: #83918d;
  font-size: 10px;
}

.seo-shot-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4ddd9;
}

.seo-shot-bar i:first-child {
  background: #ff8c83;
}

.seo-shot-bar i:nth-child(2) {
  background: #ffd566;
}

.seo-shot-bar i:nth-child(3) {
  background: #6cd9a5;
}

.seo-shot-bar span {
  margin-left: 5px;
}

.seo-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: top;
}

.seo-visual-badge {
  position: absolute;
  right: -18px;
  bottom: 0;
  z-index: 4;
  width: min(230px, 42%);
  padding: 16px 18px;
  border: 1px solid rgba(18, 59, 53, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green);
  box-shadow: 0 18px 45px rgba(18, 59, 53, 0.15);
  backdrop-filter: blur(10px);
}

.seo-visual-badge span,
.seo-visual-badge strong {
  display: block;
}

.seo-visual-badge span {
  color: #6b7e78;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-visual-badge strong {
  margin-top: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  line-height: 1.25;
}

.seo-grid,
.seo-split {
  display: grid;
  gap: 18px;
}

.seo-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 4px 0 78px;
}

.seo-card {
  min-height: 218px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f8fbf9);
  box-shadow: 0 15px 38px rgba(18, 59, 53, 0.07);
}

.seo-card strong {
  display: block;
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.seo-card p,
.seo-section p {
  color: var(--muted);
  line-height: 1.65;
}

.seo-section {
  margin: 78px 0;
}

.seo-section h2 {
  margin: 0 0 17px;
  color: var(--green-dark);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.04;
}

.seo-split {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  padding: clamp(32px, 5vw, 60px);
  border-radius: 30px;
  background: var(--paper);
}

.seo-list {
  display: grid;
  gap: 12px;
}

.seo-list div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.seo-list i {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: #dff5ed;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.seo-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 82px 0 50px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 30px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 30px 70px rgba(18, 59, 53, 0.2);
}

.seo-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.04;
}

.seo-cta p {
  margin: 0;
  color: #d8eee7;
  line-height: 1.6;
}

.seo-cta .seo-btn.primary {
  background: #fff;
  color: var(--green);
  box-shadow: none;
}

.seo-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 31px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.seo-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: auto;
}

.seo-footer-links a {
  color: var(--green);
  font-weight: 750;
  text-decoration: none;
}

/* Shared commercial-page system */
.seo-nav-links a[aria-current="page"] {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--mint);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 28px;
  color: #667b74;
  font-size: 13px;
}

.seo-breadcrumbs a {
  color: var(--green);
  font-weight: 750;
  text-decoration: none;
}

.seo-breadcrumbs span[aria-hidden="true"] {
  color: #a7b6b1;
}

.seo-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  min-height: 670px;
  padding: 60px 0 88px;
}

.seo-page-hero h1,
.seo-display-title,
.seo-section-title {
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.052em;
}

.seo-page-hero h1 {
  max-width: 720px;
  margin: 20px 0 24px;
  font-size: clamp(45px, 5.35vw, 74px);
  line-height: 0.99;
}

.seo-page-hero p {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.67;
}

.seo-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 23px 0 0;
  padding: 0;
  color: #45645b;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.seo-proof-line li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--mint);
}

.seo-section-block {
  padding: clamp(70px, 8vw, 116px) 0;
  scroll-margin-top: 100px;
}

.seo-section-block.compact {
  padding: clamp(48px, 6vw, 82px) 0;
}

.seo-section-block.tint {
  position: relative;
}

.seo-section-block.tint::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  border-block: 1px solid #e1eae6;
  background: #f3f7f5;
}

.seo-section-heading {
  max-width: 820px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.seo-section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.seo-section-title,
.seo-section-heading h2 {
  margin: 14px 0 18px;
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4.35vw, 58px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.seo-section-heading p,
.seo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.seo-evidence {
  position: relative;
  min-width: 0;
}

.seo-evidence .seo-shot-frame {
  border-width: 5px;
}

.seo-evidence-note {
  display: grid;
  gap: 4px;
  width: min(320px, 72%);
  margin: -22px 22px 0 auto;
  position: relative;
  z-index: 3;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(18, 59, 53, 0.12);
}

.seo-evidence-note span {
  color: #72857f;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-evidence-note strong {
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  line-height: 1.3;
}

.seo-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(18, 59, 53, 0.06);
}

.seo-stat-strip div {
  min-width: 0;
  padding: 24px;
}

.seo-stat-strip div + div {
  border-left: 1px solid var(--line);
}

.seo-stat-strip span,
.seo-stat-strip strong {
  display: block;
}

.seo-stat-strip span {
  color: #6e817b;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-stat-strip strong {
  margin-top: 7px;
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.seo-workflow {
  display: grid;
  grid-template-columns: repeat(var(--steps, 7), minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-workflow li {
  position: relative;
  min-width: 0;
  padding: 0 14px 0 0;
}

.seo-workflow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: 5px;
  top: 12px;
  color: #94a8a1;
  font-weight: 900;
}

.seo-workflow span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 13px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.seo-workflow strong {
  display: block;
  padding-right: 12px;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.35;
}

.seo-workflow small {
  display: block;
  padding: 6px 14px 0 0;
  color: #71837d;
  line-height: 1.45;
}

.seo-content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.seo-content-split.reverse {
  grid-template-columns: minmax(520px, 1.18fr) minmax(0, 0.82fr);
}

.seo-content-split.reverse .seo-copy {
  order: 2;
}

.seo-copy h2 {
  margin: 14px 0 18px;
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.seo-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.seo-check-list li {
  position: relative;
  padding: 10px 0 10px 27px;
  color: #3f5d54;
  font-weight: 700;
}

.seo-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22806b;
  font-weight: 900;
}

.seo-feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 38px);
}

.seo-feature-columns article {
  padding-top: 21px;
  border-top: 3px solid var(--mint);
}

.seo-feature-columns strong {
  display: block;
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.seo-feature-columns p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.seo-portal-pair,
.seo-industry-grid,
.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-portal-pair article,
.seo-industry-card,
.seo-link-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(18, 59, 53, 0.06);
}

.seo-portal-pair article > div,
.seo-industry-card > div,
.seo-link-card {
  padding: 26px;
}

.seo-portal-pair h3,
.seo-industry-card h2,
.seo-link-card h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
}

.seo-portal-pair p,
.seo-industry-card p,
.seo-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.seo-portal-pair img,
.seo-industry-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #edf3f0;
}

.seo-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.seo-inline-link::after {
  content: "→";
}

.seo-industry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-industry-card > div {
  min-height: 260px;
}

.seo-industry-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.seo-industry-card li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #49645d;
  font-size: 12px;
  font-weight: 750;
}

.seo-central-view {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.seo-sector-stack {
  display: grid;
  gap: 10px;
}

.seo-sector-stack article,
.seo-central-output {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.seo-sector-stack strong,
.seo-central-output strong {
  display: block;
  color: var(--green-dark);
}

.seo-sector-stack span,
.seo-central-output span {
  color: #6b7f78;
  font-size: 13px;
}

.seo-central-arrow {
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 800;
}

.seo-central-output {
  padding: 32px;
  border-color: rgba(112, 226, 192, 0.55);
  background: var(--green);
  color: #fff;
}

.seo-central-output strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
}

.seo-central-output span {
  display: block;
  margin-top: 8px;
  color: #cce8df;
  line-height: 1.55;
}

.seo-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.seo-steps > li > span {
  color: #2b7d6b;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.seo-steps strong {
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.seo-steps p,
.seo-steps ul {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.seo-steps ul {
  padding-left: 18px;
}

.seo-pricing-hero-card {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(112, 226, 192, 0.45);
  border-radius: 28px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 28px 72px rgba(18, 59, 53, 0.2);
}

.seo-pricing-hero-card h2 {
  margin: 0;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.045em;
}

.seo-pricing-hero-card p {
  color: #d4ebe4;
  line-height: 1.65;
}

.seo-no-charge {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.seo-no-charge span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 750;
}

.seo-security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-security-grid article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.seo-security-grid strong {
  display: block;
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.seo-security-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.56;
}

.seo-faq {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.seo-faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.seo-faq summary {
  padding: 20px 52px 20px 20px;
  color: var(--green-dark);
  font-weight: 800;
  cursor: pointer;
}

.seo-faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.62;
}

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

.seo-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.seo-link-card:hover {
  border-color: rgba(18, 59, 53, 0.34);
  transform: translateY(-2px);
}

.seo-site-footer {
  margin-top: 56px;
  padding: 50px 0 34px;
  border-top: 1px solid var(--line);
}

.seo-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(120px, 0.65fr));
  gap: 30px;
}

.seo-footer-brand img {
  width: 160px;
}

.seo-footer-brand p {
  max-width: 270px;
  color: var(--muted);
  line-height: 1.55;
}

.seo-footer-group strong,
.seo-footer-group a {
  display: block;
}

.seo-footer-group strong {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 13px;
}

.seo-footer-group a {
  padding: 5px 0;
  color: #597069;
  font-size: 13px;
  text-decoration: none;
}

.seo-footer-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 35px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #778984;
  font-size: 12px;
}

.seo-footer-bottom nav {
  display: flex;
  gap: 15px;
  margin-left: auto;
}

.seo-footer-bottom a {
  color: var(--green);
  font-weight: 750;
  text-decoration: none;
}

.sector-healthcare .seo-page-hero {
  padding-bottom: 105px;
}

.sector-healthcare .seo-page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 88px 0 auto 52%;
  height: 530px;
  background: #eaf4f0;
  border-radius: 32px 0 0 32px;
}

.sector-construction .seo-workflow span {
  border-radius: 50%;
  background: #334e48;
}

.sector-technology .seo-page-hero {
  border-bottom: 1px solid var(--line);
}

.seo-pipeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.seo-pipeline div {
  position: relative;
  padding: 22px 15px;
  text-align: center;
}

.seo-pipeline div + div {
  border-left: 1px solid var(--line);
}

.seo-pipeline span {
  display: block;
  margin-bottom: 8px;
  color: #28816e;
  font-size: 11px;
  font-weight: 850;
}

.seo-pipeline strong {
  color: var(--green-dark);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .seo-page-hero,
  .seo-content-split,
  .seo-content-split.reverse {
    grid-template-columns: 1fr;
  }

  .seo-content-split.reverse .seo-copy {
    order: initial;
  }

  .seo-page-hero {
    min-height: 0;
  }

  .seo-workflow {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 0;
  }

  .seo-stat-strip,
  .seo-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-stat-strip div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .seo-stat-strip div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .seo-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .seo-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .seo-page-hero {
    gap: 30px;
    padding: 42px 4px 62px;
  }

  .seo-page-hero h1 {
    font-size: clamp(40px, 11.4vw, 54px);
  }

  .seo-stat-strip,
  .seo-feature-columns,
  .seo-portal-pair,
  .seo-industry-grid,
  .seo-link-grid,
  .seo-steps,
  .seo-security-grid,
  .seo-central-view {
    grid-template-columns: 1fr;
  }

  .seo-stat-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .seo-workflow,
  .seo-pipeline {
    grid-template-columns: 1fr 1fr;
  }

  .seo-workflow li:not(:last-child)::after {
    display: none;
  }

  .seo-pipeline div:nth-child(odd) {
    border-left: 0;
  }

  .seo-pipeline div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .seo-check-list,
  .seo-no-charge {
    grid-template-columns: 1fr;
  }

  .seo-central-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .seo-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-footer-bottom {
    display: grid;
  }

  .seo-footer-bottom nav {
    margin-left: 0;
  }

  .sector-healthcare .seo-page-hero::before {
    display: none;
  }
}

@media (max-width: 430px) {
  .seo-workflow,
  .seo-pipeline,
  .seo-footer-grid {
    grid-template-columns: 1fr;
  }

  .seo-pipeline div + div,
  .seo-pipeline div:nth-child(odd) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .seo-evidence-note {
    width: calc(100% - 20px);
    margin-right: 10px;
  }
}

#sector-content,
.seo-grid,
.seo-section,
.seo-cta {
  scroll-margin-top: 100px;
}

@media (max-width: 960px) {
  .seo-nav-links {
    display: none;
  }

  .seo-nav-demo {
    margin-left: auto;
  }

  .seo-mobile-menu {
    display: block;
  }

  .seo-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 34px;
    padding-top: 64px;
  }

  .seo-hero > div:first-child {
    max-width: 820px;
    text-align: center;
    margin: 0 auto;
  }

  .seo-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .seo-actions {
    justify-content: center;
  }

  .seo-visual {
    width: min(850px, 100%);
    margin: 0 auto;
  }

  .seo-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .seo-shell {
    width: min(100% - 24px, 1280px);
  }

  .seo-nav {
    top: 8px;
    min-height: 64px;
    margin-top: 8px;
    padding: 0 10px 0 14px;
    gap: 9px;
    border-radius: 15px;
  }

  .seo-nav > a:first-child img {
    width: 128px;
  }

  .seo-nav-demo {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .seo-hero {
    gap: 22px;
    padding: 48px 8px 58px;
  }

  .seo-hero h1 {
    margin: 18px 0;
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: 1.01;
  }

  .seo-hero p {
    font-size: 17px;
  }

  .seo-visual {
    padding: 25px 0 20px;
  }

  .seo-shot-frame {
    border-width: 4px;
    border-radius: 17px;
  }

  .seo-shot-bar {
    height: 28px;
  }

  .seo-visual-badge {
    right: -4px;
    width: 48%;
    padding: 12px;
  }

  .seo-visual-badge strong {
    font-size: 14px;
  }

  .seo-grid {
    grid-template-columns: 1fr;
    margin-bottom: 58px;
  }

  .seo-card {
    min-height: 0;
    padding: 24px;
  }

  .seo-section {
    margin: 58px 0;
  }

  .seo-split {
    padding: 27px 21px;
    border-radius: 23px;
  }

  .seo-cta {
    grid-template-columns: 1fr;
    margin: 62px 0 36px;
    padding: 30px 24px;
    border-radius: 23px;
  }

  .seo-cta .seo-btn {
    width: 100%;
  }

  .seo-footer {
    display: grid;
    padding-bottom: 34px;
  }

  .seo-footer-links {
    margin-left: 0;
  }
}

@media (max-width: 370px) {
  .seo-nav > a:first-child img {
    width: 112px;
  }

  .seo-nav-demo {
    display: none;
  }

  .seo-mobile-menu {
    margin-left: auto;
  }
}

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