:root {
  --navy: #123a6f;
  --navy-2: #1a4f87;
  --ink: #173153;
  --charcoal: #26476d;
  --muted: #667085;
  --line: #dfe5ea;
  --soft-line: #edf1f4;
  --paper: #ffffff;
  --off-white: #f8fafb;
  --mist: #eef5f6;
  --teal: #0d766e;
  --teal-soft: #dff3f0;
  --green: #195f4f;
  --orange: #f97316;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
}

body.rtl {
  text-align: right;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 96px;
  padding: 18px max(28px, calc((100vw - 1360px) / 2));
  border-bottom: 1px solid rgba(223, 229, 234, 0.88);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 300px;
  color: var(--navy);
}

.brand img {
  width: 255px;
  height: 74px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: #5f6675;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0b1738);
  box-shadow: 0 12px 24px rgba(5, 11, 31, 0.18);
}

.button.primary:hover {
  box-shadow: 0 16px 34px rgba(5, 11, 31, 0.24);
}

.button.secondary {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

.button.small {
  min-height: 44px;
  padding-inline: 20px;
}

.section-shell {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
  gap: 58px;
  align-items: start;
  min-height: calc(100vh - 96px);
  padding-top: 56px;
  padding-bottom: 64px;
}

.hero-copy {
  padding-top: 42px;
}

.hero-product {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-process {
  display: block;
  min-height: auto;
  padding-top: 52px;
  padding-bottom: 76px;
}

.hero-process .hero-copy {
  display: grid;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto 34px;
  padding-top: 0;
  text-align: center;
}

.hero-process h1 {
  max-width: 820px;
}

.hero-process .hero-text {
  max-width: 760px;
}

.hero-process .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.hero-actions-after {
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 0;
}

.hero-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(13, 118, 110, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fbfb);
  box-shadow: var(--shadow);
}

.hero-step {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid #d4dce3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 41, 74, 0.08);
}

.step-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 108px;
  padding: 20px;
  border-bottom: 1px solid var(--soft-line);
  background: linear-gradient(180deg, #fbfcfd, #f3f7f8);
}

.step-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 950;
}

.step-head strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.1;
}

.step-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.step-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 260px;
  margin: 18px;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  background: #fff;
}

.plan-step-media img,
.report-step-media img {
  width: auto;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}

.capture-step-media {
  background: #dbe5e8;
}

.capture-step-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capture-step-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 88px;
  background: linear-gradient(180deg, transparent, rgba(5, 11, 31, 0.75));
}

.step-meta {
  display: grid;
  gap: 10px;
  margin: auto 20px 22px;
}

.step-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.step-meta dt,
.step-meta dd {
  margin: 0;
}

.step-meta dd {
  color: var(--navy);
  text-align: right;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: auto 20px 22px;
}

.step-tags span,
.step-tags strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.step-tags span {
  color: #9a4a0c;
  background: #fff3e8;
}

.step-tags strong {
  color: var(--navy);
  border: 1px solid #cbd4dd;
  background: #fff;
}

.process-arrow {
  display: grid;
  place-items: center;
  align-self: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(13, 118, 110, 0.2);
  border-radius: 50%;
  color: var(--teal);
  background: #fff;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(16, 41, 74, 0.08);
}

.field-image-card {
  position: relative;
  max-width: 660px;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--soft-shadow);
}

.field-image-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.field-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 10%, rgba(5, 11, 31, 0.72) 100%),
    linear-gradient(90deg, rgba(13, 118, 110, 0.3), transparent 55%);
}

.field-image-card figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.field-image-card span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
}

.hero-product {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(13, 118, 110, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff, #f7fafb);
  box-shadow: var(--shadow);
}

.flow-label {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-label i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(13, 118, 110, 0.08));
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.mockup-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid #cfd7de;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 41, 74, 0.08);
}

.mockup-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--soft-line);
  background: linear-gradient(180deg, #f9fbfc, #f3f7f8);
  font-size: 17px;
}

.mockup-head em {
  margin-left: auto;
  padding: 4px 10px;
  border: 1px solid #c9d1d8;
  border-radius: 999px;
  color: var(--navy);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.icon,
.mini-icon,
.card-icon,
.large-icon {
  position: relative;
  overflow: hidden;
}

.icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: var(--navy);
  background: linear-gradient(145deg, #eef5f6, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(16, 41, 74, 0.1);
}

.icon::before,
.mini-icon::before,
.card-icon::before,
.large-icon::before {
  position: relative;
  z-index: 1;
  color: currentColor;
  font-weight: 950;
}

.icon-plan::before,
.mini-report::before,
.icon-plan-review::before {
  content: "▤";
}

.icon-capture::before,
.mini-camera::before {
  content: "◉";
}

.icon-alert {
  color: var(--orange);
  background: linear-gradient(145deg, #fff3e9, #ffffff);
}

.icon-alert::before,
.icon-fragment::before {
  content: "△";
}

.plan-frame,
.video-frame,
.report-preview {
  margin: 22px 20px 16px;
}

.plan-frame {
  display: grid;
  place-items: center;
  height: 230px;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  background: #fff;
}

.plan-frame img {
  width: auto;
  max-width: 92%;
  height: 94%;
  object-fit: contain;
}

.video-frame {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: 12px;
  background: #dbe5e8;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 76px;
  background: linear-gradient(180deg, transparent, rgba(5, 11, 31, 0.72));
}

.timestamp,
.site-tag {
  position: absolute;
  z-index: 1;
  bottom: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.timestamp {
  left: 14px;
}

.site-tag {
  right: 14px;
}

.report-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 16px;
  margin: 22px 20px 16px;
  padding: 16px;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 24% 20%, rgba(13, 118, 110, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff, #fbfcfd);
}

.report-document {
  display: grid;
  place-items: center;
  min-height: 390px;
  border: 1px solid #e6eaee;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(16, 41, 74, 0.02);
}

.report-image {
  width: auto;
  max-width: 100%;
  max-height: 372px;
  object-fit: contain;
  border: 1px solid #e6eaee;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.report-findings-panel {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 18px;
  border: 1px solid rgba(13, 118, 110, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(13, 118, 110, 0.07), rgba(255, 255, 255, 0.95)),
    #fff;
}

.panel-kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-findings-panel h4 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
}

.report-findings-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-findings-panel li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.report-findings-panel li span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.report-findings-panel li:nth-child(3) span {
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 118, 110, 0.14);
}

.report-findings-panel dl {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 41, 74, 0.1);
}

.report-findings-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.report-findings-panel dt,
.report-findings-panel dd {
  margin: 0;
}

.report-findings-panel dd {
  color: var(--navy);
  text-align: right;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: auto 20px 20px;
}

.meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.meta-list dt {
  margin: 0;
  font-weight: 800;
}

.meta-list dd {
  margin: 0;
  color: var(--charcoal);
  font-weight: 900;
  text-align: right;
}

.report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 20px 20px;
}

.report-card {
  grid-column: 1 / -1;
  min-height: 410px;
}

.report-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 20px 20px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
}

.report-status-bar span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
  text-transform: uppercase;
}

.report-status-bar strong {
  font-size: 15px;
}

.report-tags span,
.report-tags b {
  padding: 6px 10px;
  border: 1px solid #aeb8c2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.report-tags .orange {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}

.report-tags b {
  width: 100%;
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
  text-align: center;
}

.credibility {
  padding: 52px 24px 60px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(238, 245, 246, 0.7), rgba(248, 250, 251, 0.95)),
    var(--mist);
  text-align: center;
}

.credibility p {
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.credibility-items,
.team-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px 74px;
}

.team-items {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  gap: 22px;
  align-items: start;
}

.credibility-items span,
.team-items span {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 190px;
  color: #344054;
  font-weight: 800;
}

.credibility-items b,
.team-items b {
  font: inherit;
  font-weight: 800;
}

.credibility-items i,
.team-items i,
.card-icon,
.large-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(13, 118, 110, 0.16), rgba(255, 255, 255, 0.92)),
    #f6fafb;
  box-shadow:
    inset 0 0 0 1px rgba(16, 41, 74, 0.1),
    0 12px 28px rgba(16, 41, 74, 0.08);
  font-style: normal;
  font-weight: 900;
}

.brand-svg-icon {
  width: 66px;
  height: 66px;
  overflow: visible;
  filter: drop-shadow(0 14px 24px rgba(16, 41, 74, 0.12));
}

.brand-svg-icon .svg-bg {
  stroke: rgba(16, 41, 74, 0.12);
  stroke-width: 1;
}

.brand-svg-icon .svg-bg {
  fill: #f7fbfb;
}

.brand-svg-icon .svg-road-main,
.brand-svg-icon .svg-doc,
.brand-svg-icon .svg-camera {
  fill: none;
  stroke: var(--navy-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-svg-icon .road-side {
  stroke: var(--teal);
}

.brand-svg-icon .svg-road-mark,
.brand-svg-icon .svg-doc-line,
.brand-svg-icon .svg-doc-fold,
.brand-svg-icon .svg-chart-axis,
.brand-svg-icon .svg-chart {
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-svg-icon .svg-lens {
  fill: rgba(13, 118, 110, 0.1);
  stroke: var(--teal);
  stroke-width: 3;
}

.brand-svg-icon .svg-lens-core {
  fill: var(--navy-2);
}

.brand-svg-icon .svg-chart-dot {
  fill: var(--orange);
  stroke: #fff;
  stroke-width: 2;
}

.svg-card-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.svg-card-icon::after {
  display: none;
}

.svg-card-icon .svg-bg {
  fill: #f7fbfb;
  stroke: rgba(16, 41, 74, 0.12);
  stroke-width: 1;
}

.svg-card-icon .svg-checklist,
.svg-card-icon .svg-check,
.svg-card-icon .svg-list-line,
.svg-card-icon .svg-evidence-card,
.svg-card-icon .svg-evidence-line,
.svg-card-icon .svg-eye,
.svg-card-icon .svg-cycle,
.svg-card-icon .svg-arrow,
.svg-card-icon .svg-axis,
.svg-card-icon .svg-trend,
.svg-card-icon .svg-review-doc,
.svg-card-icon .svg-review-check,
.svg-card-icon .svg-person-body,
.svg-card-icon .svg-workflow-node,
.svg-card-icon .svg-helmet,
.svg-card-icon .svg-helmet-brim,
.svg-card-icon .svg-people-line,
.svg-card-icon .svg-cone,
.svg-card-icon .svg-cone-stripe,
.svg-card-icon .svg-map,
.svg-card-icon .svg-map-line,
.svg-card-icon .svg-node-line,
.svg-card-icon .svg-alert-triangle,
.svg-card-icon .svg-alert-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.svg-card-icon .svg-checklist,
.svg-card-icon .svg-evidence-card,
.svg-card-icon .svg-eye,
.svg-card-icon .svg-cycle,
.svg-card-icon .svg-axis,
.svg-card-icon .svg-review-doc,
.svg-card-icon .svg-person-body,
.svg-card-icon .svg-helmet,
.svg-card-icon .svg-people-line,
.svg-card-icon .svg-cone,
.svg-card-icon .svg-map,
.svg-card-icon .svg-node-line,
.svg-card-icon .svg-alert-triangle {
  stroke: var(--navy-2);
}

.svg-card-icon .svg-check,
.svg-card-icon .svg-list-line,
.svg-card-icon .svg-evidence-line,
.svg-card-icon .svg-arrow,
.svg-card-icon .svg-trend,
.svg-card-icon .svg-review-check,
.svg-card-icon .svg-workflow-node,
.svg-card-icon .svg-helmet-brim,
.svg-card-icon .svg-cone-stripe,
.svg-card-icon .svg-map-line,
.svg-card-icon .svg-alert-line {
  stroke: var(--teal);
}

.svg-card-icon .svg-evidence-card.back {
  opacity: 0.42;
}

.svg-card-icon .svg-evidence-card.mid {
  opacity: 0.72;
}

.svg-card-icon .svg-evidence-dot {
  fill: var(--orange);
}

.svg-card-icon .svg-alert-dot-small {
  fill: var(--orange);
}

.svg-card-icon .svg-eye-dot,
.svg-card-icon .svg-person,
.svg-card-icon .svg-node {
  fill: var(--navy-2);
}

.svg-card-icon .svg-person.side {
  fill: var(--teal);
  opacity: 0.88;
}

.svg-card-icon .svg-node {
  stroke: #fff;
  stroke-width: 2;
}

.credibility-items i::after,
.team-items i::after,
.card-icon::after,
.large-icon::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13, 118, 110, 0.18);
}

.mini-icon::before,
.card-icon::before,
.large-icon::before {
  font-size: 22px;
}

.mini-flow::before,
.icon-consistency::before,
.mini-workflow::before {
  content: "⟲";
}

.mini-visibility::before,
.icon-clarity::before,
.mini-vision::before {
  content: "◉";
}

.icon-barrier::before,
.icon-cone::before {
  content: "◭";
}

.icon-mismatch::before,
.icon-review::before {
  content: "☑";
}

.icon-chart::before {
  content: "▥";
}

.icon-people::before {
  content: "◌";
}

.icon-network::before {
  content: "↗";
}

.mini-infra::before {
  content: "▦";
}

.mini-code::before {
  content: "</>";
  font-size: 14px;
}

.mini-ops::before {
  content: "⚙";
}

.mini-discovery::before {
  content: "□";
}

.brand-svg-icon .svg-bridge,
.brand-svg-icon .svg-code,
.brand-svg-icon .svg-screen,
.brand-svg-icon .svg-code-line,
.brand-svg-icon .svg-screen-stand,
.brand-svg-icon .svg-gear,
.brand-svg-icon .svg-pin-outline {
  fill: none;
  stroke: var(--navy-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-svg-icon .svg-code-line,
.brand-svg-icon .svg-screen-stand {
  stroke: var(--teal);
}

.brand-svg-icon .svg-gear-core {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
}

.brand-svg-icon .svg-pin-dot {
  fill: var(--orange);
}

.centered {
  text-align: center;
}

.centered h2,
.section-heading h2 {
  width: min(860px, 100%);
  margin: 0 auto 18px;
}

.section-intro {
  width: min(820px, 100%);
  margin: 0 auto 58px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.info-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(13, 118, 110, 0.04), transparent 36%),
    #fff;
  box-shadow: var(--soft-shadow);
  text-align: left;
}

.info-card h3 {
  margin: 24px 0 14px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.card-icon.teal {
  color: var(--teal);
  background: var(--teal-soft);
}

.workflow-section {
  padding-top: 70px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 62px;
  overflow: hidden;
}

.workflow article {
  position: relative;
  padding: 86px 18px 0;
  text-align: center;
}

.workflow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -14%;
  width: 28%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), #c8d4dc);
}

.workflow span {
  position: absolute;
  top: 10px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 0 0 10px rgba(13, 118, 110, 0.1);
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 900;
}

.workflow h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.workflow p {
  color: var(--muted);
  line-height: 1.5;
}

.product-output {
  padding-top: 86px;
}

.output-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  margin-top: 52px;
  padding: 22px;
  border: 1px solid #cfd9df;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f4f8f9);
  box-shadow: var(--shadow);
}

.board-top {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
}

.board-top div,
.output-side div {
  padding: 18px;
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  background: #fff;
}

.board-top span,
.output-side span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.board-top strong,
.output-side strong {
  color: var(--navy);
  font-size: 16px;
}

.board-top strong {
  overflow-wrap: anywhere;
}

.board-media {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
}

.board-media img {
  width: 100%;
  height: 540px;
  object-fit: contain;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  background: #fff;
}

.board-media img:last-child {
  padding: 12px;
}

.output-side {
  display: grid;
  gap: 14px;
}

.output-side div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.infrastructure-band {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin: 32px 0 28px;
  color: #fff;
}

.infrastructure-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 74%;
}

.infrastructure-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 31, 0.74), rgba(5, 11, 31, 0.48)),
    linear-gradient(180deg, rgba(13, 118, 110, 0.24), transparent);
}

.infrastructure-band div {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 48px));
}

.infrastructure-band h2 {
  color: #fff;
}

.infrastructure-band p {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.55;
}

.quote-card {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  text-align: left;
}

.quote-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 12px;
  border-radius: 10px;
  color: var(--navy);
  background: #e8edf1;
  font-size: 28px;
  font-weight: 900;
  vertical-align: middle;
}

.quote-card figcaption {
  display: inline-flex;
  padding: 5px 12px;
  border: 1px solid #9da8b2;
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.quote-card blockquote {
  margin: 28px 0 20px;
  color: var(--ink);
  font-size: 21px;
  font-style: italic;
  line-height: 1.55;
}

.quote-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.field-professionals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.field-copy p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.6;
}

.field-copy > strong {
  display: block;
  margin: 22px 0 28px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.5;
}

.field-professionals > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  color: var(--teal);
  font-size: 13px;
}

.team-section {
  padding-top: 74px;
}

.team-items {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  gap: 22px;
  align-items: start;
  margin-top: 48px;
}

.team-items span {
  max-width: none;
}

.brand-svg-icon .svg-eye-ring {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
}

.brand-svg-icon .svg-eye {
  fill: none;
  stroke: var(--navy-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-svg-icon .svg-eye-spark {
  fill: var(--orange);
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 100px 24px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(13, 118, 110, 0.08), transparent 42%),
    #fff;
  text-align: center;
}

.final-cta h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.final-cta p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 20px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 58px 24px 70px;
  border-top: 1px solid var(--line);
  background: #f3f7f8;
  text-align: center;
}

.footer-brand {
  min-width: 0;
  justify-content: center;
}

.footer-brand img {
  width: 275px;
  height: 82px;
  object-position: center;
}

body.rtl .brand img {
  object-position: right center;
}

body.rtl .hero-process .hero-copy,
body.rtl .centered,
body.rtl .section-heading,
body.rtl .credibility,
body.rtl .team-section,
body.rtl .final-cta,
body.rtl .site-footer {
  text-align: center;
}

body.rtl .info-card,
body.rtl .field-copy,
body.rtl .quote-card {
  text-align: right;
}

body.rtl .step-meta dd,
body.rtl .meta-list dd {
  text-align: left;
}

body.rtl .timestamp {
  right: 14px;
  left: auto;
}

body.rtl .site-tag {
  right: auto;
  left: 14px;
}

body.rtl .check-list li {
  padding-right: 34px;
  padding-left: 0;
}

body.rtl .check-list li::before {
  right: 0;
  left: auto;
}

.site-footer h2 {
  margin: 0;
  font-size: 22px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer a {
  color: var(--orange);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  color: var(--navy);
}

.site-footer small {
  margin-top: 24px;
  color: #98a2b3;
  font-weight: 800;
}

.legal-page {
  background: #f6f9fb;
}

.legal-header {
  position: static;
}

.legal-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-shell h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(42px, 5vw, 64px);
}

.legal-shell h2 {
  margin: 44px 0 14px;
  font-size: 24px;
  line-height: 1.25;
}

.legal-shell p {
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.75;
}

.legal-shell a {
  color: var(--orange);
  font-weight: 900;
}

.legal-updated {
  margin-bottom: 42px;
  color: var(--muted);
  font-weight: 800;
}

.legal-shell section {
  padding-bottom: 2px;
}

.legal-shell hr {
  margin: 54px 0 36px;
  border: 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 1450px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-links {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 22px;
  }
}

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

  .hero-flow {
    grid-template-columns: 1fr;
  }

  .process-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .mockup-grid,
  .card-grid.three,
  .field-professionals,
  .output-board {
    grid-template-columns: 1fr;
  }

  .card-grid.five {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-items {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: auto;
    padding: 14px 18px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 176px;
    height: 58px;
  }

  .site-header .button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .section-shell {
    width: min(100% - 32px, 1360px);
    padding: 74px 0;
  }

  .hero {
    gap: 42px;
    min-height: auto;
    padding-top: 48px;
  }

  .hero-process {
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .hero-process .hero-copy {
    margin-bottom: 34px;
  }

  .hero-flow {
    padding: 14px;
    border-radius: 20px;
  }

  .hero-step {
    min-height: auto;
  }

  .step-head {
    min-height: auto;
    padding: 18px;
  }

  .step-media {
    height: 330px;
    margin: 16px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text,
  .section-intro,
  .field-copy p,
  .infrastructure-band p {
    font-size: 18px;
  }

  .flow-label {
    display: none;
  }

  .hero-product {
    padding: 14px;
    border-radius: 18px;
  }

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

  .plan-frame {
    height: 330px;
  }

  .video-frame {
    height: 230px;
  }

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

  .report-document,
  .report-findings-panel {
    min-height: auto;
  }

  .report-image {
    max-height: 360px;
  }

  .workflow,
  .board-top,
  .board-media,
  .card-grid.five {
    grid-template-columns: 1fr;
  }

  .board-media img {
    height: 440px;
  }

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

  .credibility-items,
  .team-items {
    gap: 28px;
  }

  .team-items {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .info-card {
    min-height: auto;
    padding: 24px;
  }

  .board-media img,
  .field-professionals > img {
    height: 320px;
  }
}

@media (max-width: 520px) {
  .nav-links {
    gap: 22px;
    font-size: 13px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-actions {
    display: grid;
  }

  .field-image-card figcaption {
    position: relative;
    inset: auto;
    padding: 14px;
    background: var(--navy);
  }

  .field-image-card::after {
    display: none;
  }

  .mockup-head {
    min-height: 58px;
    padding: 14px 16px;
    font-size: 16px;
  }

  .plan-frame,
  .video-frame,
  .report-preview,
  .meta-list,
  .report-tags {
    margin-inline: 16px;
  }
}

/* Current landing-page refinements */
.eyebrow {
  font-size: 18px;
  line-height: 1.35;
}

.button.primary,
.step-number,
.workflow span,
.report-status-bar {
  background: linear-gradient(135deg, var(--navy), #1c4f86);
}

.hero-flow {
  align-items: start;
}

.process-arrow {
  align-self: start;
  margin-top: 22px;
}

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

.credibility p {
  width: min(980px, 100%);
  margin-inline: auto;
  font-size: 22px;
  line-height: 1.45;
}

.field-band {
  position: relative;
  display: grid;
  min-height: 620px;
  margin: 34px 0 28px;
  overflow: hidden;
  color: #fff;
  direction: ltr;
}

.field-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
}

.field-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 58, 111, 0.86) 0%, rgba(18, 58, 111, 0.72) 36%, rgba(18, 58, 111, 0.2) 72%),
    linear-gradient(180deg, rgba(18, 58, 111, 0.18), rgba(18, 58, 111, 0.26));
}

.field-band .field-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-self: start;
  width: min(680px, calc(100% - 48px));
  min-height: 620px;
  margin-left: max(24px, calc((100vw - 1360px) / 2));
  padding: 76px 0;
}

.field-band h2 {
  color: #fff;
}

.field-band .field-copy p,
.field-band .field-copy > strong {
  color: rgba(255, 255, 255, 0.9);
}

.field-band .check-list {
  max-width: 620px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.field-band .check-list li {
  color: #fff;
}

.field-band .check-list li::before {
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

body.rtl .field-band .field-copy {
  direction: rtl;
  justify-self: start;
  margin-right: auto;
  margin-left: max(24px, calc((100vw - 1360px) / 2));
}

body.rtl .field-band::after {
  background:
    linear-gradient(90deg, rgba(18, 58, 111, 0.86) 0%, rgba(18, 58, 111, 0.72) 36%, rgba(18, 58, 111, 0.2) 72%),
    linear-gradient(180deg, rgba(18, 58, 111, 0.18), rgba(18, 58, 111, 0.26));
}

@media (max-width: 1180px) {
  .process-arrow {
    margin-top: 0;
  }

  .field-band,
  .field-band .field-copy {
    min-height: 680px;
  }
}

@media (max-width: 820px) {
  .eyebrow {
    font-size: 16px;
  }

  .credibility p {
    font-size: 19px;
  }

  .field-band {
    min-height: 760px;
  }

  .field-band > img {
    object-position: 62% center;
  }

  .field-band::after,
  body.rtl .field-band::after {
    background:
      linear-gradient(180deg, rgba(18, 58, 111, 0.88), rgba(18, 58, 111, 0.62) 62%, rgba(18, 58, 111, 0.3)),
      linear-gradient(90deg, rgba(18, 58, 111, 0.42), transparent);
  }

  .field-band .field-copy,
  body.rtl .field-band .field-copy {
    width: min(100% - 32px, 680px);
    min-height: 760px;
    margin-inline: auto;
    padding: 54px 0;
  }
}
