* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #4A4258;
  background-color: #F5F2FB;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.25;
  color: #2E2440;
}

p {
  color: #4A4258;
}

a {
  color: #7B4FA6;
  text-decoration: none;
}

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

button {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow-chip {
  display: inline-block;
  background-color: #FFFFFF;
  border: 1px solid #E2DCF0;
  color: #7B4FA6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
}

.section-head {
  max-width: 980px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head .lead {
  max-width: 700px;
  margin: 22px auto 0;
}

.section-head h2 {
  font-size: 36px;
  color: #2E2440;
  margin-top: 18px;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background-color: #7B4FA6;
  margin: 18px auto 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #F5F2FB;
  border-bottom: 1px solid #E2DCF0;
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 18px #E2DCF0;
}

.center-nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
}

.nav-left {
  justify-self: start;
}

.nav-right {
  justify-self: end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #4A4258;
  letter-spacing: 0.02em;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover {
  color: #2E2440;
  border-bottom-color: #7B4FA6;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.brand-bars i {
  display: block;
  width: 4px;
  background-color: #7B4FA6;
}

.brand-bars i:nth-child(1) {
  height: 9px;
}

.brand-bars i:nth-child(2) {
  height: 18px;
}

.brand-bars i:nth-child(3) {
  height: 13px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2E2440;
}

.cta-pill {
  display: inline-block;
  background-color: #7B4FA6;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 11px 22px;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-pill:hover {
  background-color: #2E2440;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background-color: #EFEAF7;
  border: 1px solid #E2DCF0;
  border-radius: 6px;
  cursor: pointer;
}

.toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #2E2440;
  transition: transform 0.25s ease;
}

.nav-toggle.open .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .toggle-bar:nth-child(2) {
  opacity: 1;
  transform: scaleX(0);
}

.nav-toggle.open .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 24px 24px;
  background-color: #FFFFFF;
  border-top: 1px solid #E2DCF0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 13px 4px;
  color: #4A4258;
  font-weight: 600;
  border-bottom: 1px solid #F5F2FB;
}

.mobile-menu a:hover {
  color: #2E2440;
}

.mobile-menu .cta-pill {
  text-align: center;
  margin-top: 12px;
  border: none;
}

.banner-hero {
  position: relative;
  background-color: #7B4FA6;
  color: #FFFFFF;
  overflow: hidden;
  padding: 118px 24px 122px;
}

.barcode-column {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 7px;
  z-index: 1;
}

.barcode-column.left {
  left: 28px;
}

.barcode-column.right {
  right: 28px;
}

.barcode-column i {
  display: block;
  width: 5px;
  border-radius: 1px;
  background-color: #FFFFFF;
}

.barcode-column.left i:nth-child(1) {
  height: 24%;
}

.barcode-column.left i:nth-child(2) {
  height: 52%;
}

.barcode-column.left i:nth-child(3) {
  height: 36%;
}

.barcode-column.left i:nth-child(4) {
  height: 66%;
}

.barcode-column.left i:nth-child(5) {
  height: 30%;
}

.barcode-column.left i:nth-child(6) {
  height: 56%;
}

.barcode-column.left i:nth-child(7) {
  height: 42%;
}

.barcode-column.left i:nth-child(8) {
  height: 72%;
}

.barcode-column.left i:nth-child(9) {
  height: 28%;
}

.barcode-column.right i:nth-child(1) {
  height: 58%;
}

.barcode-column.right i:nth-child(2) {
  height: 32%;
}

.barcode-column.right i:nth-child(3) {
  height: 70%;
}

.barcode-column.right i:nth-child(4) {
  height: 40%;
}

.barcode-column.right i:nth-child(5) {
  height: 62%;
}

.barcode-column.right i:nth-child(6) {
  height: 26%;
}

.barcode-column.right i:nth-child(7) {
  height: 48%;
}

.barcode-column.right i:nth-child(8) {
  height: 74%;
}

.barcode-column.right i:nth-child(9) {
  height: 34%;
}

.banner-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.banner-hero .eyebrow-chip {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #7B4FA6;
}

.banner-hero h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  color: #FFFFFF;
  margin: 26px 0 24px;
}

.banner-hero h1 .accent {
  color: #E9E2F7;
}

.banner-hero .hero-sub {
  font-size: 18px;
  color: #F1EDFA;
  max-width: 660px;
  margin: 0 auto 38px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: #FFFFFF;
  color: #7B4FA6;
  border-color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #E9E2F7;
  border-color: #E9E2F7;
  color: #2E2440;
}

.btn-outline {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-outline:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #7B4FA6;
}

.category-rows {
  padding: 100px 24px;
  background-color: #F5F2FB;
}

.category-list {
  max-width: 1080px;
  margin: 0 auto;
}

.category-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
  padding: 44px 0;
  border-top: 1px solid #E2DCF0;
}

.category-row:last-child {
  border-bottom: 1px solid #E2DCF0;
}

.category-number {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 120px;
  font-size: 40px;
  font-weight: 700;
  color: #7B4FA6;
}

.mini-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}

.mini-bars i {
  display: block;
  width: 3px;
  background-color: #7B4FA6;
}

.mini-bars i:nth-child(1) {
  height: 12px;
}

.mini-bars i:nth-child(2) {
  height: 26px;
}

.mini-bars i:nth-child(3) {
  height: 18px;
}

.category-body {
  flex: 1;
}

.category-body h3 {
  font-size: 26px;
  color: #2E2440;
  margin-bottom: 12px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 230px;
  padding-top: 8px;
}

.tag-chip {
  background-color: #EFEAF7;
  color: #2E2440;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 4px;
}

.logistics-band {
  background-color: #7B4FA6;
  padding: 88px 24px;
  text-align: center;
}

.logistics-band h2 {
  color: #FFFFFF;
  font-size: 34px;
  margin-bottom: 14px;
}

.logistics-band .subline {
  color: #E9E2F7;
  max-width: 620px;
  margin: 0 auto 44px;
}

.logistics-chips {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

.logistics-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 46px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logistics-chip .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #FFFFFF;
}

.logistics-chip + .logistics-chip {
  border-left: 1px solid #E9E2F7;
}

.client-rows {
  padding: 100px 24px;
  background-color: #F5F2FB;
}

.client-cards {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.client-card {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #E2DCF0;
  border-top: 4px solid #7B4FA6;
  padding: 34px 40px 32px 36px;
}

.client-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #F5F2FB;
  border: 2px solid #E2DCF0;
}

.client-card blockquote {
  color: #4A4258;
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 90%;
}

.client-name {
  color: #7B4FA6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-list {
  background-color: #EFEAF7;
  padding: 100px 24px;
}

.faq-items {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E2DCF0;
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  border-color: #7B4FA6;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 26px;
  font-size: 18px;
  font-weight: 700;
  color: #2E2440;
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #EFEAF7;
  color: #7B4FA6;
  font-size: 20px;
  font-weight: 700;
}

.faq-item.open .faq-icon {
  background-color: #7B4FA6;
  color: #FFFFFF;
}

.faq-answer {
  display: none;
  padding: 0 26px 24px;
}

.faq-item.open .faq-answer {
  display: block;
  padding-top: 18px;
  border-top: 1px solid #E2DCF0;
}

.cta-band {
  background-color: #2E2440;
  padding: 96px 24px;
  text-align: center;
}

.cta-band h2 {
  color: #FFFFFF;
  font-size: 34px;
  margin-bottom: 16px;
}

.cta-band p {
  color: #D9CFEE;
  max-width: 580px;
  margin: 0 auto 34px;
}

.cta-band .btn-primary {
  background-color: #7B4FA6;
  border-color: #7B4FA6;
  color: #FFFFFF;
}

.cta-band .btn-primary:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #7B4FA6;
}

.link-row-footer {
  background-color: #2E2440;
  border-top: 1px solid #3A3160;
  padding: 58px 24px 62px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-links a {
  color: #B5A9D9;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  border-bottom-color: #7B4FA6;
}

.footer-sep {
  color: #6E6680;
}

.footer-legal {
  color: #B5A9D9;
  font-size: 14px;
  max-width: 940px;
  margin: 0 auto;
  line-height: 1.9;
}

.footer-legal a {
  color: #B5A9D9;
  text-decoration: underline;
}

.footer-legal a:hover {
  color: #FFFFFF;
}

.page-hero {
  position: relative;
  background-color: #7B4FA6;
  overflow: hidden;
  padding: 96px 24px 100px;
  text-align: center;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 40px;
  margin: 24px 0 18px;
}

.page-hero p {
  color: #F1EDFA;
  font-size: 17px;
  max-width: 660px;
  margin: 0 auto;
}

.page-body {
  padding: 84px 24px;
  background-color: #F5F2FB;
}

.page-intro {
  max-width: 860px;
  margin: 0 auto 64px;
  text-align: center;
}

.page-intro p {
  font-size: 17px;
}

.service-rows {
  max-width: 1080px;
  margin: 0 auto;
}

.service-row {
  display: grid;
  grid-template-columns: 96px 1fr 250px;
  gap: 40px;
  padding: 46px 0;
  border-top: 1px solid #E2DCF0;
}

.service-row:last-child {
  border-bottom: 1px solid #E2DCF0;
}

.service-num {
  font-size: 40px;
  font-weight: 700;
  color: #7B4FA6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-main h3 {
  font-size: 24px;
  color: #2E2440;
  margin-bottom: 12px;
}

.service-main ul {
  list-style: none;
  margin-top: 16px;
}

.service-main ul li {
  position: relative;
  padding: 5px 0 5px 20px;
  color: #4A4258;
}

.service-main ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  background-color: #7B4FA6;
}

.service-aside {
  align-self: start;
  background-color: #EFEAF7;
  border-left: 3px solid #7B4FA6;
  padding: 22px 24px;
}

.service-aside h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7B4FA6;
  margin-bottom: 10px;
}

.service-aside p {
  font-size: 15px;
  color: #4A4258;
}

.process-section {
  background-color: #FFFFFF;
  padding: 96px 24px;
}

.process-steps {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  border-top: 2px dashed #D9CFEE;
}

.process-step:last-child::after {
  display: none;
}

.step-circle {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background-color: #7B4FA6;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 19px;
  color: #2E2440;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: #4A4258;
}

.contact-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
}

.contact-form {
  background-color: #FFFFFF;
  border: 1px solid #E2DCF0;
  padding: 40px;
}

.contact-form h2,
.contact-side h2 {
  font-size: 24px;
  color: #2E2440;
  margin-bottom: 22px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #2E2440;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E2DCF0;
  border-radius: 6px;
  background-color: #F5F2FB;
  color: #4A4258;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #7B4FA6;
  box-shadow: 0 0 0 3px #E2DCF0;
}

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

.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 6px;
  background-color: #EFEAF7;
  color: #2E2440;
  font-weight: 600;
  font-size: 15px;
  display: none;
}

.form-status.show {
  display: block;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background-color: #FFFFFF;
  border: 1px solid #E2DCF0;
  border-top: 4px solid #7B4FA6;
  padding: 30px 32px;
}

.info-card h3 {
  font-size: 18px;
  color: #2E2440;
  margin-bottom: 16px;
}

.info-line {
  display: flex;
  gap: 12px;
  margin-bottom: 13px;
  color: #4A4258;
}

.info-line .info-label {
  min-width: 90px;
  font-weight: 700;
  color: #2E2440;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  color: #4A4258;
  border-bottom: 1px dashed #E2DCF0;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .hours-day {
  font-weight: 700;
  color: #2E2440;
}

.contact-faq {
  background-color: #FFFFFF;
  border: 1px solid #E2DCF0;
  border-top: 4px solid #7B4FA6;
  padding: 30px 32px;
}

.contact-faq h3 {
  font-size: 18px;
  color: #2E2440;
  margin-bottom: 14px;
}

.contact-faq .faq-item {
  margin-bottom: 12px;
}

.contact-faq .faq-question {
  padding: 16px 18px;
  font-size: 16px;
}

.contact-faq .faq-answer {
  padding: 0 18px 18px;
}

.contact-faq .faq-item.open .faq-answer {
  padding-top: 14px;
}

@media (max-width: 1024px) {
  .barcode-column.left {
    left: 14px;
  }

  .barcode-column.right {
    right: 14px;
  }

  .barcode-column {
    width: 64px;
    gap: 5px;
  }

  .service-row {
    grid-template-columns: 84px 1fr;
    gap: 28px;
  }

  .service-aside {
    grid-column: 2;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }

  .process-step::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .center-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .category-row {
    flex-direction: column;
    gap: 22px;
  }

  .category-tags {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .banner-hero {
    padding: 84px 20px 90px;
  }

  .barcode-column {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .section-head h2,
  .logistics-band h2,
  .cta-band h2 {
    font-size: 28px;
  }

  .logistics-chips {
    flex-direction: column;
    gap: 22px;
  }

  .logistics-chip + .logistics-chip {
    border-left: none;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-aside {
    grid-column: 1;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px 22px;
  }

  .info-card {
    padding: 24px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-sep {
    display: none;
  }

  .footer-links a {
    margin: 0 6px;
  }
}
