:root {
  --navy: #08243d;
  --ink: #17283a;
  --muted: #627286;
  --line: #dce6ee;
  --soft: #f3f7fa;
  --wash: #fbfdff;
  --teal: #078a8d;
  --teal-dark: #056a70;
  --blue: #0d5c9f;
  --amber: #d7972f;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(8, 36, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px 54px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(220, 230, 238, 0.9);
  box-shadow: 0 10px 30px rgba(8, 36, 61, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 194px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(7, 138, 141, 0.25);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  color: var(--navy);
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #26394d;
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--amber);
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

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

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
}

.login-link,
.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 5px;
}

.login-link {
  color: var(--navy);
  border: 1px solid var(--line);
}

.quote-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 10px 24px rgba(7, 138, 141, 0.22);
}

.hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 36, 61, 0.9), rgba(8, 36, 61, 0.67) 48%, rgba(8, 36, 61, 0.18)),
    linear-gradient(180deg, rgba(8, 36, 61, 0.1), rgba(8, 36, 61, 0.44));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  padding: 86px 0 78px;
  margin-left: 120px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: #e7fbfa;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  backdrop-filter: blur(10px);
}

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

.hero .eyebrow {
  color: #92f0ed;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 24px;
  color: #e5f0f5;
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 19px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 14px 28px rgba(7, 138, 141, 0.28);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.hero-metrics div {
  min-height: 96px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 22px;
}

.hero-metrics span {
  color: #d8edf2;
  font-size: 13px;
  font-weight: 700;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-strip span {
  display: grid;
  place-items: center;
  min-height: 70px;
  padding: 16px 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  background: var(--white);
}

.capability-strip span:nth-child(2),
.capability-strip span:nth-child(4) {
  background: #f8fbfd;
}

.product-section,
.industries-section,
.why-section,
.showcase,
.contact-section {
  padding: 74px 56px;
}

.section-title {
  max-width: 790px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: 0;
}

.product-section {
  background:
    linear-gradient(180deg, var(--white), var(--wash));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(8, 36, 61, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--amber));
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card:hover {
  border-color: rgba(7, 138, 141, 0.35);
  box-shadow: 0 20px 44px rgba(8, 36, 61, 0.13);
  transform: translateY(-4px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card img,
.icon-tile {
  width: 100%;
  height: 142px;
}

.product-card img {
  object-fit: cover;
}

.icon-tile {
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background:
    linear-gradient(135deg, rgba(7, 138, 141, 0.09), rgba(215, 151, 47, 0.08)),
    var(--soft);
}

.icon-tile svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-card div:last-child {
  min-height: 170px;
  padding: 18px;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 10px;
  padding: 4px 8px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  background: #eaf7f7;
  border-radius: 5px;
}

.product-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.industries-section {
  background:
    linear-gradient(180deg, #f1f7f8, #f8fbfd);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.industry-grid div {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 138px;
  padding: 16px 10px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(8, 36, 61, 0.05);
}

.industry-grid span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 8px;
}

.industry-grid strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
}

.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.why-grid article {
  min-height: 230px;
  padding: 22px 18px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(7, 138, 141, 0.05), rgba(7, 138, 141, 0)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(8, 36, 61, 0.05);
}

.why-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: var(--navy);
  border-radius: 8px;
}

.why-grid h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 17px;
}

.why-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.showcase {
  background:
    linear-gradient(180deg, var(--soft), #edf4f7);
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  min-height: 310px;
  margin: 0 auto;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 36, 61, 0.98), rgba(13, 92, 159, 0.88)),
    var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-card > div {
  padding: 54px;
}

.showcase-card .eyebrow {
  color: #8ce6e2;
}

.showcase-card h2 {
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 1.08;
}

.showcase-card p:not(.eyebrow) {
  max-width: 520px;
  color: #d8e8ef;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.contact-section {
  background: var(--wash);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-copy {
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 36, 61, 0.94), rgba(7, 138, 141, 0.86)),
    var(--navy);
  border-radius: 8px;
}

.contact-copy .eyebrow {
  color: #9ef0ed;
}

.contact-copy h2 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.1;
}

.contact-copy p:not(.eyebrow) {
  color: #e0eef2;
  font-size: 16px;
}

.contact-points {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.contact-points span {
  padding: 11px 12px;
  color: #f7fcff;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.contact-form label:nth-child(3),
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(7, 138, 141, 0.65);
  box-shadow: 0 0 0 4px rgba(7, 138, 141, 0.1);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 38px 56px;
  color: #cbd8e2;
  background: var(--navy);
}

.footer .logo-mark {
  background: var(--teal);
  box-shadow: none;
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.footer p {
  margin: 12px 0 0;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 24px;
  align-content: start;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 28px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-content {
    margin-left: 56px;
  }

  h1 {
    font-size: 46px;
  }

  .product-section,
  .industries-section,
  .why-section,
  .showcase,
  .contact-section {
    padding: 62px 28px;
  }

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

  .industry-grid,
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .showcase-card,
  .contact-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    padding: 14px 18px;
  }

  .header-actions {
    width: 100%;
  }

  .login-link,
  .quote-button {
    flex: 1;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 36, 61, 0.86), rgba(8, 36, 61, 0.72)),
      linear-gradient(0deg, rgba(8, 36, 61, 0.22), rgba(8, 36, 61, 0.22));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding: 56px 0;
  }

  h1 {
    font-size: 35px;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-metrics,
  .capability-strip,
  .product-grid,
  .industry-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 29px;
  }

  .contact-panel {
    padding: 16px;
  }

  .contact-copy {
    padding: 22px;
  }

  .contact-copy h2,
  .showcase-card h2 {
    font-size: 30px;
  }

  .showcase-card > div {
    padding: 28px;
  }

  .footer {
    padding: 32px 22px;
  }
}
