:root {
  --navy: #1a1a1a;
  --ink: #132235;
  --orange: #ff6a00;
  --orange-deep: #ea5900;
  --muted: #5e6a78;
  --line: #dde4ec;
  --soft: #f7f9fc;
  --white: #ffffff;
  --dark: #102031;
  --dark-2: #172b40;
  --shadow: 0 18px 50px rgba(12, 27, 43, 0.1);
  --shadow-soft: 0 14px 36px rgba(12, 27, 43, 0.07);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

img {
  max-width: 100%;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 228, 236, 0.8);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.product-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  white-space: nowrap;
}

.product-mark {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border-radius: 2px;
  background: var(--orange);
  box-shadow: 6px 6px 0 rgba(255, 106, 0, 0.2);
}

.product-name {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.product-by {
  padding-left: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: var(--navy);
}

.nav-links a:not(.nav-corporate)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-corporate {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.nav-corporate:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 84px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -160px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.08), rgba(255, 106, 0, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(3rem, 5.5vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

h1 span {
  color: var(--orange);
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.018em;
}

.accent-line {
  width: 72px;
  height: 3px;
  margin-bottom: 25px;
  background: var(--orange);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 1.09rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.hero-pills span,
.review-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #536170;
  background: var(--soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 26px rgba(255, 106, 0, 0.22);
}

.btn-primary:hover {
  background: var(--orange-deep);
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.28);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--navy);
}

.btn-large {
  min-height: 54px;
  width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-grid {
  position: absolute;
  inset: 6% 0 0 8%;
  border-radius: 30px;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(19, 34, 53, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 34, 53, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.dashboard-card {
  position: absolute;
  left: 4%;
  top: 9%;
  width: 78%;
  min-height: 410px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(12, 27, 43, 0.14);
  transform: rotate(-1.5deg);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.045), transparent 32%);
  pointer-events: none;
}

.dashboard-topbar,
.evidence-head,
.report-ready {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-topbar {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-topbar strong,
.evidence-head strong,
.report-ready strong {
  display: block;
  color: var(--navy);
}

.dashboard-label,
.evidence-head span,
.report-ready span,
.capture-box span,
.capture-box small {
  display: block;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  padding-left: 14px;
  color: #2f8458;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42a66d;
  transform: translateY(-50%);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.dashboard-stats article {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
}

.dashboard-stats span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-stats strong {
  color: var(--navy);
  font-size: 1.45rem;
}

.evidence-panel {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.review-chip {
  color: #2d6d50 !important;
  border-color: rgba(55, 137, 98, 0.2);
  background: #edf8f2;
}

.photo-sequence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 16px;
}

.photo-slot {
  min-height: 92px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #d8e0e8;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(19, 34, 53, 0.05), rgba(255, 106, 0, 0.08)),
    var(--soft);
}

.photo-slot span {
  color: var(--orange);
  font-size: 0.67rem;
  font-weight: 900;
}

.photo-slot b {
  color: var(--navy);
  font-size: 0.72rem;
}

.report-ready {
  margin-top: 17px;
  padding: 13px 15px;
  border-radius: 12px;
  color: var(--white);
  background: var(--dark);
}

.report-ready span,
.report-ready strong {
  color: var(--white);
}

.report-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
}

.check {
  display: grid !important;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.mobile-card {
  position: absolute;
  right: 0;
  bottom: 2%;
  width: 190px;
  min-height: 350px;
  padding: 22px 16px 16px;
  border: 5px solid var(--dark);
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(180deg, #1b3148, #102031);
  box-shadow: 0 28px 60px rgba(12, 27, 43, 0.22);
  transform: rotate(3deg);
}

.mobile-speaker {
  width: 46px;
  height: 5px;
  margin: -10px auto 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.mobile-label {
  display: block;
  margin-bottom: 3px;
  color: #aebccc;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-card strong {
  font-size: 1.15rem;
}

.capture-box {
  margin-top: 34px;
  padding: 18px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.capture-box span {
  color: var(--orange);
}

.capture-box b {
  display: block;
  margin: 7px 0 18px;
  font-size: 0.9rem;
}

.capture-box small {
  color: #aebccc;
  line-height: 1.35;
  text-transform: none;
}

.mobile-button {
  margin-top: 38px;
  padding: 11px;
  border-radius: 8px;
  text-align: center;
  color: var(--white);
  background: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

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

.signal-grid article {
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.signal-grid article:last-child {
  border-right: 0;
}

.signal-grid strong {
  display: block;
  margin-bottom: 2px;
  color: var(--orange);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.signal-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 106, 0, 0.14), transparent 27%),
    linear-gradient(135deg, #102031, #182d43 55%, #102031);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.left-heading {
  max-width: 760px;
  margin-left: 0;
  text-align: left;
}

.section-intro {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.left-heading .section-intro {
  margin-left: 0;
}

.light-heading h2,
.section-dark h3 {
  color: var(--white);
}

.light-heading .section-intro {
  color: #b9c6d4;
}

.number-cards,
.problem-grid,
.benefit-grid,
.capture-modes {
  display: grid;
  gap: 22px;
}

.number-cards.three,
.problem-grid,
.capture-modes {
  grid-template-columns: repeat(3, 1fr);
}

.number-cards article,
.problem-card,
.benefit-grid article,
.capture-modes article {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.number-cards article > span,
.problem-number {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.number-cards p,
.problem-card p,
.benefit-grid p,
.capture-modes p,
.workflow-grid p,
.timeline p,
.deployment-card p,
.service-section p,
.adoption-card > p {
  color: var(--muted);
}

.insight-callout {
  margin-top: 24px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-left: 3px solid var(--orange);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.insight-callout p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.insight-mark {
  color: var(--orange);
  font-size: 1.7rem;
  font-weight: 900;
}

.comparison-panels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
}

.comparison-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.manual-panel {
  background: var(--soft);
}

.inspecta-panel {
  border-color: rgba(255, 106, 0, 0.3);
  background: linear-gradient(180deg, #fff7f0, #ffffff);
}

.comparison-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.comparison-heading span {
  color: var(--navy);
  font-weight: 800;
}

.comparison-heading strong {
  color: var(--orange);
  font-size: 1.5rem;
}

.comparison-panel ol {
  margin: 24px 0;
  padding-left: 22px;
}

.comparison-panel li {
  margin: 8px 0;
  color: var(--ink);
}

.comparison-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.versus {
  align-self: center;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 0.7rem;
  font-weight: 900;
}

.evidence-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.evidence-flow article {
  position: relative;
  padding: 25px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.evidence-flow article:last-child {
  border-right: 0;
}

.evidence-flow article::after {
  content: "→";
  position: absolute;
  z-index: 2;
  right: -9px;
  top: 45px;
  width: 18px;
  color: var(--orange);
  background: var(--dark-2);
  text-align: center;
  font-weight: 900;
}

.evidence-flow article:last-child::after {
  display: none;
}

.evidence-flow article > span {
  display: block;
  margin-bottom: 15px;
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.flow-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.68rem;
  font-weight: 900;
}

.evidence-flow h3 {
  font-size: 0.95rem;
}

.evidence-flow p {
  margin-bottom: 0;
  color: #b9c6d4;
  font-size: 0.84rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.workflow-grid article {
  padding: 30px 25px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), #fbfcfe);
}

.workflow-grid article:last-child {
  border-right: 0;
}

.step-number {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

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

.benefit-grid article {
  min-height: 230px;
}

.benefit-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 13px;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 900;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 72px;
}

.report-preview {
  min-height: 480px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 65% 30%, rgba(255, 106, 0, 0.13), transparent 32%),
    var(--soft);
}

.report-sheet {
  width: min(360px, 78%);
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 52px rgba(12, 27, 43, 0.14);
  transform: rotate(2deg);
}

.report-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--navy);
}

.report-sheet-header span {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.report-sheet-header small {
  color: var(--muted);
}

.report-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 20px 0;
}

.report-meta div {
  padding: 10px;
  background: var(--soft);
}

.report-meta span,
.report-meta strong {
  display: block;
}

.report-meta span {
  color: var(--muted);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.report-meta strong {
  font-size: 0.75rem;
}

.report-lines {
  display: grid;
  gap: 7px;
  margin-bottom: 20px;
}

.report-lines span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: #e4e9ef;
}

.report-lines span:nth-child(2) {
  width: 82%;
}

.report-lines span:nth-child(3) {
  width: 68%;
}

.report-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.report-photo-grid div {
  aspect-ratio: 1.35;
  border-radius: 4px;
  background: linear-gradient(145deg, #dfe6ed, #f1f4f7);
}

.report-footer-line {
  width: 42%;
  height: 4px;
  margin: 28px 0 0 auto;
  background: var(--orange);
}

.adoption-section {
  padding-top: 0;
}

.adoption-card {
  padding: 42px 46px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 56px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.adoption-card h2 {
  margin-bottom: 0;
  color: var(--white);
}

.adoption-card > p {
  margin-bottom: 0;
  color: #c1cbd5;
}

.deployment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.deployment-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.deployment-card.featured {
  border-color: rgba(255, 106, 0, 0.28);
  background: linear-gradient(180deg, #fff8f2, #ffffff);
}

.deployment-label {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deployment-card a {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.deployment-card a:hover {
  color: var(--orange);
}

.capture-modes article {
  box-shadow: none;
}

.capture-modes article > span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}


/* Evidence integrity -------------------------------------------------- */

.integrity-section {
  padding-top: 20px;
}

.integrity-shell {
  position: relative;
  overflow: hidden;
  padding: 50px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 106, 0, 0.18), transparent 31%),
    linear-gradient(135deg, #102031, #182d43 58%, #102031);
  box-shadow: var(--shadow);
}

.integrity-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.integrity-copy,
.integrity-grid,
.integrity-result {
  position: relative;
  z-index: 1;
}

.integrity-copy {
  max-width: 830px;
  margin-bottom: 32px;
}

.integrity-copy h2 {
  color: var(--white);
}

.integrity-copy > p:not(.eyebrow) {
  max-width: 780px;
  color: #c4cfda;
}

.integrity-note {
  display: inline-flex;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 106, 0, 0.38);
  border-radius: 999px;
  color: #ffd8bc;
  background: rgba(255, 106, 0, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.integrity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.integrity-grid article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.integrity-grid article > span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.integrity-grid h3 {
  color: var(--white);
}

.integrity-grid p {
  margin-bottom: 0;
  color: #b9c6d4;
}

.integrity-result {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.055);
}

.integrity-result > span {
  color: var(--orange);
  font-weight: 900;
}

.integrity-result p {
  margin: 0;
  color: #d7e0e8;
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline article {
  position: relative;
  padding: 34px 36px 28px 0;
}

.timeline article + article {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.timeline span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
}

thead th {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

tbody th {
  color: var(--white);
  font-size: 0.86rem;
}

td {
  color: #bec9d4;
  font-size: 0.86rem;
}

.inspecta-column,
td:last-child {
  color: #ffb37d;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.contact-section {
  padding: 96px 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 106, 0, 0.11), transparent 25%),
    var(--white);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 720px;
}

.contact-card p {
  color: var(--muted);
}

.contact-note {
  margin-top: 22px;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
  color: var(--ink);
  font-weight: 700;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-mail {
  margin-top: 7px;
  text-align: center;
  color: var(--orange);
  font-weight: 800;
}

.site-footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fbfcfe;
}

.footer-main {
  padding: 38px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inspecta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
}

.footer-inspecta strong {
  font-size: 1.15rem;
}

.footer-product p {
  margin: 7px 0 0;
  font-size: 0.84rem;
}

.footer-corporate {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
}

.footer-corporate img {
  display: block;
  width: 142px;
  height: auto;
}

.footer-bottom {
  padding: 21px 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 17px;
  }

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

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    min-height: 540px;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

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

  .evidence-flow article:nth-child(3) {
    border-right: 0;
  }

  .evidence-flow article:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .evidence-flow article:nth-child(3)::after {
    display: none;
  }

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

  .workflow-grid article:nth-child(2) {
    border-right: 0;
  }

  .workflow-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split-feature {
    gap: 44px;
  }
}

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

  .integrity-shell {
    padding: 36px;
  }

  .nav-shell {
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 61;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    padding: 24px 20px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.985);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 42px rgba(12, 27, 43, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-corporate {
    margin-top: 10px;
    border: 1px solid var(--navy) !important;
    text-align: center;
  }

  .product-by {
    display: none;
  }

  .signal-grid,
  .number-cards.three,
  .problem-grid,
  .capture-modes,
  .timeline,
  .deployment-grid,
  .split-feature,
  .adoption-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .signal-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-grid article:last-child {
    border-bottom: 0;
  }

  .comparison-panels {
    grid-template-columns: 1fr;
  }

  .versus {
    margin: -4px auto;
  }

  .timeline article,
  .timeline article + article {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .adoption-card {
    gap: 20px;
  }

  .contact-card {
    gap: 40px;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .integrity-section {
    padding-top: 0;
  }

  .integrity-shell {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .integrity-grid article {
    padding: 22px;
  }

  .integrity-note {
    border-radius: 14px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding: 58px 0 58px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.65rem);
  }

  .section {
    padding: 68px 0;
  }

  .hero-visual {
    min-height: 500px;
  }

  .dashboard-card {
    left: 0;
    width: 92%;
    min-height: 380px;
    padding: 17px;
  }

  .mobile-card {
    width: 152px;
    min-height: 300px;
    right: -6px;
    padding: 18px 12px 13px;
  }

  .dashboard-stats {
    gap: 6px;
  }

  .dashboard-stats article {
    padding: 9px;
  }

  .dashboard-stats strong {
    font-size: 1.15rem;
  }

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

  .photo-slot {
    min-height: 68px;
  }

  .capture-box {
    margin-top: 24px;
  }

  .mobile-button {
    margin-top: 25px;
  }

  .workflow-grid,
  .benefit-grid,
  .evidence-flow {
    grid-template-columns: 1fr;
  }

  .workflow-grid article,
  .evidence-flow article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .evidence-flow article {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .workflow-grid article:last-child,
  .evidence-flow article:last-child {
    border-bottom: 0;
  }

  .evidence-flow article::after {
    display: none;
  }

  .comparison-panel,
  .number-cards article,
  .problem-card,
  .benefit-grid article,
  .capture-modes article,
  .deployment-card {
    padding: 24px;
  }

  .report-preview {
    min-height: 410px;
  }

  .report-sheet {
    width: 82%;
    min-height: 360px;
    padding: 20px;
  }

  .adoption-card {
    padding: 32px 26px;
  }

  .contact-card {
    padding: 30px 24px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-corporate {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
