/* ============================================
   PROSHIP FREIGHT MANAGEMENT PLATFORM — Page Styles
   Prefix: ps-  (avoids conflicts with ct-, hl-, etc.)
   Design system: Poppins, #ea6425 orange, #1a1a2e dark,
                  Bootstrap grid, MDI icons
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
  --ps-dark: #1a1a2e;
  --ps-orange: #ea6425;
  --ps-orange-light: rgba(234, 100, 37, 0.08);
  --ps-white: #ffffff;
  --ps-gray-50: #f8f9fc;
  --ps-gray-200: #e5e7eb;
  --ps-gray-600: #6b7280;
  --ps-text: #1d1d1f;
  --ps-text-muted: #6b7280;
  --ps-text-light: #4b5563;
  --ps-border: #e5e7eb;
  --ps-radius: 16px;
  --ps-radius-sm: 12px;
  --ps-font: "Poppins", sans-serif;
  --ps-ease: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   SECTION 1 — HERO
   ============================================ */
.ps-hero {
  background: var(--ps-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.ps-hero__grid {
  display: flex;
  align-items: center;
  gap: 48px;
}
.ps-hero__text {
  flex: 0 0 55%;
  max-width: 55%;
}
.ps-hero__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-hero__eyebrow {
  display: inline-block;
  font-family: var(--ps-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ps-orange);
  margin-bottom: 20px;
}
.ps-hero__headline {
  font-family: var(--ps-font);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
}
.ps-hero__headline span {
  color: var(--ps-orange);
}
.ps-hero__sub {
  font-family: var(--ps-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin-bottom: 36px;
}
.ps-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* CTA Buttons (shared) */
.ps-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ps-font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.ps-btn--primary {
  color: #fff;
  background: var(--ps-orange);
  border-color: var(--ps-orange);
  box-shadow: 0 4px 20px rgba(234, 100, 37, 0.3);
}
.ps-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234, 100, 37, 0.4);
  color: #fff;
}
.ps-btn--ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}
.ps-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: translateY(-2px);
}

/* SVG Constellation */
.ps-constellation {
  width: 100%;
  max-width: 440px;
}

/* Hero SVG Animations */
@keyframes ps-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.9; }
}
@keyframes ps-dash {
  to { stroke-dashoffset: -20; }
}
@keyframes ps-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.ps-constellation__core {
  animation: ps-pulse 2.5s ease-in-out infinite;
  transform-origin: center;
}
.ps-constellation__line {
  stroke-dasharray: 6 4;
  animation: ps-dash 1.2s linear infinite;
}
.ps-constellation__ring {
  animation: ps-orbit 30s linear infinite;
  transform-origin: center;
}

/* ============================================
   SECTION 2 — METRICS BAR
   ============================================ */
.ps-metrics {
  background: #fff;
  border-top: 1px solid var(--ps-border);
  border-bottom: 1px solid var(--ps-border);
  padding: 48px 0;
}
.ps-metrics__grid {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ps-metrics__item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.ps-metrics__item + .ps-metrics__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--ps-border);
}
.ps-metrics__num {
  font-family: var(--ps-font);
  font-size: 34px;
  font-weight: 700;
  color: var(--ps-dark);
  line-height: 1.15;
  margin-bottom: 6px;
  display: block;
}
.ps-metrics__label {
  font-family: var(--ps-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--ps-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SECTION 3 — DELIVERY OPTIONS HUB
   ============================================ */
.ps-delivery {
  background: #fff;
  padding: 80px 0;
}
.ps-section-title {
  font-family: var(--ps-font);
  font-size: 40px;
  font-weight: 700;
  color: var(--ps-text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-align: center;
}
.ps-section-sub {
  font-family: var(--ps-font);
  font-size: 17px;
  color: var(--ps-text-muted);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}
.ps-delivery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ps-delivery__card {
  background: #fff;
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius);
  padding: 32px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--ps-ease);
  position: relative;
}
.ps-delivery__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.ps-delivery__speed {
  display: inline-block;
  font-family: var(--ps-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--ps-orange);
  background: var(--ps-orange-light);
  border: 1px solid rgba(234, 100, 37, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  width: fit-content;
}
.ps-delivery__name {
  font-family: var(--ps-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--ps-text);
  margin: 0;
}
.ps-delivery__coverage {
  font-family: var(--ps-font);
  font-size: 14px;
  color: var(--ps-text-light);
  line-height: 1.6;
  margin: 0;
}
.ps-delivery__coverage strong {
  color: var(--ps-dark);
  font-weight: 700;
}
.ps-delivery__partners {
  font-family: var(--ps-font);
  font-size: 13px;
  color: var(--ps-text-muted);
  margin: 0;
}
.ps-delivery__arrow {
  position: absolute;
  top: 32px;
  right: 28px;
  font-size: 20px;
  color: var(--ps-orange);
  transition: transform 0.25s;
}
.ps-delivery__card:hover .ps-delivery__arrow {
  transform: translateX(4px);
}

/* ============================================
   SECTION 4 — PROSHIP + PACE
   ============================================ */
.ps-intelligence {
  background: var(--ps-gray-50);
  padding: 80px 0;
}
.ps-intel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 0;
}

/* Left panel — dark card */
.ps-intel__dark {
  background: var(--ps-dark);
  border-radius: var(--ps-radius);
  padding: 40px 32px;
  color: #fff;
}
.ps-intel__dark-title {
  font-family: var(--ps-font);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.ps-intel__dark-sub {
  font-family: var(--ps-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}
.ps-intel__capabilities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ps-intel__capabilities li {
  font-family: var(--ps-font);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 18px;
  border-left: 4px solid var(--ps-orange);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 var(--ps-radius-sm) var(--ps-radius-sm) 0;
  line-height: 1.5;
}

/* Right panel — PACE table */
.ps-intel__light {
  background: #fff;
  border-radius: var(--ps-radius);
  border-top: 4px solid var(--ps-orange);
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.ps-intel__light-title {
  font-family: var(--ps-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--ps-text);
  margin-bottom: 24px;
}
.ps-pace-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ps-font);
}
.ps-pace-table th {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ps-text-muted);
  padding: 10px 12px;
  border-bottom: 2px solid var(--ps-border);
  text-align: left;
}
.ps-pace-table td {
  font-size: 14px;
  color: var(--ps-text);
  padding: 12px 12px;
  border-bottom: 1px solid var(--ps-border);
}
.ps-pace-table tr:last-child td {
  border-bottom: none;
}
.ps-pace-table__check {
  color: var(--ps-orange);
  font-weight: 700;
  font-size: 16px;
}
.ps-pace-table__cross {
  color: #d1d5db;
  font-size: 16px;
}

/* ============================================
   SECTION 5 — PRE-SHIPPING SOLUTIONS
   ============================================ */
.ps-pre {
  background: #fff;
  padding: 80px 0;
}
.ps-pre__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ps-pre__card {
  background: #fff;
  border: 1px solid var(--ps-border);
  border-left: 4px solid var(--ps-orange);
  border-radius: var(--ps-radius);
  padding: 32px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--ps-ease);
}
.ps-pre__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.ps-pre__card-icon {
  font-size: 28px;
  color: var(--ps-orange);
}
.ps-pre__card-name {
  font-family: var(--ps-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--ps-text);
  margin: 0;
}
.ps-pre__card-desc {
  font-family: var(--ps-font);
  font-size: 13px;
  color: var(--ps-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   SECTION 6 — POST-SHIPPING SOLUTIONS
   ============================================ */
.ps-post {
  background: var(--ps-gray-50);
  padding: 80px 0;
}
.ps-post__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ps-post__card {
  background: #fff;
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius);
  padding: 32px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--ps-ease);
}
.ps-post__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.ps-post__card-icon {
  font-size: 28px;
  color: var(--ps-orange);
}
.ps-post__card-name {
  font-family: var(--ps-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--ps-text);
  margin: 0;
}
.ps-post__card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ps-post__card-features li {
  font-family: var(--ps-font);
  font-size: 13px;
  color: var(--ps-text-muted);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.ps-post__card-features li::before {
  content: "\f012c";
  font-family: "Material Design Icons";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ps-orange);
  font-size: 14px;
}
.ps-post__card-arrow {
  font-size: 18px;
  color: var(--ps-orange);
  margin-top: auto;
  align-self: flex-end;
  transition: transform 0.25s;
}
.ps-post__card:hover .ps-post__card-arrow {
  transform: translateX(4px);
}

/* ============================================
   SECTION 7 — ENTERPRISE SERVICES
   ============================================ */
.ps-enterprise {
  background: var(--ps-dark);
  padding: 80px 0;
}
.ps-enterprise .ps-section-title {
  color: #fff;
}
.ps-enterprise .ps-section-sub {
  color: rgba(255, 255, 255, 0.6);
}
.ps-enterprise__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ps-enterprise__card {
  background: #fff;
  border-radius: var(--ps-radius);
  padding: 32px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--ps-ease);
}
.ps-enterprise__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}
.ps-enterprise__card-icon {
  font-size: 28px;
  color: var(--ps-orange);
}
.ps-enterprise__card-name {
  font-family: var(--ps-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--ps-text);
  margin: 0;
}
.ps-enterprise__card-desc {
  font-family: var(--ps-font);
  font-size: 13px;
  color: var(--ps-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   SECTION 8 — EXPRESS FREIGHT PTL/LTL
   ============================================ */
.ps-express {
  background: #fff;
  padding: 80px 0;
}
.ps-express__callout {
  background: var(--ps-dark);
  border-radius: var(--ps-radius);
  padding: 36px 32px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ps-express__callout-stats {
  font-family: var(--ps-font);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.7;
  flex: 1;
  min-width: 280px;
}
.ps-express__callout-stats strong {
  color: var(--ps-orange);
}
.ps-express__callout-count {
  font-family: var(--ps-font);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
.ps-express__callout-count span {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.2;
}
.ps-partner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.ps-partner-pill {
  font-family: var(--ps-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--ps-orange);
  background: rgba(234, 100, 37, 0.12);
  border: 1px solid rgba(234, 100, 37, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
}
.ps-express__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ps-express__card {
  background: #fff;
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-sm);
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--ps-ease);
}
.ps-express__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.ps-express__card-icon {
  font-size: 26px;
  color: var(--ps-orange);
}
.ps-express__card-name {
  font-family: var(--ps-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--ps-text);
  margin: 0;
}
.ps-express__card-desc {
  font-family: var(--ps-font);
  font-size: 13px;
  color: var(--ps-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SECTION 9 — GREEN CHANNEL MATRIX
   ============================================ */
.ps-green {
  background: var(--ps-gray-50);
  padding: 80px 0;
}
.ps-green__note {
  font-family: var(--ps-font);
  font-size: 13px;
  font-style: italic;
  color: var(--ps-text-muted);
  text-align: center;
  margin-top: 24px;
  line-height: 1.65;
}
.ps-green__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ps-green__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ps-font);
  background: #fff;
  border-radius: var(--ps-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  min-width: 640px;
}
.ps-green__table th {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ps-text-muted);
  padding: 16px 14px;
  border-bottom: 2px solid var(--ps-border);
  text-align: center;
  background: var(--ps-gray-50);
}
.ps-green__table th:first-child {
  text-align: left;
  min-width: 130px;
}
.ps-green__table td {
  font-size: 14px;
  color: var(--ps-text);
  padding: 14px 14px;
  border-bottom: 1px solid var(--ps-border);
  text-align: center;
}
.ps-green__table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ps-dark);
}
.ps-green__table tr:last-child td {
  border-bottom: none;
}
.ps-green__active {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ps-orange);
}
.ps-green__inactive {
  color: #d1d5db;
  font-size: 18px;
  line-height: 1;
}

/* ============================================
   SECTION 10 — PARTNER ECOSYSTEM
   ============================================ */
.ps-partners {
  background: #fff;
  padding: 80px 0;
}
.ps-partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ps-partners__card {
  background: #fff;
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius);
  padding: 28px 24px;
  transition: all var(--ps-ease);
}
.ps-partners__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.ps-partners__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.ps-partners__card-name {
  font-family: var(--ps-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--ps-text);
  margin: 0;
}
.ps-partners__badge {
  font-family: var(--ps-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--ps-orange);
  background: var(--ps-orange-light);
  border: 1px solid rgba(234, 100, 37, 0.15);
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.ps-partners__card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ps-partners__tag {
  font-family: var(--ps-font);
  font-size: 12px;
  font-weight: 500;
  color: var(--ps-text-muted);
  background: var(--ps-gray-50);
  border: 1px solid var(--ps-border);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ============================================
   SECTION 11 — SPECIALIZED CAPABILITIES
   ============================================ */
.ps-specialized {
  background: var(--ps-gray-50);
  padding: 80px 0;
}
.ps-specialized__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ps-specialized__card {
  background: #fff;
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--ps-ease);
}
.ps-specialized__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.ps-specialized__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ps-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.ps-specialized__card-icon i {
  font-size: 24px;
  color: var(--ps-orange);
}
.ps-specialized__card-name {
  font-family: var(--ps-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--ps-text);
  margin: 0 0 8px;
}
.ps-specialized__card-badge {
  display: inline-block;
  font-family: var(--ps-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--ps-orange);
  background: var(--ps-orange-light);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.ps-specialized__card-desc {
  font-family: var(--ps-font);
  font-size: 13px;
  color: var(--ps-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   SECTION 12 — CONTROL TOWER
   ============================================ */
.ps-tower {
  background: #fff;
  padding: 80px 0;
}
.ps-tower__grid {
  display: flex;
  align-items: center;
  gap: 56px;
}
.ps-tower__text {
  flex: 1;
}
.ps-tower__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-tower__eyebrow {
  display: inline-block;
  font-family: var(--ps-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ps-orange);
  margin-bottom: 12px;
}
.ps-tower__title {
  font-family: var(--ps-font);
  font-size: 32px;
  font-weight: 700;
  color: var(--ps-dark);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.ps-tower__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.ps-tower__list li {
  font-family: var(--ps-font);
  font-size: 14px;
  color: var(--ps-text-light);
  line-height: 1.65;
  padding: 12px 0 12px 18px;
  border-left: 4px solid var(--ps-orange);
  margin: 10px 0;
}
.ps-tower__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ps-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--ps-orange);
  text-decoration: none;
  transition: gap 0.25s;
}
.ps-tower__link:hover {
  gap: 12px;
  color: var(--ps-orange);
}

/* Tower cross-link pills */
.ps-tower__pill {
  font-family: var(--ps-font, "Poppins", sans-serif);
  font-size: 12px;
  font-weight: 600;
  color: #ea6425;
  background: rgba(234, 100, 37, 0.08);
  border: 1px solid rgba(234, 100, 37, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}
.ps-tower__pill:hover {
  background: rgba(234, 100, 37, 0.15);
  border-color: rgba(234, 100, 37, 0.3);
  color: #ea6425;
  text-decoration: none;
}

.ps-tower-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

/* ============================================
   SECTION 13 — CTA
   ============================================ */
.ps-cta {
  background: var(--ps-dark);
  padding: 80px 0;
  text-align: center;
}
.ps-cta__title {
  font-family: var(--ps-font);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.ps-cta__sub {
  font-family: var(--ps-font);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 36px;
}
.ps-cta .ps-btn--primary {
  font-size: 16px;
  padding: 16px 44px;
}

/* ============================================
   SECTION 14 — FAQ
   ============================================ */
.ps-faq {
  background: #fff;
  padding: 80px 0;
}
.ps-faq__title {
  font-family: var(--ps-font);
  font-size: 36px;
  font-weight: 700;
  color: var(--ps-text);
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  text-align: center;
}
.ps-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

/* Accordion (details/summary) */
.ps-faq__item {
  border-bottom: 1px solid var(--ps-border);
}
.ps-faq__item:last-child {
  border-bottom: none;
}
.ps-faq__q {
  font-family: var(--ps-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--ps-text);
  padding: 20px 36px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.5;
}
.ps-faq__q::-webkit-details-marker {
  display: none;
}
.ps-faq__q::marker {
  display: none;
  content: "";
}
.ps-faq__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: #aaa;
  transition: transform 0.3s;
}
.ps-faq__item[open] .ps-faq__q::after {
  content: "\2212";
  color: var(--ps-orange);
}
.ps-faq__a {
  font-family: var(--ps-font);
  font-size: 14px;
  color: var(--ps-text-muted);
  line-height: 1.75;
  padding: 0 36px 20px 0;
  margin: 0;
}

/* ============================================
   SECTION 15 — CONTACT
   ============================================ */
.ps-contact {
  background: var(--ps-gray-50);
  padding: 80px 0;
}

/* ============================================
   SECTION 16 — BRAND SLIDER
   ============================================ */
.ps-brands {
  background: #fff;
  padding: 64px 0;
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .ps-hero__grid {
    flex-direction: column;
    text-align: center;
  }
  .ps-hero__text {
    flex: none;
    max-width: 100%;
  }
  .ps-hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .ps-hero__actions {
    justify-content: center;
  }
  .ps-hero__visual {
    max-width: 340px;
    margin: 24px auto 0;
  }

  .ps-metrics__grid {
    flex-wrap: wrap;
    gap: 24px 0;
  }
  .ps-metrics__item {
    flex: 0 0 33.33%;
    margin-bottom: 16px;
  }

  .ps-delivery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ps-intel__grid {
    grid-template-columns: 1fr;
  }

  .ps-pre__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ps-post__grid {
    grid-template-columns: 1fr;
  }

  .ps-enterprise__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ps-express__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ps-express__callout {
    flex-direction: column;
    text-align: center;
  }

  .ps-partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ps-specialized__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ps-tower__grid {
    flex-direction: column;
    text-align: center;
  }
  .ps-tower__list li {
    text-align: left;
  }
  .ps-tower__visual {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .ps-section-title {
    font-size: 34px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .ps-hero {
    padding: 120px 0 56px;
  }
  .ps-hero__headline {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .ps-hero__sub {
    font-size: 15px;
  }
  .ps-hero__visual {
    display: none;
  }
  .ps-btn {
    font-size: 14px;
    padding: 12px 28px;
  }

  .ps-metrics {
    padding: 36px 0;
  }
  .ps-metrics__item {
    flex: 0 0 50%;
  }
  .ps-metrics__item::before {
    display: none;
  }
  .ps-metrics__num {
    font-size: 28px;
  }

  .ps-delivery {
    padding: 56px 0;
  }
  .ps-delivery__grid {
    grid-template-columns: 1fr;
  }

  .ps-intelligence {
    padding: 56px 0;
  }

  .ps-pre {
    padding: 56px 0;
  }
  .ps-pre__grid {
    grid-template-columns: 1fr;
  }

  .ps-post {
    padding: 56px 0;
  }

  .ps-enterprise {
    padding: 56px 0;
  }
  .ps-enterprise__grid {
    grid-template-columns: 1fr;
  }

  .ps-express {
    padding: 56px 0;
  }
  .ps-express__grid {
    grid-template-columns: 1fr;
  }
  .ps-express__callout {
    padding: 28px 20px;
  }

  .ps-green {
    padding: 56px 0;
  }

  .ps-partners {
    padding: 56px 0;
  }
  .ps-partners__grid {
    grid-template-columns: 1fr;
  }

  .ps-specialized {
    padding: 56px 0;
  }
  .ps-specialized__grid {
    grid-template-columns: 1fr;
  }

  .ps-tower {
    padding: 56px 0;
  }
  .ps-tower__title {
    font-size: 26px;
  }

  .ps-cta {
    padding: 56px 0;
  }
  .ps-cta__title {
    font-size: 30px;
  }
  .ps-cta__sub {
    font-size: 15px;
  }

  .ps-faq {
    padding: 56px 0;
  }
  .ps-faq__title {
    font-size: 28px;
  }

  .ps-contact {
    padding: 56px 0;
  }

  .ps-brands {
    padding: 40px 0;
  }

  .ps-section-title {
    font-size: 30px;
  }
  .ps-section-sub {
    font-size: 15px;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .ps-hero__headline {
    font-size: 30px;
  }
  .ps-hero__eyebrow {
    font-size: 11px;
  }
  .ps-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .ps-metrics__grid {
    flex-direction: column;
    gap: 20px;
  }
  .ps-metrics__item {
    flex: none;
    width: 100%;
    padding: 12px 0;
  }
  .ps-metrics__item + .ps-metrics__item::before {
    width: 40px;
    height: 1px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .ps-section-title {
    font-size: 26px;
  }
  .ps-cta__title {
    font-size: 26px;
  }
  .ps-faq__title {
    font-size: 24px;
  }
  .ps-tower__title {
    font-size: 24px;
  }

  .ps-delivery__name {
    font-size: 18px;
  }

  .ps-intel__dark,
  .ps-intel__light {
    padding: 28px 20px;
  }

  .ps-express__callout-stats {
    font-size: 14px;
  }

  .ps-green__table th,
  .ps-green__table td {
    padding: 10px 8px;
    font-size: 12px;
  }
}

/* ============================================
   SUBSECTION PAGES — Shared Styles
   Used by /logistics/ child pages
   ============================================ */

/* ---------- Sub-page Hero ---------- */
.ps-sub-hero {
  background: var(--ps-dark);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.ps-sub-hero__eyebrow {
  display: inline-block;
  font-family: var(--ps-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ps-orange);
  margin-bottom: 16px;
}
.ps-sub-hero__title {
  font-family: var(--ps-font);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 16px;
}
.ps-sub-hero__subtitle {
  font-family: var(--ps-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 680px;
  margin: 0;
}

/* ---------- Sub-page Core Content ---------- */
.ps-sub-content {
  background: #fff;
  padding: 80px 0;
}
.ps-sub-content__title {
  font-family: var(--ps-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--ps-text);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.ps-sub-content__text {
  font-family: var(--ps-font);
  font-size: 15px;
  color: var(--ps-text-light);
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 24px;
}
.ps-sub-content__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

/* ---------- Sub-page Feature Cards ---------- */
.ps-sub-feature {
  background: #fff;
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-sm);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--ps-ease);
}
.ps-sub-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}
.ps-sub-feature__icon {
  font-size: 26px;
  color: var(--ps-orange);
}
.ps-sub-feature__name {
  font-family: var(--ps-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--ps-text);
  margin: 0;
}
.ps-sub-feature__desc {
  font-family: var(--ps-font);
  font-size: 13px;
  color: var(--ps-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ---------- Coverage Badge ---------- */
.ps-coverage-badge {
  display: inline-block;
  font-family: var(--ps-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--ps-orange);
  background: var(--ps-orange-light);
  border: 1px solid rgba(234, 100, 37, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* ---------- Sub-page How It Works ---------- */
.ps-sub-steps {
  background: var(--ps-gray-50);
  padding: 80px 0;
}
.ps-sub-steps .ps-section-title {
  text-align: center;
}
.ps-sub-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--ps-border);
}
.ps-sub-step:last-child {
  border-bottom: none;
}
.ps-sub-step__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ps-orange);
  color: #fff;
  font-family: var(--ps-font);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-sub-step__title {
  font-family: var(--ps-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--ps-text);
  margin: 0 0 4px;
}
.ps-sub-step__desc {
  font-family: var(--ps-font);
  font-size: 14px;
  color: var(--ps-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ---------- Sub-page Related Capabilities ---------- */
.ps-sub-related {
  background: var(--ps-gray-50);
  padding: 80px 0;
}
.ps-sub-related__title {
  font-family: var(--ps-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--ps-text);
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.3px;
}
.ps-sub-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.ps-sub-related__card {
  background: #fff;
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-sm);
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--ps-ease);
  position: relative;
}
.ps-sub-related__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.ps-sub-related__card-name {
  font-family: var(--ps-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--ps-text);
  margin: 0;
}
.ps-sub-related__card-desc {
  font-family: var(--ps-font);
  font-size: 13px;
  color: var(--ps-text-muted);
  line-height: 1.65;
  margin: 0;
}
.ps-sub-related__card-arrow {
  font-size: 18px;
  color: var(--ps-orange);
  margin-top: auto;
  align-self: flex-end;
  transition: transform 0.25s;
}
.ps-sub-related__card:hover .ps-sub-related__card-arrow {
  transform: translateX(4px);
}

/* ---------- Outline Button Variant ---------- */
.ps-btn--outline {
  color: var(--ps-orange);
  background: transparent;
  border-color: var(--ps-orange);
}
.ps-btn--outline:hover {
  background: var(--ps-orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234, 100, 37, 0.3);
}

/* ---------- Section Header / Subtitle (alternate) ---------- */
.ps-section-header {
  font-family: var(--ps-font);
  font-size: 32px;
  font-weight: 700;
  color: var(--ps-text);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  text-align: center;
}
.ps-section-subtitle {
  font-family: var(--ps-font);
  font-size: 16px;
  color: var(--ps-text-muted);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ── Sub-page Metrics Bar ── */
.ps-sub-metrics {
  background: #fff;
  padding: 48px 0;
  border-bottom: 1px solid #e5e7eb;
}

.ps-sub-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.ps-sub-metrics__item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid #e5e7eb;
}

.ps-sub-metrics__item:last-child {
  border-right: none;
}

.ps-sub-metrics__number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
}

.ps-sub-metrics__label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .ps-sub-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ps-sub-metrics__item {
    border-bottom: 1px solid #e5e7eb;
  }
  .ps-sub-metrics__item:nth-child(2) {
    border-right: none;
  }
  .ps-sub-metrics__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .ps-sub-metrics__grid {
    grid-template-columns: 1fr;
  }
  .ps-sub-metrics__item {
    border-right: none;
  }
}

/* ---------- Subsection Responsive — Tablet ---------- */
@media (max-width: 1024px) {
  .ps-sub-hero__title {
    font-size: 34px;
  }
  .ps-sub-content__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ps-sub-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Subsection Responsive — Mobile ---------- */
@media (max-width: 768px) {
  .ps-sub-hero {
    padding: 120px 0 48px;
  }
  .ps-sub-hero__title {
    font-size: 28px;
  }
  .ps-sub-hero__subtitle {
    font-size: 14px;
  }
  .ps-sub-content {
    padding: 56px 0;
  }
  .ps-sub-content__title {
    font-size: 24px;
  }
  .ps-sub-content__grid {
    grid-template-columns: 1fr;
  }
  .ps-sub-steps {
    padding: 56px 0;
  }
  .ps-sub-related {
    padding: 56px 0;
  }
  .ps-sub-related__title {
    font-size: 24px;
  }
  .ps-sub-related__grid {
    grid-template-columns: 1fr;
  }
  .ps-section-header {
    font-size: 26px;
  }
}

/* ---------- Subsection Responsive — Small Mobile ---------- */
@media (max-width: 480px) {
  .ps-sub-hero__title {
    font-size: 24px;
  }
  .ps-sub-content__title {
    font-size: 22px;
  }
  .ps-sub-related__title {
    font-size: 22px;
  }
  .ps-section-header {
    font-size: 22px;
  }
}
