:root {
  --primary: #c23b35;
  --primary-dark: #a32f2a;
  --bg-light: #f9f9f9;
  --bg-dark: #191919;
  --text-main: #222222;
  --text-muted: #666666;
  --border-color: #dddddd;
  --font-inter: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-inter);
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.5;
  font-size: 14px;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.85rem; }

.text-xs {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}
.btn-primary:hover { background-color: var(--primary-dark); }

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--text-main);
  color: var(--text-main);
}
.btn-outline:hover {
  background-color: var(--text-main);
  color: #fff;
}

.btn-dark {
  background: #111;
  color: #fff;
}
.btn-dark:hover { background: #333; }

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
}

.btn-full { width: 100%; }

.alert {
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  border-radius: 4px;
}
.alert-error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5c6cb;
}
.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.nav-overlay {
  display: none;
}

.top-bar {
  background-color: var(--bg-dark);
  color: #a0a0a0;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid #333;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.top-bar .phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  flex-shrink: 0;
}

.main-nav {
  background-color: #ffffff;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  width: 28px;
  height: 28px;
  background-color: var(--primary);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
}
.logo-text {
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.1;
  color: var(--primary);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
}
.nav-link:hover,
.nav-link.active { color: var(--primary); }

.nav-track-btn {
  border-color: var(--primary);
  color: var(--primary);
}
.nav-track-btn.btn-primary {
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#about, #services, #contact {
  scroll-margin-top: 88px;
}

.hero-section { padding: 4rem 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-kicker {
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}
.hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #111;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 90%;
}
.hero-actions {
  display: flex;
  gap: 1rem;
}
.hero-image-wrap {
  min-width: 0;
  background: #ececec;
  border-radius: 4px;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.stats-bar {
  background-color: var(--bg-light);
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  border-left: 1px solid #ddd;
  padding-left: 1.5rem;
}
.stat-item:first-child {
  border-left: none;
  padding-left: 0;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #777;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

.about-section { padding: 6rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.section-tag,
.section-kicker {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}
.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.about-content p {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.feature-item {
  border-left: 2px solid var(--primary);
  padding-left: 1rem;
}
.feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.feature-item p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
}
.timeline { margin-top: 2rem; }
.timeline-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  color: var(--primary);
  font-weight: 600;
  width: 60px;
  flex-shrink: 0;
}
.timeline-content {
  font-size: 0.9rem;
  color: #444;
}
.about-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #ececec;
}

.services-section {
  background-color: var(--bg-light);
  padding: 6rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}
.services-left h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.services-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 2rem;
  background: #ececec;
}
.services-cta-box {
  background: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 4px;
}
.services-cta-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}
.services-cta-box a {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
}
.services-list { display: flex; flex-direction: column; }
.service-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.service-item:first-child { padding-top: 0; }
.service-number {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  width: 30px;
  flex-shrink: 0;
}
.service-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #111;
}
.service-content p {
  font-size: 0.9rem;
  color: #666;
}

.cta-banner {
  background-color: var(--bg-dark);
  color: #fff;
  padding: 4rem 0;
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.cta-banner h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.cta-banner p {
  color: #aaa;
  font-size: 0.9rem;
}
.cta-banner-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-section { padding: 6rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-heading {
  font-size: 2.5rem;
  max-width: 400px;
}
.contact-intro {
  color: #555;
  margin-bottom: 2rem;
  max-width: 450px;
}
.contact-info { margin-top: 2rem; }
.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  gap: 1rem;
}
.contact-label { color: #888; }
.contact-value { color: #333; }
.contact-form {
  background: #fdfdfd;
  padding: 3rem;
  border: 1px solid #eee;
  border-radius: 4px;
}
.form-group { margin-bottom: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}
.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  background-color: #fff;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
}
textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  background-color: var(--bg-dark);
  color: #a0a0a0;
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.footer-logo {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.footer-year {
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: block;
  text-transform: uppercase;
}
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.footer-list svg { flex-shrink: 0; margin-top: 2px; }
.footer-list a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
}

.tracking-hero {
  background-color: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}
.tracking-hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: #888;
}
.breadcrumb a { color: var(--primary); }

.tracking-form-container {
  background-color: var(--bg-light);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.tracking-form-inner {
  max-width: 600px;
  margin: 0 auto;
}
.tracking-form-inner h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.tracking-form-inner p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.search-box {
  display: flex;
  gap: 1rem;
}
.search-input {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.search-input:focus {
  outline: none;
  border-color: var(--primary);
}
.search-btn {
  font-size: 1rem;
  padding: 0 2rem;
}

.empty-state {
  padding: 8rem 0;
  text-align: center;
  background-color: #fff;
}
.empty-icon {
  width: 64px;
  height: 64px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #888;
}
.empty-state h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.empty-state p {
  color: #666;
  max-width: 400px;
  margin: 0 auto;
}

.result-state {
  padding: 4rem 0;
  background-color: #fff;
}
.result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}
.result-header h2 {
  font-size: 2rem;
  margin-bottom: 0;
}
.print-btn { flex-shrink: 0; }

.shipment-card {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.shipment-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}
.company-title h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.company-title p {
  font-size: 0.85rem;
  color: #888;
}
.tracking-badge { text-align: right; }
.tracking-badge span {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  display: block;
}
.tracking-badge strong { font-size: 1.1rem; }

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #222;
  margin-bottom: 2rem;
}
.status-row-plain { margin-top: 2rem; }
.status-label { font-weight: 600; }
.status-pill {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}
.data-item { margin-bottom: 1.5rem; }
.data-item-last { margin-bottom: 0; }
.data-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.data-label-sm { font-size: 0.65rem; }
.data-value {
  font-size: 0.95rem;
  color: #222;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.mode-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}
.radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #888;
}
.radio-item.active { color: #222; }
.radio-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ccc;
}
.radio-item.active .radio-circle {
  border-color: var(--primary);
  border-width: 4px;
}
.terms-text {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.6;
}

.progress-section {
  background-color: var(--bg-light);
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}
.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.progress-header h3 { font-size: 1.2rem; }
.progress-header span {
  font-size: 0.85rem;
  color: #888;
}
.progress-bar-track {
  height: 4px;
  background: #e5e5e5;
  margin-bottom: 3rem;
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar {
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}
.empty-milestones {
  color: #666;
  font-size: 0.95rem;
}
.milestone-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.milestone {
  display: grid;
  grid-template-columns: 100px 20px 1fr;
  gap: 1.5rem;
  position: relative;
}
.milestone::before {
  content: '';
  position: absolute;
  left: 123px;
  top: 10px;
  bottom: -35px;
  width: 1px;
  background-color: #ddd;
}
.milestone:last-child::before { display: none; }
.milestone-date {
  font-size: 0.85rem;
  color: #888;
  text-align: right;
  padding-top: 2px;
}
.milestone-dot {
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-top: 5px;
  position: relative;
  z-index: 2;
}
.milestone-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.milestone-content h4 span {
  font-weight: 400;
  color: #888;
  font-size: 0.85rem;
  margin-left: 0.5rem;
}
.milestone-content p {
  font-size: 0.9rem;
  color: #555;
}

/* Laptop / small desktop: keep the original two-column layout */
@media (max-width: 1200px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .services-grid {
    gap: 3rem;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .container { padding: 0 1.5rem; }

  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 220;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 180;
  }
  .nav-overlay.is-visible {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100%;
    background: #fff;
    z-index: 200;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
    transform: translateX(110%);
    transition: transform 0.25s ease;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links .nav-link {
    padding: 0.9rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-links .nav-track-btn {
    margin-top: 1rem;
    width: 100%;
  }

  body.nav-open { overflow: hidden; }

  .hero-section,
  .about-section,
  .services-section,
  .contact-section { padding: 3.5rem 0; }

  .hero-content h1 { font-size: 2.35rem; }
  .about-content h2,
  .services-left h2,
  .contact-heading { font-size: 2rem; }

  .hero-image,
  .services-image { height: 300px; }

  .stats-grid { gap: 1.25rem; }
  .stat-value { font-size: 1.7rem; }

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

/* Phone */
@media (max-width: 767px) {
  .container { padding: 0 1rem; }

  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }
  .top-bar .tagline { font-size: 0.72rem; }

  .hero-section { padding: 2.5rem 0; }
  .hero-grid,
  .about-grid,
  .services-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content h1 { font-size: 2rem; }
  .hero-content p { max-width: 100%; font-size: 1rem; }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn { width: 100%; min-height: 44px; }

  .hero-image,
  .about-image,
  .services-image { height: 220px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }

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

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-banner-btn { width: 100%; min-height: 44px; }

  .contact-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .tracking-hero { padding: 2.5rem 0; }
  .tracking-hero h1 { font-size: 2rem; }
  .tracking-form-container { padding: 2.5rem 0; }
  .search-box { flex-direction: column; }
  .search-btn { width: 100%; min-height: 44px; }

  .empty-state { padding: 4rem 0; }
  .result-state { padding: 2rem 0; }
  .result-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .print-btn { width: 100%; min-height: 44px; }

  .shipment-card,
  .progress-section { padding: 1.25rem; }

  .shipment-header-row,
  .mode-row,
  .progress-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tracking-badge { text-align: left; }

  .data-grid,
  .details-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .radio-group { flex-wrap: wrap; }

  .milestone {
    grid-template-columns: 16px 1fr;
    gap: 0.85rem;
  }
  .milestone-date {
    grid-column: 2;
    text-align: left;
  }
  .milestone-dot { grid-row: 1 / span 3; }
  .milestone::before {
    left: 5px;
    top: 16px;
    bottom: -28px;
  }

  input, select, textarea, .form-input, .search-input {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item {
    border-left: none;
    padding-left: 0;
    padding-top: 0.75rem;
    border-top: 1px solid #ddd;
  }
  .stat-item:first-child { border-top: none; padding-top: 0; }

  .about-section,
  .services-section,
  .contact-section,
  .cta-banner { padding: 2.5rem 0; }
}

@media print {
  .top-bar,
  .main-nav,
  .tracking-hero,
  .tracking-form-container,
  .site-footer,
  .print-btn,
  .mobile-menu-toggle,
  .nav-overlay { display: none !important; }

  .result-state { padding: 0; }
}
