:root {
  --ink: #17202a;
  --muted: #5b6673;
  --line: #d9e1e8;
  --panel: #f5f7f9;
  --brand: #0f5f8f;
  --brand-dark: #0a3551;
  --navy: #071f33;
  --steel: #edf3f7;
  --accent: #b92f2f;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(7, 31, 51, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  color: var(--navy);
  background: linear-gradient(135deg, #ffffff, #b9d8ea);
  border-radius: 4px;
  font-size: 13px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: 14px;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(420px, 1.08fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vh, 22px) clamp(30px, 4.5vw, 64px);
  height: calc(100svh - 67px);
  min-height: 0;
  padding: clamp(16px, 2.8vh, 32px) clamp(20px, 5vw, 72px) clamp(12px, 2.2vh, 24px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #edf3f7 48%, #edf3f7 100%);
  overflow: hidden;
}

.hero-media {
  position: relative;
  min-height: auto;
  overflow: visible;
}

.solution-visual {
  display: grid;
  gap: 12px;
  padding: 0;
}

.solution-visual::before {
  content: "";
  position: absolute;
  inset: -22px -22px auto auto;
  z-index: 0;
  width: 58%;
  height: 68%;
  background: var(--brand);
  opacity: 0.12;
  border-radius: 8px;
  pointer-events: none;
}

.visual-main,
.visual-stack img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 6px;
  background: var(--white);
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.13);
}

.visual-main {
  position: relative;
  z-index: 1;
  height: clamp(285px, 45vh, 450px);
  min-height: 0;
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 31, 51, 0.16);
  opacity: 1;
  object-fit: cover;
  transition: transform 420ms ease, box-shadow 420ms ease, filter 420ms ease;
}

.visual-stack {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: auto;
  margin: 0;
}

.visual-stack img {
  height: clamp(190px, 28vh, 250px);
  border-color: rgba(23, 32, 42, 0.12);
  background: var(--white);
  transition: transform 420ms ease, box-shadow 420ms ease, filter 420ms ease;
}

.visual-stack img:first-child {
  object-fit: contain;
  padding: 22px;
}

.solution-strip {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  grid-column: 1 / -1;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 44px rgba(7, 31, 51, 0.12);
}

.solution-strip span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48px;
  padding: 7px 12px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 700;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease;
}

.solution-strip strong {
  display: block;
  margin-bottom: 2px;
  color: var(--accent);
  font-size: 12px;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: auto;
  padding: 0;
  color: var(--ink);
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(12px, 2vh, 20px);
  padding-bottom: clamp(10px, 1.8vh, 16px);
  border-bottom: 1px solid var(--line);
}

.hero-brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--navy));
  border-radius: 6px;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(7, 31, 51, 0.22);
}

.hero-brand-name {
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1;
}

.hero-brand-line {
  margin: 6px 0 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.hero .eyebrow {
  color: var(--accent);
}

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

h1 {
  max-width: 680px;
  margin-bottom: clamp(10px, 1.5vh, 16px);
  font-size: clamp(29px, 3.7vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 16px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(12px, 2vh, 20px);
}

.solution-visual:hover .visual-main {
  transform: translateY(-4px) scale(1.008);
  box-shadow: 0 32px 76px rgba(7, 31, 51, 0.22);
  filter: saturate(1.04);
}

.solution-visual:hover .visual-stack img:first-child {
  transform: translateY(-5px);
}

.solution-visual:hover .visual-stack img:last-child {
  transform: translateY(-6px);
}

.solution-strip span:hover {
  transform: translateY(-4px);
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.button {
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--brand);
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 14px 30px rgba(15, 95, 143, 0.22);
}

.button.secondary {
  color: var(--brand);
  background: transparent;
  border-color: var(--brand);
}

.band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  padding: 64px clamp(20px, 5vw, 72px);
  background: var(--brand-dark);
  color: var(--white);
}

.band p:last-child {
  max-width: 820px;
  margin: 0;
  color: #d7e6f0;
  font-size: 20px;
}

.section {
  padding: 86px clamp(20px, 5vw, 72px);
}

.solution-scope {
  background: var(--white);
}

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

.scope-grid article {
  padding: 28px;
  border-top: 3px solid var(--brand);
  background: var(--panel);
}

.scope-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.scope-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.section-heading p,
.feature p,
.split-copy p,
.contact p,
.stats span {
  color: var(--muted);
}

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

.feature {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}

.feature img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--panel);
}

.feature img.product-photo {
  object-fit: contain;
  padding: 18px;
  background: #f8fafc;
}

.feature h3,
.feature p {
  padding: 0 22px;
}

.feature h3 {
  padding-top: 22px;
}

.feature p {
  padding-bottom: 24px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 48px;
  background: var(--panel);
}

.split-media {
  border: 1px solid var(--line);
  background: var(--white);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.check-list li {
  padding-left: 22px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 2px;
}

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

.industry-row span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 700;
}

.insights {
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.insight-list {
  display: grid;
  gap: 22px;
}

.insight-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.insight-feature img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 4px;
}

.insight-feature time {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.insight-feature h3 {
  max-width: 780px;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.18;
}

.insight-feature p {
  color: var(--muted);
}

.insight-feature.compact {
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
}

.insight-feature.compact img {
  object-fit: cover;
  padding: 0;
  background: #f8fafc;
}

.stats {
  display: grid;
  gap: 14px;
}

.stats div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 34px;
}

.stats span {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 50px;
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

@media (max-width: 900px) {
  .site-header,
  .nav {
    align-items: flex-start;
  }

  .site-header,
  .hero,
  .band,
  .split,
  .contact,
  .insight-feature {
    grid-template-columns: 1fr;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 38px 20px 28px;
    background: var(--white);
  }

  .hero-media {
    min-height: 360px;
    background: transparent;
  }

  .hero-content {
    width: 100%;
    padding: 0;
  }

  .hero-brand-lockup {
    align-items: flex-start;
  }

  .hero-brand-name {
    font-size: 30px;
  }

  .visual-stack {
    margin: -54px 14px 0;
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .industry-row,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .solution-strip {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .hero {
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .hero-brand-lockup {
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  h1 {
    font-size: clamp(26px, 3.4vw, 40px);
  }

  .hero-copy {
    font-size: 14px;
  }

  .visual-main {
    height: clamp(200px, 35vh, 285px);
  }

  .visual-stack img {
    height: clamp(180px, 30vh, 230px);
  }

  .solution-strip span {
    min-height: 46px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .hero-brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-brand-name {
    font-size: clamp(21px, 2.4vw, 30px);
  }

  .hero-brand-line {
    font-size: 11px;
  }

  .button,
  button {
    min-height: 38px;
    padding: 8px 14px;
  }
}

@media (max-height: 700px) and (min-width: 901px) {
  .hero {
    gap: 8px clamp(24px, 4vw, 52px);
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero-brand-lockup {
    margin-bottom: 10px;
    padding-bottom: 9px;
  }

  .hero-brand-mark {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .hero-brand-name {
    font-size: clamp(19px, 2.1vw, 26px);
  }

  .hero-brand-line {
    display: none;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  h1 {
    max-width: 610px;
    margin-bottom: 8px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 600px;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 10px;
  }

  .button,
  button {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .visual-main {
    height: clamp(175px, 31vh, 240px);
  }

  .visual-stack {
    gap: 8px;
  }

  .visual-stack img {
    height: clamp(170px, 29vh, 210px);
  }

  .solution-strip span {
    min-height: 38px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .solution-strip strong {
    display: inline;
    margin-right: 4px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand {
    width: 100%;
  }

  .nav {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .section,
  .band {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}
