:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #66717d;
  --paper: #f7f8fa;
  --white: #ffffff;
  --line: #dfe4e8;
  --orange: #f47613;
  --orange-dark: #d95f00;
  --steel: #6c737c;
  --teal: #0c7c86;
  --navy: #12263a;
  --shadow: 0 20px 60px rgba(18, 38, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(244, 118, 19, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 38%, #eef2f4 100%);
  line-height: 1.5;
}

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: 28px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 228, 232, 0.72);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: 168px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: #303b45;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.header-cta:hover {
  color: var(--orange-dark);
}

.header-cta {
  color: var(--orange-dark);
  font-weight: 900;
  font-size: 14px;
}

.hero {
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  padding: clamp(52px, 8vw, 96px) 0 clamp(44px, 7vw, 80px);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  color: var(--navy);
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.button.primary {
  color: #241000;
  background: var(--orange);
}

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

.button.dark {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

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

.hero-panel {
  padding: 22px;
  background:
    linear-gradient(140deg, rgba(244, 118, 19, 0.16), rgba(12, 124, 134, 0.13)),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(244, 118, 19, 0.22), transparent 68%);
  pointer-events: none;
}

.panel-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-top img {
  width: 142px;
  height: auto;
}

.panel-top span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bill-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.bill-card div,
.stock-row {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(223, 228, 232, 0.9);
}

.bill-card div {
  padding: 18px;
}

.bill-card span,
.stock-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.bill-card strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 24px;
}

.stock-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  margin-top: 10px;
}

.stock-row b {
  color: var(--orange-dark);
}

.trust-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(18, 38, 58, 0.06);
}

.trust-strip div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section,
.feature-band,
.contact {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 10vw, 118px) 0 0;
}

.section-heading {
  max-width: 790px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.solution-card {
  min-height: 300px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(18, 38, 58, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 118, 19, 0.38);
  box-shadow: 0 18px 46px rgba(18, 38, 58, 0.11);
}

.solution-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  background: #fff3e9;
  font-size: 27px;
}

.solution-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-band {
  margin-top: clamp(72px, 10vw, 118px);
  padding: clamp(44px, 7vw, 72px);
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--white);
}

.feature-band h2 {
  color: var(--white);
}

.feature-band .eyebrow {
  color: #ffb17a;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.feature-grid div {
  padding: 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.industries {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.industries ul {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.industries li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #33404b;
  font-weight: 800;
}

.industries li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 12px;
  background: var(--orange);
  vertical-align: 1px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin-top: clamp(72px, 10vw, 118px);
  margin-bottom: 42px;
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(244, 118, 19, 0.9), rgba(12, 124, 134, 0.82)),
    var(--navy);
}

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

.contact p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.contact .eyebrow {
  color: #ffe2cb;
}

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

.address {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

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

  .nav-links {
    grid-column: 1 / -1;
    justify-content: space-between;
    order: 3;
  }

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

  .hero {
    min-height: 0;
  }

  .hero-panel {
    max-width: 560px;
  }

  .trust-strip,
  .solution-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .contact-actions {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand img {
    width: 132px;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    font-size: 13px;
  }

  h1 {
    max-width: 330px;
    font-size: 34px;
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 17px;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .bill-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .panel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .solution-card {
    min-height: 0;
  }
}
