:root {
  --navy: #071f49;
  --blue: #1269d3;
  --gold: #cf941c;
  --green: #17642f;
  --ink: #111827;
  --muted: #667085;
  --border: #d8e0e8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  height: 82px;
  padding: 0 clamp(32px, 4.2vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #dfe4e8;
  box-shadow: 0 2px 8px rgba(4,26,58,.05);
  position: relative;
  z-index: 20;
}
.brand { display: flex; align-items: center; min-width: 390px; }
.brand-copy { display: flex; flex-direction: column; gap: 3px; }
.brand-copy strong {
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(20px, 1.7vw, 28px);
  letter-spacing: .2px;
  white-space: nowrap;
}
.brand-copy small { color: #69707d; font-size: 15px; }

.main-nav { display: flex; align-items: stretch; align-self: stretch; gap: clamp(23px, 3.3vw, 61px); }
.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #333b47;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.main-nav a svg { width: 22px; height: 22px; color: #636d78; }
.main-nav a.active { color: #093b93; font-weight: 600; }
.main-nav a.active svg { color: #236ed1; fill: #236ed1; stroke-width: 0; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 3px;
  background: #126ce0;
}
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 626px;
  padding: 28px clamp(32px, 3.3vw, 64px) 24px;
  background:
    linear-gradient(158deg, rgba(229,239,252,.55) 0, rgba(255,255,255,.9) 25%, #fff 56%, rgba(234,242,251,.45) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: -220px;
  top: 307px;
  width: 550px;
  height: 240px;
  border-radius: 50%;
  background: rgba(236,243,252,.8);
  z-index: 0;
}
.arc {
  width: 450px;
  height: 260px;
  right: -90px;
  top: -60px;
  border-radius: 0 0 0 100%;
  background: rgba(231,240,251,.72);
}
.dots {
  width: 75px;
  height: 58px;
  background-image: radial-gradient(#a8cdf6 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: .75;
}
.dots-left { left: 48px; top: 65px; }
.dots-right { right: 54px; top: 43px; }
.hero-decoration { position: absolute; pointer-events: none; }

.hero-heading {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  text-align: center;
  margin-bottom: 20px;
}
.hero-heading h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.18;
  letter-spacing: -.9px;
  font-weight: 800;
}
.hero-heading p { margin: 6px 0 0; color: #626a77; font-size: clamp(13px, 1.15vw, 17px); }
.gold-line {
  width: 72px;
  height: 1px;
  margin-top: 21px;
  background: linear-gradient(90deg, transparent, var(--gold));
  position: relative;
}
.gold-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.gold-line.flip { transform: scaleX(-1); }

.solution-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  max-width: 1584px;
  margin: 0 auto;
}
.solution-card {
  height: 438px;
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 18px;
  border: 3px solid rgba(255,255,255,.92);
  box-shadow: 0 11px 29px rgba(16,43,72,.2), 0 0 0 2px rgba(42,122,222,.28);
}
.solution-card.hardware { box-shadow: 0 11px 29px rgba(16,43,72,.2), 0 0 0 2px rgba(53,129,76,.25); }
.solution-card > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.solution-card.warehouse > img { object-position: 58% center; }
.solution-card.hardware > img { object-position: 58% center; }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,25,61,.98) 0%, rgba(5,29,65,.91) 33%, rgba(3,24,54,.46) 66%, rgba(3,24,54,.05) 100%);
}
.hardware .card-overlay {
  background: linear-gradient(90deg, rgba(5,56,34,.98) 0%, rgba(6,62,37,.91) 33%, rgba(4,51,30,.42) 67%, rgba(4,51,30,.03) 100%);
}
.card-content {
  position: absolute;
  inset: 18px 26px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.hardware .card-icon { color: var(--green); }
.card-icon svg { width: 39px; height: 39px; stroke-width: 1.7; }
.card-content h2 { font-size: clamp(22px, 1.75vw, 28px); line-height: 1.13; margin: 0; letter-spacing: -.5px; }
.card-dash { width: 40px; height: 3px; background: #e6b51a; margin: 11px 0 11px; }
.card-content p { max-width: 320px; margin: 0; font-size: 13.5px; line-height: 1.42; font-weight: 500; }
.mini-icons { display: flex; gap: 23px; margin-top: 12px; color: #4c94e8; opacity: .7; }
.hardware .mini-icons { color: #66c16a; }
.mini-icons svg { width: 35px; height: 35px; stroke-width: 1.5; }
.card-button {
  margin-top: auto;
  width: 320px;
  min-height: 48px;
  padding: 0 24px 0 28px;
  border-radius: 17px;
  background: #fff;
  color: #0a428c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 5px 16px rgba(48,149,255,.65);
  transition: transform .2s, box-shadow .2s;
}
.hardware .card-button { color: #176532; box-shadow: 0 5px 16px rgba(96,197,105,.55); }
.card-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(48,149,255,.7); }
.card-button svg { width: 27px; height: 27px; stroke-width: 2.3; }
.path { display: flex; align-items: center; gap: 9px; font-size: 14px; margin-top: 12px; }
.path svg { width: 19px; height: 19px; }

.benefits {
  max-width: 1265px;
  margin: 0 auto;
  min-height: 105px;
  padding: 17px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.benefits article { display: flex; gap: 17px; align-items: center; padding: 0 23px; position: relative; }
.benefits article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  height: 48px;
  width: 1px;
  background: #dbe0e7;
}
.benefit-icon {
  flex: 0 0 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.benefit-icon svg { width: 31px; height: 31px; stroke-width: 1.9; }
.benefit-icon.blue { color: #1d6ecc; background: #e8f2ff; }
.benefit-icon.green { color: #318046; background: #e8f5e9; }
.benefit-icon.gold { color: #c6921e; background: #fff4d9; }
.benefits h3 { margin: 0 0 7px; color: #071b3d; font-size: 13px; }
.benefits p { margin: 0; color: #737b88; font-size: 12.5px; line-height: 1.55; }

footer {
  height: 54px;
  background:
    radial-gradient(circle, rgba(40,112,190,.35) 1px, transparent 1px) 0 0/9px 9px,
    linear-gradient(90deg, #0b2d5c, #061d43 60%, #092a58);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
footer p { margin: 0; font-size: 16px; font-weight: 600; }
footer p span { font-weight: 400; color: #e8edf5; }

@media (max-width: 1180px) {
  .site-header { height: 78px; padding-inline: 28px; }
  .brand { min-width: auto; }
  .brand-copy strong { font-size: 21px; }
  .brand-copy small { font-size: 14px; }
  .main-nav { gap: 23px; }
  .main-nav a { font-size: 13px; gap: 7px; }
  .main-nav a svg { width: 18px; height: 18px; }
  .solution-card { height: 460px; }
  .card-content { inset: 20px 23px 17px; }
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .benefits article:nth-child(2)::after { display: none; }
}

@media (max-width: 850px) {
  .site-header { height: 82px; }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { font-size: 12px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 25px 18px;
    background: white;
    box-shadow: 0 12px 20px rgba(7,31,73,.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 6px; }
  .main-nav a.active::after { left: 6px; right: auto; bottom: 6px; width: 36px; height: 2px; }
  .hero { padding: 32px 20px; }
  .hero-heading { gap: 12px; }
  .gold-line { width: 30px; }
  .solution-grid { grid-template-columns: 1fr; max-width: 700px; }
  .solution-card { height: 510px; }
}

@media (max-width: 600px) {
  .site-header { padding-inline: 13px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 11px; margin-top: 2px; }
  .hero-heading h1 { font-size: 28px; }
  .hero-heading p { line-height: 1.5; }
  .gold-line { display: none; }
  .solution-card { height: 535px; }
  .solution-card > img { object-position: 65% center; }
  .card-overlay, .hardware .card-overlay {
    background: linear-gradient(90deg, rgba(4,28,64,.98) 0%, rgba(4,28,64,.88) 59%, rgba(4,28,64,.3) 100%);
  }
  .hardware .card-overlay { background: linear-gradient(90deg, rgba(5,58,35,.98) 0%, rgba(5,58,35,.88) 59%, rgba(5,58,35,.3) 100%); }
  .card-content { inset: 18px; }
  .card-icon { width: 62px; height: 62px; }
  .card-icon svg { width: 38px; height: 38px; }
  .card-content h2 { font-size: 25px; }
  .card-content p { font-size: 14px; max-width: 290px; }
  .mini-icons { gap: 17px; }
  .mini-icons svg { width: 35px; height: 35px; }
  .card-button { width: 100%; font-size: 15px; padding-inline: 20px; }
  .benefits { grid-template-columns: 1fr; }
  .benefits article { padding-block: 8px; }
  .benefits article::after { display: none !important; }
  footer { text-align: center; padding: 0 16px; }
  footer p { font-size: 14px; }
}
