:root {
  --bg: #f6f8fb;
  --paper: #ffffff;
  --paper-strong: #eef3f8;
  --ink: #121923;
  --muted: #607084;
  --soft: #8b9aad;
  --line: rgba(25, 38, 55, 0.12);
  --line-strong: rgba(25, 38, 55, 0.2);
  --blue: #0f5fbd;
  --blue-dark: #083d82;
  --graphite: #172130;
  --dark: #0f1722;
  --shadow: 0 22px 60px rgba(17, 30, 48, 0.12);
  --shadow-soft: 0 12px 32px rgba(17, 30, 48, 0.08);
  --radius: 10px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(15, 95, 189, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 95, 189, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 16% 10%, rgba(15, 95, 189, 0.16), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(23, 33, 48, 0.12), transparent 22%),
    var(--bg);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.24;
  background-image: radial-gradient(rgba(18, 25, 35, 0.12) 0.6px, transparent 0.6px);
  background-size: 5px 5px;
}

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

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

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

.section-shell,
.site-header,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  margin-top: 14px;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 156px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav a {
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 13px 17px;
  border: 1px solid rgba(15, 95, 189, 0.28);
  border-radius: 8px;
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 28px rgba(15, 95, 189, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 28px;
  align-items: center;
  min-height: 760px;
  padding: 42px 0 44px;
}

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

.eyebrow,
.section-kicker,
.card-type,
.modal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(15, 95, 189, 0.18);
  border-radius: 7px;
  background: rgba(15, 95, 189, 0.08);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 15.4ch;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 4.7vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin-bottom: 16px;
  color: #405064;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.price-note {
  width: fit-content;
  max-width: 620px;
  margin-bottom: 0;
  padding: 13px 15px;
  border-left: 3px solid var(--blue);
  background: rgba(255, 255, 255, 0.72);
  color: var(--graphite);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 34px rgba(15, 95, 189, 0.23);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary,
.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-small {
  min-height: 38px;
  padding: 0 11px;
  font-size: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.badge-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: #435368;
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  display: grid;
  gap: 14px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 23, 34, 0.96), rgba(23, 33, 48, 0.8)),
    var(--dark);
  box-shadow: var(--shadow);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 34, 0.04), rgba(15, 23, 34, 0.78)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 42px 42px;
  pointer-events: none;
}

.media-frame video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  opacity: 0.82;
}

.media-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: white;
}

.media-overlay span,
.hero-stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.media-overlay strong,
.hero-stat strong {
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  line-height: 1.08;
}

.hero-stat {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--graphite);
  color: white;
  box-shadow: var(--shadow-soft);
}

.equipment,
.benefits,
.request {
  padding: 56px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head h2,
.request h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(1.9rem, 2.9vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.equipment-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.equipment-card-wide {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  grid-column: span 2;
}

.card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background:
    linear-gradient(rgba(15, 95, 189, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 95, 189, 0.05) 1px, transparent 1px),
    #f8fafc;
  background-size: 24px 24px;
}

.image-media {
  display: grid;
  place-items: center;
  padding: 18px;
}

.image-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.ld850-media {
  height: auto;
  min-height: 100%;
  background:
    linear-gradient(rgba(15, 95, 189, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 95, 189, 0.05) 1px, transparent 1px),
    #ffffff;
  background-size: 24px 24px;
}

.ld850-media img {
  max-height: 260px;
}

.video-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 34, 0.04), rgba(15, 23, 34, 0.28));
  pointer-events: none;
}

.video-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: linear-gradient(180deg, #f8fafc, #edf2f7);
}

.card-body {
  display: flex;
  min-height: 216px;
  flex-direction: column;
  padding: 15px;
}

.equipment-card-wide .card-body {
  min-height: 0;
}

.card-body h3 {
  margin: 10px 0 6px;
  font-size: 1.14rem;
  line-height: 1.15;
}

.card-body p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.card-body ul {
  display: grid;
  gap: 5px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  color: #34465b;
  font-size: 13px;
  font-weight: 700;
}

.card-body li {
  position: relative;
  padding-left: 16px;
}

.card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--blue);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.matrix-media {
  height: auto;
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 18%, rgba(15, 95, 189, 0.18), transparent 30%),
    linear-gradient(135deg, #121923, #223148);
}

.matrix-code {
  width: 104px;
  height: 104px;
  background:
    linear-gradient(90deg, white 10px, transparent 10px) 0 0 / 22px 22px,
    linear-gradient(white 10px, transparent 10px) 0 0 / 22px 22px,
    #0f5fbd;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.print-lines {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.benefits {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(15, 23, 34, 0.98), rgba(23, 33, 48, 0.92)),
    var(--dark);
  color: white;
}

.benefits > * {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.benefits .section-head {
  align-items: start;
}

.benefits .section-kicker {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

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

.benefit-card {
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.benefit-card span {
  color: #6db0ff;
  font-weight: 800;
}

.benefit-card h3 {
  margin: 30px 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.benefit-card p,
.request-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.compare-note {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 18px;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(15, 95, 189, 0.22);
}

.compare-note strong {
  font-size: 1.4rem;
  line-height: 1.12;
}

.compare-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.request {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 26px;
  align-items: start;
}

.request-copy {
  position: sticky;
  top: 112px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--graphite);
  color: white;
  box-shadow: var(--shadow);
}

.request-copy h2 {
  margin: 18px 0 16px;
}

.request-footnote {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.contact-strip {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-strip a {
  color: white;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: #2f4054;
  font-size: 13px;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--ink);
  outline: none;
}

.request-form input,
.request-form select {
  height: 52px;
  padding: 0 13px;
}

.request-form textarea {
  min-height: 104px;
  resize: vertical;
  padding: 13px;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: rgba(15, 95, 189, 0.7);
  box-shadow: 0 0 0 4px rgba(15, 95, 189, 0.09);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px 0 34px;
  color: var(--muted);
  font-weight: 800;
}

.site-footer a {
  color: var(--blue-dark);
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.mobile-sticky-cta {
  display: none;
}

.details-modal {
  width: min(620px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.details-modal::backdrop {
  background: rgba(10, 16, 24, 0.62);
  backdrop-filter: blur(7px);
}

.modal-panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9fc;
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-panel h2 {
  margin: 16px 48px 10px 0;
  font-size: 2rem;
  line-height: 1.08;
}

.modal-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.modal-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.modal-panel li {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: #2d4056;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .button {
    transition: none;
  }
}

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

  .hero {
    min-height: 0;
    padding-top: 44px;
  }

  h1 {
    max-width: 14ch;
  }

  .media-frame,
  .media-frame video {
    min-height: 430px;
    height: 430px;
  }

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

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

  .request-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .section-shell,
  .site-header,
  .site-footer {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    top: 8px;
    min-height: 64px;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 8px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    gap: 18px;
    padding: 36px 0 48px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1;
  }

  .lead {
    font-size: 1rem;
  }

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

  .badge-row span {
    width: 100%;
  }

  .media-frame,
  .media-frame video {
    min-height: 300px;
    height: 300px;
  }

  .equipment,
  .benefits,
  .request {
    padding: 54px 0;
  }

  .section-head {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
  }

  .equipment-grid,
  .benefit-grid,
  .request-form {
    grid-template-columns: 1fr;
  }

  .equipment-card-wide {
    display: block;
    grid-column: auto;
  }

  .matrix-media {
    min-height: 210px;
  }

  .compare-note {
    grid-template-columns: 1fr;
  }

  .request-copy,
  .request-form,
  .modal-panel {
    padding: 20px;
  }

  .site-footer {
    padding-bottom: 24px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 8px;
    background: var(--blue);
    color: white;
    box-shadow: 0 16px 32px rgba(15, 95, 189, 0.28);
    font-weight: 800;
  }
}

@media (max-width: 430px) {
  .card-actions .button {
    width: 100%;
  }

  .media-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
