:root {
  --ink: #07111f;
  --navy: #0a1424;
  --panel: #101d2f;
  --steel: #6f8197;
  --muted: #8da0b4;
  --line: rgba(142, 163, 184, 0.24);
  --paper: #f4f7fb;
  --white: #ffffff;
  --cyan: #25c7f0;
  --blue: #246bfe;
  --green: #1fbf75;
  --amber: #f4a62a;
  --red: #ef4d5d;
  --shadow: 0 24px 80px rgba(5, 13, 27, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 12% 0, rgba(37, 199, 240, 0.12), transparent 24rem),
    linear-gradient(180deg, #eef3f8 0, #f7f9fc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0, transparent 520px);
}

img, svg {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 18px 24px;
  color: var(--white);
  background: rgba(8, 17, 31, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 26px 26px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(37, 199, 240, 0.42);
  border-radius: 14px;
  color: var(--cyan);
  font-weight: 900;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(37,199,240,0.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: #cbd8e8;
  font-size: 14px;
}

.nav-links a,
.footer-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--cyan);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(37, 199, 240, 0.45);
  border-radius: 999px;
  color: var(--white);
  background: rgba(37, 199, 240, 0.12);
  font-weight: 700;
}

.section-shell {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 24px;
}

.hero {
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.64fr);
  gap: 46px;
  align-items: center;
  min-height: 650px;
  color: var(--white);
  padding-top: 56px;
  padding-bottom: 88px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -118px;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 199, 240, 0.2), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(36, 107, 254, 0.22), transparent 28rem),
    linear-gradient(145deg, #08111f 0, #0a1424 58%, #0d1b2d 100%);
  box-shadow: 0 34px 80px rgba(8, 17, 31, 0.22);
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.1vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 650px;
  color: #d7e5f4;
  font-size: clamp(18px, 1.8vw, 21px);
}

.hero-context {
  max-width: 640px;
  margin: 18px 0 0;
  color: #b9cbe0;
  font-weight: 750;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: #06111f;
  background: linear-gradient(135deg, var(--cyan), #70e2ff);
  box-shadow: 0 14px 40px rgba(37, 199, 240, 0.28);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 9px 13px;
  color: #d9e6f3;
  background: rgba(255,255,255,0.07);
}

.process-panel {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.18), rgba(255,255,255,0.07)),
    rgba(6, 16, 31, 0.78);
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #c8d7e7;
  font-size: 14px;
}

.panel-topline strong {
  color: var(--white);
}

.dashboard-section {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.mockup-section-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: #d8e6f5;
  font-size: 13px;
  font-weight: 900;
}

.mockup-section-title strong {
  color: var(--cyan);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fleet-status-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.status-card {
  min-height: 88px;
  padding: 14px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(5, 15, 30, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
}

.status-card.ok,
.status-card.decision {
  grid-column: span 3;
}

.status-card.service,
.status-card.monitoring,
.status-card.blocked {
  grid-column: span 2;
}

.status-card span {
  display: block;
  color: #b8c7d8;
  font-size: 13px;
}

.status-card strong {
  display: block;
  margin-top: 12px;
  font-size: 32px;
  line-height: 1;
}

.status-card.ok { border-color: rgba(31,191,117,0.42); }
.status-card.decision { border-color: rgba(244,166,42,0.52); }
.status-card.service { border-color: rgba(37,199,240,0.52); }
.status-card.monitoring { border-color: rgba(36,107,254,0.52); }
.status-card.blocked { border-color: rgba(239,77,93,0.52); }

.forklift-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(244, 166, 42, 0.42);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(244, 166, 42, 0.18), transparent 16rem),
    rgba(5, 15, 30, 0.66);
}

.forklift-card .card-kicker {
  margin: 0 0 8px;
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.forklift-card h3 {
  margin-bottom: 6px;
  color: var(--white);
}

.forklift-card p {
  margin: 0;
  color: #b9cbe0;
  font-size: 14px;
}

.decision-pill {
  display: inline-flex;
  min-width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(244, 166, 42, 0.42);
  border-radius: 999px;
  color: #ffce7b;
  background: rgba(244, 166, 42, 0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.process-flow {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-flow li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  color: #d9e7f5;
  background: rgba(4, 12, 24, 0.42);
}

.flow-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(37,199,240,0.12);
  font-weight: 900;
}

.process-flow p {
  margin: 2px 0 0;
  color: #9fb2c7;
  font-size: 14px;
}

.activity-feed {
  display: grid;
  gap: 8px;
  margin: 14px 0 16px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(4, 12, 24, 0.34);
}

.activity-feed p {
  margin: 0;
  color: #afc1d5;
  font-size: 13px;
}

.activity-feed strong {
  color: var(--white);
}

.flow-svg,
.benefit-icon svg,
.footer-mail svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-svg {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--blue);
}

.flow-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 10px;
}

.flow-strip article {
  position: relative;
  min-height: 172px;
  padding: 18px;
  border: 1px solid rgba(10, 28, 49, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff, #f5f9fd);
  box-shadow: 0 14px 38px rgba(14, 31, 55, 0.08);
}

.flow-strip article::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 1;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(37, 199, 240, 0.26);
  border-radius: 999px;
  color: var(--blue);
  background: #ffffff;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  font-weight: 900;
}

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

.flow-strip span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  font-weight: 950;
}

.flow-strip strong,
.flow-strip p {
  display: block;
  margin: 0;
}

.flow-strip strong {
  color: var(--navy);
  font-size: 18px;
}

.flow-strip p {
  color: #53677f;
  font-weight: 720;
  line-height: 1.35;
}

.split-section,
.case-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 26px;
  align-items: start;
}

.split-section > .quote-block,
.case-outcome {
  grid-column: 1 / -1;
}

.problem-card,
.quote-block,
.info-card,
.role-grid article,
.audience-card,
.case-card,
.case-outcome,
.faq-list details,
.contact-section,
.solution-section,
.cta-section {
  border: 1px solid rgba(8, 24, 45, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 14px 45px rgba(14, 31, 55, 0.08);
}

.problem-card,
.quote-block,
.info-card,
.role-grid article,
.audience-card,
.case-card,
.case-outcome,
.faq-list details {
  padding: 24px;
}

.quote-block {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37,199,240,0.2), rgba(36,107,254,0.12)),
    var(--panel);
}

.problem-punch,
.section-lead {
  margin-top: 22px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.problem-punch {
  display: inline-flex;
  padding: 12px 16px;
  border-left: 4px solid var(--cyan);
  border-radius: 0 14px 14px 0;
  background: rgba(37, 199, 240, 0.12);
}

.quote-block span,
.case-outcome span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.quote-block p {
  margin: 10px 0 18px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.check-list,
.muted-list {
  margin: 0;
  padding-left: 20px;
}

.check-list li,
.muted-list li {
  margin: 8px 0;
}

.solution-section,
.cta-section,
.contact-section {
  padding: 40px;
}

.numbered-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.numbered-steps li {
  position: relative;
  min-height: 122px;
  padding: 46px 18px 18px;
  border: 1px solid rgba(10, 28, 49, 0.1);
  border-radius: 20px;
  background: #f8fbff;
}

.numbered-steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 18px;
  color: var(--blue);
  font-weight: 900;
}

.solution-note {
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.narrow-heading {
  max-width: 680px;
}

.cards-grid,
.role-grid,
.benefit-grid {
  display: grid;
  gap: 16px;
}

.four-cards {
  grid-template-columns: repeat(4, 1fr);
}

.info-card {
  min-height: 292px;
}

.info-card strong {
  color: var(--navy);
}

.accent-card strong {
  color: var(--cyan);
}

.accent-card {
  color: var(--white);
  background: linear-gradient(160deg, #10233a, #0d1727);
}

.accent-card p {
  color: #d4e4f4;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--cyan);
  font-weight: 900;
}

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

.role-grid article {
  background: linear-gradient(180deg, #fff, #f6f9fd);
}

.audience-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 28px;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 68px;
}

.audience-card {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 22px;
  align-items: start;
  background:
    radial-gradient(circle at 0 0, rgba(37,199,240,0.12), transparent 18rem),
    linear-gradient(180deg, #ffffff, #f4f8fc);
}

.audience-card p {
  margin: 0;
  color: #34475d;
  font-size: 18px;
  font-weight: 750;
}

.audience-card .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.audience-card li {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(10, 28, 49, 0.08);
  border-radius: 14px;
  color: var(--navy);
  background: rgba(255,255,255,0.78);
  font-weight: 800;
}

.audience-role-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.audience-role-grid article {
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(8, 24, 45, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f6f9fd);
  box-shadow: 0 14px 38px rgba(14, 31, 55, 0.07);
}

.audience-role-grid h3 {
  color: var(--navy);
}

.audience-role-grid p {
  margin: 0;
  color: #4a5f77;
}

.audience-role-grid .audience-role-accent {
  color: var(--white);
  background: linear-gradient(160deg, #10233a, #0d1727);
}

.audience-role-grid .audience-role-accent h3,
.audience-role-grid .audience-role-accent p {
  color: var(--white);
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.benefit-grid article {
  min-height: 214px;
  padding: 22px;
  border: 1px solid rgba(8, 24, 45, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(37,199,240,0.1), transparent 12rem),
    linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: 0 14px 40px rgba(14,31,55,0.075);
}

.benefit-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(37, 199, 240, 0.28);
  border-radius: 14px;
  color: var(--blue);
  background: rgba(37, 199, 240, 0.1);
  font-weight: 950;
}

.benefit-grid h3 {
  min-height: 54px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
}

.benefit-grid p {
  margin: 0;
  color: #4a5f77;
}

.benefit-icon svg {
  width: 23px;
  height: 23px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.case-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: #d7e6f4;
  background: rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 850;
}

.cta-section .cta-microcopy {
  margin: 14px auto 0;
  color: #66798f;
  font-size: 14px;
  font-weight: 800;
}

.case-section {
  margin-top: 36px;
  margin-bottom: 44px;
  color: var(--white);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 84% 18%, rgba(37,199,240,0.18), transparent 25rem),
    linear-gradient(145deg, #122236, #08111f);
  box-shadow: 0 24px 80px rgba(5, 13, 27, 0.24);
}

.case-badge {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(31, 191, 117, 0.34);
  border-radius: 999px;
  color: #84e7b9;
  background: rgba(31, 191, 117, 0.1);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.case-section .eyebrow,
.case-section h2,
.case-section p {
  color: var(--white);
}

.case-card,
.case-outcome {
  color: var(--ink);
}

.case-card {
  background: rgba(255, 255, 255, 0.94);
}

.case-outcome {
  display: grid;
  gap: 10px;
  padding: 28px 30px;
  border-color: rgba(37, 199, 240, 0.34);
  background:
    linear-gradient(135deg, rgba(37,199,240,0.13), rgba(36,107,254,0.08)),
    #ffffff;
  box-shadow: 0 18px 52px rgba(5, 13, 27, 0.16);
}

.case-outcome span {
  color: var(--blue);
}

.case-outcome p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.cta-section {
  max-width: calc(var(--max) - 96px);
  margin-top: 24px;
  margin-bottom: 28px;
  text-align: center;
  color: var(--navy);
  border: 1px solid rgba(10, 28, 49, 0.14);
  background:
    radial-gradient(circle at 18% 0, rgba(37,199,240,0.22), transparent 18rem),
    linear-gradient(135deg, #ffffff, #eef7ff);
  box-shadow: 0 18px 56px rgba(14,31,55,0.12);
}

.cta-section h2,
.cta-section p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .eyebrow {
  color: var(--blue);
}

.cta-section p {
  color: #34475d;
  font-size: 18px;
}

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

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
  font-size: 18px;
}

.faq-list p {
  margin: 14px 0 0;
  color: #42546a;
}

.contact-section {
  align-items: center;
}

.contact-note {
  display: inline-flex;
  margin: 10px 0 0;
  padding: 10px 13px;
  border: 1px solid rgba(36, 107, 254, 0.18);
  border-radius: 14px;
  color: #40536a;
  background: rgba(36, 107, 254, 0.07);
  font-size: 14px;
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 24px 54px;
  color: #506175;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-mail,
.footer-demo {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
}

.footer-mail {
  border: 1px solid rgba(10, 28, 49, 0.1);
  background: rgba(255,255,255,0.72);
}

.footer-mail svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.footer-demo {
  color: #06111f;
  background: linear-gradient(135deg, var(--cyan), #70e2ff);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .case-section,
  .contact-section,
  .audience-section,
  .audience-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 68px;
  }

  .four-cards,
  .role-grid,
  .audience-role-grid,
  .benefit-grid,
  .numbered-steps,
  .flow-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .status-card.ok,
  .status-card.decision,
  .status-card.service,
  .status-card.monitoring,
  .status-card.blocked {
    grid-column: auto;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
    border-radius: 0 0 20px 20px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .section-shell {
    padding: 58px 18px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.03;
    letter-spacing: -0.046em;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero {
    gap: 30px;
    padding-top: 34px;
    padding-bottom: 56px;
  }

  .hero::before {
    top: -86px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-context {
    font-size: 15px;
  }

  .process-panel,
  .solution-section,
  .cta-section,
  .contact-section {
    padding: 22px;
    border-radius: 24px;
  }

  .audience-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .four-cards,
  .role-grid,
  .audience-role-grid,
  .benefit-grid,
  .numbered-steps,
  .flow-strip,
  .audience-card .check-list {
    grid-template-columns: 1fr;
  }

  .flow-strip article {
    min-height: auto;
  }

  .benefit-grid article {
    min-height: auto;
    padding: 20px;
  }

  .benefit-icon {
    margin-bottom: 18px;
  }

  .benefit-grid h3 {
    min-height: auto;
  }

  .audience-card {
    gap: 16px;
    padding: 22px;
  }

  .forklift-card {
    grid-template-columns: 1fr;
  }

  .decision-pill {
    width: fit-content;
  }

  .fleet-status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .status-card {
    min-height: 78px;
    padding: 12px;
  }

  .status-card.ok,
  .status-card.decision,
  .status-card.service,
  .status-card.monitoring {
    grid-column: auto;
  }

  .status-card.blocked {
    grid-column: 1 / -1;
  }

  .status-card strong {
    margin-top: 9px;
    font-size: 28px;
  }

  .process-flow li {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .flow-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 42px;
  }
}
