:root {
  --page-bg: #f4f1ec;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text-main: #202020;
  --text-soft: #6d6a68;
  --accent: #c91d2e;
  --accent-dark: #981120;
  --line: rgba(32, 32, 32, 0.08);
  --shadow: 0 24px 55px rgba(72, 56, 45, 0.12);
  --radius-xl: 34px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, #f7f3ef 0%, #f2eee9 100%);
}

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

input,
button {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 28px clamp(18px, 2.6vw, 34px) 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.66)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: clip;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand img {
  width: clamp(108px, 9vw, 140px);
  height: auto;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 20px);
  font-size: 0.88rem;
  color: var(--text-soft);
}

.site-nav a,
.footer-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.footer-nav .is-active {
  color: var(--text-main);
}

.footer-nav .is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.header-actions,
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
}

.icon,
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
}

.social-links a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--accent);
  border-color: rgba(201, 29, 46, 0.3);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section,
.cta-section {
  position: relative;
  display: grid;
  align-items: center;
}

.hero-section {
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
}

.home-hero {
  grid-template-columns: minmax(320px, 680px);
}

.hero-section {
  min-height: clamp(420px, 72vh, 720px);
  padding: clamp(48px, 9vw, 96px) 0 28px;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-rotate: 0deg;
  --hero-scale: 1;
}

.hero-copy,
.cta-copy {
  position: relative;
  z-index: 1;
}

.hero-copy {
  justify-self: start;
  margin-left: 0;
  padding-left: 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 0.45);
}

.hero-copy h1,
.cta-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  max-width: 6.6ch;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-points {
  display: grid;
  gap: 12px;
  max-width: 32rem;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #da2134, var(--accent));
  box-shadow: 0 0 0 5px rgba(201, 29, 46, 0.08);
}

.hero-text {
  max-width: 28rem;
  margin: 20px 0 0;
  font-size: 1.02rem;
  color: var(--text-soft);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, #da2134, var(--accent));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(201, 29, 46, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(201, 29, 46, 0.28);
  background: linear-gradient(180deg, #e22a3d, var(--accent-dark));
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: -2% -8% -8% 36%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 20%, rgba(255, 255, 255, 0.72) 34%, rgba(255, 255, 255, 0) 52%),
    url("hero-bg.png") no-repeat right top / min(80%, 920px) auto;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) rotate(var(--hero-rotate)) scale(var(--hero-scale));
  transform-origin: 82% 40%;
  transition: transform 0.22s ease-out;
  filter: saturate(0.98) brightness(1.02);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 24%, rgba(255, 255, 255, 0.28) 44%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 22%),
    radial-gradient(circle at 76% 92%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 36%);
  pointer-events: none;
}

.hero-toolkit {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 430px);
  padding: 24px;
  border: 1px solid rgba(21, 40, 76, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 50px rgba(25, 44, 82, 0.1);
  backdrop-filter: blur(12px);
}

.toolkit-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  padding: 6px;
  border-radius: 18px;
  background: #f3f5f8;
}

.toolkit-tab {
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text-soft);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.toolkit-tab.is-active {
  background: #ffffff;
  color: var(--text-main);
  box-shadow: 0 10px 18px rgba(21, 40, 76, 0.08);
}

.toolkit-panel {
  display: none;
  padding-top: 22px;
}

.toolkit-panel.is-active {
  display: block;
}

.toolkit-label {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.toolkit-select,
.toolkit-input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(21, 40, 76, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text-main);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.toolkit-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-soft) 50%),
    linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.toolkit-input::placeholder {
  color: rgba(32, 32, 32, 0.42);
}

.toolkit-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.toolkit-actions .primary-button {
  justify-content: center;
  width: 100%;
  margin-top: 0;
}

.text-action {
  color: var(--accent);
  font-weight: 700;
  line-height: 1.5;
}

.toolkit-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 40, 76, 0.08);
}

.toolkit-links a {
  font-weight: 700;
  color: #18376f;
}

.services-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin: 14px 0 clamp(40px, 7vw, 90px);
}

.service-card {
  min-height: 188px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68));
  box-shadow: 0 18px 35px rgba(77, 66, 57, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card h2 {
  margin: 0 0 14px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}

.service-card::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(201, 29, 46, 0.15));
}

.card-link,
.page-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 700;
}

.cta-section {
  min-height: clamp(260px, 34vw, 430px);
  margin-top: 10px;
  padding: clamp(34px, 4vw, 48px) clamp(10px, 1vw, 12px) clamp(26px, 3vw, 34px) 0;
  grid-template-columns: minmax(280px, 420px) 1fr;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
  --flag-shift-x: 0px;
  --flag-shift-y: 0px;
  --flag-rotate: 0deg;
  --flag-scale: 1;
}

.cta-copy h2 {
  max-width: 7ch;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.cta-copy {
  padding-left: 6px;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.985) 20%, rgba(255, 255, 255, 0.82) 34%, rgba(255, 255, 255, 0.28) 48%, rgba(255, 255, 255, 0) 62%),
    url("hero-bg1.png") no-repeat right center / min(86%, 900px) auto;
  transform: translate3d(var(--flag-shift-x), var(--flag-shift-y), 0) rotate(var(--flag-rotate)) scale(var(--flag-scale));
  transform-origin: 82% 46%;
  transition: transform 0.22s ease-out;
  filter: saturate(1.01) brightness(1.01);
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 18%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 76% 100%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 32%);
  pointer-events: none;
}

.site-footer {
  padding-top: 28px;
  padding-bottom: 0;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.page-card {
  padding: 24px;
  border: 1px solid rgba(21, 40, 76, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(25, 44, 82, 0.06);
}

.page-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.page-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.section-kicker {
  margin: 0 0 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.tracking-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.section-heading p:last-child,
.tracking-panel p {
  color: var(--text-soft);
}

.tracking-section,
.benefits-section,
.stats-section,
.business-section {
  padding: 48px 0;
}

.tracking-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
}

.tracking-panel,
.info-card,
.benefit-card,
.stat-card,
.business-card {
  border: 1px solid rgba(21, 40, 76, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(25, 44, 82, 0.06);
}

.tracking-panel {
  padding: 32px;
  border-radius: 24px;
}

.tracking-form {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.tracking-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(21, 40, 76, 0.14);
  border-radius: 14px;
  background: #fbfbfc;
}

.tracking-form select,
.form-field input,
.form-field select {
  width: 100%;
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(21, 40, 76, 0.14);
  border-radius: 14px;
  background: #fbfbfc;
  color: var(--text-main);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
  color: var(--text-main);
  font-weight: 700;
}

.form-field span {
  font-size: 0.95rem;
}

.status-message {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  line-height: 1.6;
}

.status-message.success {
  color: #0f5c36;
  background: #ecfaf2;
  border-color: rgba(15, 92, 54, 0.14);
}

.status-message.error {
  color: #8b1220;
  background: #fff2f4;
  border-color: rgba(201, 29, 46, 0.16);
}

.inline-actions,
.waybill-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 14px;
}

.tracking-result {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(21, 40, 76, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.tracking-result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.result-kicker {
  margin: 0 0 6px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 0.45);
}

.tracking-result-header strong {
  font-size: 1.2rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: #18376f;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.tracking-event {
  margin: 18px 0 0;
  color: var(--text-main);
  line-height: 1.6;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 0;
}

.detail-list div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(24, 55, 111, 0.04);
}

.detail-list dt {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 0.48);
}

.detail-list dd {
  margin: 0;
  color: var(--text-main);
  line-height: 1.5;
}

.waybill-card {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(16, 16, 16, 0.14);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(16, 16, 16, 0.07);
}

.waybill-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 3px solid #1b1b1b;
}

.waybill-top strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.waybill-brand strong {
  display: block;
}

.waybill-meta {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.waybill-status-block {
  text-align: right;
}

.strip-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.52);
}

.waybill-billto {
  padding: 8px 0 10px;
  border-bottom: 2px solid #1b1b1b;
  font-size: 0.95rem;
  font-weight: 700;
}

.waybill-destination {
  padding: 14px 0 12px;
  border-bottom: 2px solid #1b1b1b;
}

.waybill-destination h3 {
  margin: 2px 0 8px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.destination-name,
.destination-alert,
.destination-city {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
}

.destination-name {
  font-size: 1.65rem;
}

.destination-alert {
  margin-top: 6px;
  font-size: 0.95rem;
}

.destination-city {
  margin-top: 8px;
  font-size: 1.1rem;
}

.destination-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 16, 16, 0.14);
  font-size: 0.88rem;
}

.label-band {
  margin-top: 14px;
  border-top: 2px solid #1b1b1b;
  border-bottom: 2px solid #1b1b1b;
}

.label-band-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.scan-zone {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px;
  align-items: stretch;
}

.matrix-code {
  height: 148px;
  border-top: 1px solid rgba(16, 16, 16, 0.16);
  border-bottom: 1px solid rgba(16, 16, 16, 0.16);
  background:
    linear-gradient(90deg, #111 0 8px, transparent 8px 12px, #111 12px 18px, transparent 18px 24px, #111 24px 30px, transparent 30px 100%),
    repeating-linear-gradient(90deg, #111 0 2px, #fff 2px 4px, #111 4px 5px, #fff 5px 7px, #111 7px 10px, #fff 10px 12px),
    repeating-linear-gradient(0deg, rgba(17, 17, 17, 0.95) 0 2px, rgba(255,255,255,0.92) 2px 4px, rgba(17,17,17,0.9) 4px 5px, rgba(255,255,255,0.9) 5px 7px);
  background-blend-mode: normal, multiply, multiply;
}

.carrier-badge {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  border-left: 2px solid #111111;
  padding-left: 10px;
}

.carrier-wordmark {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.carrier-wordmark span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 500;
}

.service-letter {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 6px solid #111111;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.service-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-weight: 700;
}

.service-day {
  font-size: 0.95rem;
}

.service-box strong {
  font-size: 1.25rem;
}

.track-service-line {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 2px solid #111111;
}

.track-number-block strong {
  display: block;
  margin-top: 6px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-summary {
  text-align: right;
}

.service-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 1.85rem;
  line-height: 0.95;
}

.route-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 14px;
  align-items: end;
}

.route-code strong,
.route-stop strong {
  display: block;
}

.route-code strong {
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.route-stop {
  text-align: right;
}

.route-stop strong {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 0.95;
}

.waybill-barcode {
  margin-top: 24px;
  padding: 22px 20px 18px;
  border: 2px solid #111111;
  border-radius: 0;
  background:
    repeating-linear-gradient(
      90deg,
      #111111 0 2px,
      #ffffff 2px 4px,
      #111111 4px 5px,
      #ffffff 5px 7px,
      #111111 7px 10px,
      #ffffff 10px 12px
    );
  overflow: hidden;
}

.waybill-barcode span {
  display: block;
  margin-top: 112px;
  padding: 8px 12px 0;
  background: rgba(255, 255, 255, 0.96);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
}

.tracking-highlights {
  display: grid;
  gap: 16px;
}

.info-card,
.benefit-card,
.stat-card,
.business-card {
  padding: 24px;
  border-radius: 20px;
}

.info-card h3,
.benefit-card h3,
.business-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.info-card p,
.benefit-card p,
.stat-card span,
.business-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.benefits-grid,
.stats-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, #18376f, #0f2852);
  color: #ffffff;
}

.stat-card strong {
  font-size: 1.5rem;
  line-height: 1;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.76);
}

.business-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}

.feature-large {
  background: linear-gradient(135deg, #f7f9ff, #ffffff);
}

.business-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 700;
}

.page-hero::before,
.page-hero::after {
  display: none;
}

.page-hero {
  min-height: 320px;
  padding: 56px 0 24px;
  background: linear-gradient(135deg, #f5f8ff, #ffffff);
}

.stacked-form {
  display: grid;
  grid-template-columns: 1fr;
}

@media (max-width: 1100px) {
  .services-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-toolkit {
    justify-self: start;
    margin-top: 28px;
  }

  .cta-section {
    min-height: 320px;
    padding-top: 26px;
  }

  .cta-section::before {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.92) 24%, rgba(255, 255, 255, 0.42) 42%, rgba(255, 255, 255, 0) 60%),
      url("hero-bg1.png") no-repeat right center / min(98%, 780px) auto;
  }

  .hero-section::before {
    inset: 2% -8% -6% 20%;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.88) 24%, rgba(255, 255, 255, 0) 46%),
      url("hero-bg.png") no-repeat right top / min(96%, 820px) auto;
  }

  .tracking-section,
  .business-layout,
  .benefits-grid,
  .stats-section,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .detail-list,
  .route-grid,
  .scan-zone,
  .track-service-line {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: 100%;
    margin: 0;
    padding: 18px 14px 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-actions {
    display: none;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-section {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 12vw, 4.1rem);
  }

  .hero-points {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-section::before {
    inset: 16% -20% -10% 8%;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.94) 28%, rgba(255, 255, 255, 0.3) 46%, rgba(255, 255, 255, 0) 62%),
      url("hero-bg.png") no-repeat right top / 118% auto;
  }

  .hero-toolkit {
    width: 100%;
    padding: 18px;
    border-radius: 22px;
  }

  .toolkit-tabs {
    gap: 6px;
    padding: 5px;
  }

  .toolkit-tab {
    padding: 11px 12px;
  }

  .toolkit-select,
  .toolkit-input {
    min-height: 52px;
  }

  .cta-section {
    min-height: 280px;
    padding: 18px 0 20px;
  }

  .cta-section::before {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 28%, rgba(255, 255, 255, 0.46) 46%, rgba(255, 255, 255, 0) 64%),
      url("hero-bg1.png") no-repeat right center / 126% auto;
  }

  .services-section {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .tracking-section,
  .benefits-section,
  .stats-section,
  .business-section {
    padding: 34px 0;
  }

  .tracking-panel {
    padding: 22px;
  }

  .tracking-form {
    flex-direction: column;
  }

  .tracking-result-header {
    flex-direction: column;
  }

  .waybill-top,
  .inline-actions,
  .waybill-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .waybill-status-block {
    text-align: left;
  }

  .destination-meta,
  .label-band-top,
  .service-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-summary,
  .route-stop {
    text-align: left;
  }

  .cta-copy {
    padding-left: 0;
    padding-top: 6px;
  }

  .cta-copy h2 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    max-width: 6.5ch;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px 22px;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 12mm;
  }

  .site-header,
  .site-footer,
  .menu-toggle,
  .header-actions,
  .tracking-highlights,
  .hero-section,
  .waybill-actions,
  .billing-summary-section {
    display: none !important;
  }

  html,
  body,
  .page-shell {
    background: #ffffff;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  .page-shell,
  main,
  .tracking-section,
  .tracking-panel {
    display: block;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .tracking-panel > .section-kicker,
  .tracking-panel > h2 {
    display: none;
  }

  .waybill-card {
    width: 100mm;
    min-height: 148mm;
    margin: 0 auto;
    padding: 4mm;
    border: 0.4mm solid #111111;
    border-radius: 0;
    box-shadow: none;
    break-inside: avoid;
  }

  .waybill-top {
    gap: 4mm;
    padding-bottom: 3mm;
    border-bottom-width: 0.6mm;
  }

  .waybill-top strong {
    font-size: 10pt;
  }

  .result-kicker,
  .strip-label,
  .waybill-meta,
  .destination-meta,
  .billing-row,
  .detail-list dt,
  .detail-list dd {
    font-size: 7.5pt;
  }

  .waybill-billto {
    padding: 2mm 0 2.5mm;
    border-bottom-width: 0.5mm;
    font-size: 8pt;
  }

  .waybill-destination {
    padding: 3mm 0 3mm;
    border-bottom-width: 0.5mm;
  }

  .waybill-destination h3 {
    font-size: 20pt;
    margin: 1mm 0 2mm;
  }

  .destination-name {
    font-size: 12pt;
  }

  .destination-alert,
  .destination-city {
    font-size: 8.5pt;
  }

  .destination-meta {
    margin-top: 2mm;
    padding-top: 2mm;
  }

  .label-band {
    margin-top: 3mm;
    border-top-width: 0.5mm;
    border-bottom-width: 0.5mm;
  }

  .label-band-top,
  .service-box {
    padding: 1.8mm 0;
    font-size: 8pt;
  }

  .matrix-code {
    height: 36mm;
  }

  .service-box strong {
    font-size: 11pt;
  }

  .route-grid {
    gap: 3mm;
    margin-top: 3mm;
  }

  .route-code strong {
    font-size: 24pt;
  }

  .route-stop strong {
    font-size: 18pt;
  }

  .waybill-barcode {
    margin-top: 4mm;
    padding: 3mm 3mm 2mm;
    border-width: 0.5mm;
  }

  .waybill-barcode span {
    margin-top: 26mm;
    padding-top: 2mm;
    font-size: 8pt;
  }
}
