:root {
  --primary-blue: #0A5BFF;
  --deep-navy: #0B2E6B;
  --dark-navy: #071426;
  --light-blue: #4D8DFF;
  --white: #FFFFFF;
  --main-bg: #F6F7F8;
  --soft-gray: #F3F4F6;
  --light-gray: #F3F4F6;
  --text-dark: #1E293B;
  --border-gray: #E5E7EB;
  --muted: #64748B;
  --max: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--main-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--border-gray);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  min-width: 190px;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

.brand img {
  width: 190px;
  height: 52px;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(16px, 2.2vw, 30px);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 800;
}

.navlinks a {
  position: relative;
  padding: 10px 0;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--primary-blue);
  transform: translateX(-50%);
  transition: width .18s ease;
}

.navlinks a:hover,
.navlinks a:focus-visible,
.navlinks a.active {
  color: var(--primary-blue);
}

.navlinks a:hover::after,
.navlinks a:focus-visible::after,
.navlinks a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 2px;
  border: 1px solid var(--border-gray);
  border-radius: 999px;
  background: var(--light-gray);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 24px;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
}

.lang-switch a.active {
  background: var(--primary-blue);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--primary-blue);
  border-radius: var(--radius);
  background: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn:hover {
  background: var(--deep-navy);
  border-color: var(--deep-navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 91, 255, .18);
}

.btn.alt {
  background: var(--white);
  color: var(--primary-blue);
  border-color: rgba(77, 141, 255, .42);
  box-shadow: none;
}

.btn.alt:hover {
  background: var(--light-gray);
  border-color: var(--primary-blue);
  color: var(--deep-navy);
}

.header-cta {
  min-height: 34px;
  padding: 8px 12px;
  font-size: 13px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 64px 0 54px;
  color: var(--white);
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--deep-navy) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(246, 247, 248, 0), var(--main-bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(77, 141, 255, .42);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: #CFE0FF;
  font-size: 13px;
  font-weight: 850;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--light-blue);
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin: 18px 0 16px;
  color: var(--white);
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
}

h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 20px;
}

p {
  line-height: 1.6;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
}

.hero-note {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 800;
}

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

.hero-card,
.quote {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}

.scan-row,
.dispatch-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  padding: 15px;
  border-radius: var(--radius);
  background: rgba(2, 8, 23, .62);
  border: 1px solid rgba(255, 255, 255, .14);
}

.scan-row .barcode {
  display: none;
}

.scan-row b,
.scan-row span,
.dispatch-row b,
.dispatch-row span {
  display: block;
}

.scan-row span,
.dispatch-row span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.tag,
.dispatch-row em {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--primary-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

section {
  padding: 74px 0;
  scroll-margin-top: 94px;
  background: var(--main-bg);
}

section:nth-of-type(even):not(.hero):not(.page-hero) {
  background: var(--main-bg);
}

section:nth-of-type(odd):not(.hero):not(.page-hero) {
  background: var(--soft-gray);
}

section:nth-of-type(3n):not(.hero):not(.page-hero) {
  background: var(--white);
}

.page-hero {
  padding: 78px 0 56px;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--deep-navy) 100%);
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .lead {
  color: rgba(255, 255, 255, .84);
}

.band {
  background: var(--soft-gray);
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

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

.section-head p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cards.four {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(15, 23, 42, .045);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: transparent;
  transition: background .18s ease;
}

.card:hover {
  border-color: rgba(10, 91, 255, .24);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
  transform: translateY(-2px);
}

.card:hover::before {
  background: var(--primary-blue);
}

.card p,
.card li,
.quote p {
  margin: 0;
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 7px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-navy), var(--primary-blue));
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-item,
.areas span {
  padding: 16px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--white);
}

.trust-item b,
.trust-item span {
  display: block;
}

.trust-item b {
  color: var(--text-dark);
}

.trust-item span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.step {
  padding: 20px;
  border-top: 4px solid var(--primary-blue);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--white);
  border-left: 1px solid var(--border-gray);
  border-right: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.step p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.section-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
}

.quote {
  border-color: var(--border-gray);
  background: var(--white);
  backdrop-filter: none;
}

.quote strong {
  display: block;
  color: var(--text-dark);
  font-size: 22px;
  line-height: 1.2;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-row {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-row b {
  color: var(--text-dark);
}

.feature-row span {
  color: var(--muted);
  line-height: 1.5;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areas span {
  font-weight: 850;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

details {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

summary {
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

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

.form label {
  color: var(--text-dark);
  font-weight: 850;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text-dark);
  background: var(--white);
  font: inherit;
}

.form textarea {
  min-height: 150px;
}

.map-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--light-gray);
  color: var(--muted);
  font-weight: 850;
}

footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, .82);
  background: var(--dark-navy);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

footer strong,
footer span {
  display: block;
}

footer strong {
  color: var(--white);
}

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

footer a:hover {
  color: var(--light-blue);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(77, 141, 255, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--primary-blue);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
  backdrop-filter: blur(12px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(10, 91, 255, .72);
  background: rgba(10, 91, 255, .10);
  color: var(--deep-navy);
  box-shadow: 0 14px 30px rgba(10, 91, 255, .14);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.social-fixed {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 18;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.social-fixed a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .78);
  color: var(--primary-blue);
  border-color: rgba(77, 141, 255, .36);
}

.social-fixed a:hover,
.social-fixed a:focus-visible {
  background: rgba(255, 255, 255, .94);
  color: var(--deep-navy);
  border-color: var(--primary-blue);
}

footer .social-links a {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-color: rgba(77, 141, 255, .44);
  box-shadow: none;
}

footer .social-links a:hover,
footer .social-links a:focus-visible {
  background: rgba(77, 141, 255, .16);
  color: var(--light-blue);
  border-color: var(--light-blue);
}

@media (max-width: 980px) {
  .nav {
    min-height: 58px;
    align-items: center;
    gap: 12px;
  }

  .navlinks {
    display: none;
  }

  .header-actions {
    align-items: center;
    flex-direction: row;
    margin-left: auto;
  }

  .brand {
    width: 160px;
    min-width: 160px;
  }

  .brand img {
    width: 160px;
    height: 44px;
    max-height: 44px;
  }

  .hero,
  .page-hero {
    min-height: 0;
  }

  .hero-grid,
  .cards,
  .cards.four,
  .trust-strip,
  .steps,
  .split,
  .pricing,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .nav {
    min-height: 56px;
    gap: 8px;
  }

  .brand {
    width: 142px;
    min-width: 142px;
  }

  .brand img {
    width: 142px;
    height: 40px;
    max-height: 40px;
  }

  .header-cta {
    display: none;
  }

  .social-fixed {
    right: 16px;
    top: auto;
    bottom: 18px;
    display: flex;
    flex-direction: column-reverse;
    gap: 9px;
    transform: none;
    z-index: 24;
  }

  .social-fixed a {
    width: 46px;
    height: 46px;
  }

  h1 {
    font-size: 40px;
  }
}
