/* ==========================================================================
   Packaging Material Page
   Prefix: pm-
   ========================================================================== */

:root {
  --pm-dark: #1a1a2e;
  --pm-orange: #ea6425;
  --pm-orange-light: #fff4ed;
  --pm-white: #ffffff;
  --pm-gray-50: #f9fafb;
  --pm-gray-100: #f3f4f6;
  --pm-gray-200: #e5e7eb;
  --pm-gray-400: #9ca3af;
  --pm-gray-600: #4b5563;
  --pm-gray-900: #111827;
  --pm-radius: 14px;
  --pm-font: "Poppins", sans-serif;
}

/* Scroll margin for anchor links */
[id^="pm-"] {
  scroll-margin-top: 100px;
}

/* Shared section header */
.pm-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.pm-section-header__title {
  font-family: var(--pm-font);
  font-size: 34px;
  font-weight: 700;
  color: var(--pm-gray-900);
  margin: 0 0 12px;
  line-height: 1.25;
}

.pm-section-header__subtitle {
  font-family: var(--pm-font);
  font-size: 16px;
  color: var(--pm-gray-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   1. Hero
   ========================================================================== */
.pm-hero {
  background: var(--pm-dark);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pm-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 100, 37, 0.07) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.pm-hero__eyebrow {
  display: inline-block;
  font-family: var(--pm-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pm-orange);
  background: rgba(234, 100, 37, 0.12);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pm-hero__title {
  font-family: var(--pm-font);
  font-size: 46px;
  font-weight: 700;
  color: var(--pm-white);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.15;
}

.pm-hero__subtitle {
  font-family: var(--pm-font);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.pm-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.pm-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--pm-orange);
  color: var(--pm-white);
  border-radius: 8px;
  font-family: var(--pm-font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  min-height: 44px;
}

.pm-hero__btn-primary:hover {
  background: #d4551c;
  transform: translateY(-1px);
  color: var(--pm-white);
  text-decoration: none;
}

.pm-hero__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--pm-white);
  border-radius: 8px;
  font-family: var(--pm-font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  min-height: 44px;
}

.pm-hero__btn-outline:hover {
  border-color: var(--pm-white);
  background: rgba(255, 255, 255, 0.06);
  color: var(--pm-white);
  text-decoration: none;
}

.pm-hero__trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pm-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pm-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.pm-hero__trust-item i {
  font-size: 18px;
  color: var(--pm-orange);
}

/* ==========================================================================
   2. Problem Section
   ========================================================================== */
.pm-problem {
  background: var(--pm-white);
  padding: 80px 0;
}

.pm-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pm-problem__card {
  background: var(--pm-gray-50);
  border: 1px solid var(--pm-gray-200);
  border-radius: var(--pm-radius);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pm-problem__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pm-problem__icon {
  font-size: 28px;
  color: var(--pm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--pm-orange-light);
  border-radius: 12px;
  margin-bottom: 20px;
}

.pm-problem__card-title {
  font-family: var(--pm-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--pm-gray-900);
  margin: 0 0 8px;
}

.pm-problem__card-desc {
  font-family: var(--pm-font);
  font-size: 14px;
  color: var(--pm-gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   3. Material Types
   ========================================================================== */
.pm-types {
  background: var(--pm-gray-50);
  padding: 80px 0;
}

.pm-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pm-types__card {
  background: var(--pm-white);
  border: 1px solid var(--pm-gray-200);
  border-radius: var(--pm-radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pm-types__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pm-types__visual {
  height: 160px;
  background: linear-gradient(135deg, var(--pm-gray-100) 0%, var(--pm-gray-50) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-types__visual i {
  font-size: 56px;
  color: var(--pm-gray-400);
}

.pm-types__card-title {
  font-family: var(--pm-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--pm-gray-900);
  margin: 0 0 8px;
  padding: 24px 24px 0;
}

.pm-types__card-desc {
  font-family: var(--pm-font);
  font-size: 14px;
  color: var(--pm-gray-600);
  line-height: 1.7;
  margin: 0;
  padding: 0 24px 24px;
}

/* ==========================================================================
   4. Why Prozo
   ========================================================================== */
.pm-why {
  background: var(--pm-white);
  padding: 80px 0;
}

.pm-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pm-why__card {
  background: var(--pm-white);
  border: 1px solid var(--pm-gray-200);
  border-radius: var(--pm-radius);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pm-why__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pm-why__icon {
  font-size: 24px;
  color: var(--pm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--pm-orange-light);
  border-radius: 12px;
  margin-bottom: 16px;
}

.pm-why__card-title {
  font-family: var(--pm-font);
  font-size: 17px;
  font-weight: 600;
  color: var(--pm-gray-900);
  margin: 0 0 6px;
}

.pm-why__card-desc {
  font-family: var(--pm-font);
  font-size: 14px;
  color: var(--pm-gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   5. WMS Integration — Hero Feature
   ========================================================================== */
.pm-wms {
  background: var(--pm-dark);
  background-image: radial-gradient(circle at 1px 1px,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 0);
  background-size: 32px 32px;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.pm-wms__eyebrow {
  display: inline-block;
  font-family: var(--pm-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pm-orange);
  background: rgba(234, 100, 37, 0.15);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.pm-wms__title {
  font-family: var(--pm-font);
  font-size: 38px;
  font-weight: 700;
  color: var(--pm-white);
  margin: 0 0 12px;
}

.pm-wms__subtitle {
  font-family: var(--pm-font);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 48px;
}

.pm-wms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}

.pm-wms__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--pm-radius);
  padding: 28px;
  transition: background 0.2s, border-color 0.2s;
}

.pm-wms__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.pm-wms__icon {
  font-size: 22px;
  color: var(--pm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(234, 100, 37, 0.15);
  border-radius: 10px;
  margin-bottom: 16px;
}

.pm-wms__card-title {
  font-family: var(--pm-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--pm-white);
  margin: 0 0 8px;
}

.pm-wms__card-desc {
  font-family: var(--pm-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

.pm-wms__footer-note {
  font-family: var(--pm-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  margin-top: 32px;
  text-align: center;
}

/* ==========================================================================
   6. Stats Section
   ========================================================================== */
.pm-stats {
  background: var(--pm-white);
  padding: 80px 0;
}

.pm-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pm-stats__item {
  text-align: center;
  padding: 32px 16px;
  background: var(--pm-gray-50);
  border: 1px solid var(--pm-gray-200);
  border-radius: var(--pm-radius);
}

.pm-stats__number {
  font-family: var(--pm-font);
  font-size: 44px;
  font-weight: 800;
  color: var(--pm-orange);
  line-height: 1;
  display: block;
}

.pm-stats__label {
  font-family: var(--pm-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--pm-gray-900);
  margin-top: 10px;
  display: block;
}

.pm-stats__sublabel {
  font-family: var(--pm-font);
  font-size: 13px;
  color: var(--pm-gray-400);
  margin-top: 4px;
  display: block;
}

/* ==========================================================================
   7. Vendor Network
   ========================================================================== */
.pm-vendor {
  background: var(--pm-gray-50);
  padding: 80px 0;
}

.pm-vendor__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pm-vendor__card {
  background: var(--pm-white);
  border: 1px solid var(--pm-gray-200);
  border-radius: var(--pm-radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pm-vendor__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pm-vendor__icon {
  font-size: 28px;
  color: var(--pm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--pm-orange-light);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.pm-vendor__card-title {
  font-family: var(--pm-font);
  font-size: 17px;
  font-weight: 600;
  color: var(--pm-gray-900);
  margin: 0 0 8px;
}

.pm-vendor__card-desc {
  font-family: var(--pm-font);
  font-size: 14px;
  color: var(--pm-gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   8. Process / How It Works
   ========================================================================== */
.pm-process {
  background: var(--pm-white);
  padding: 80px 0;
}

.pm-process__flow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.pm-process__step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  position: relative;
}

.pm-process__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pm-white);
  border: 2px solid var(--pm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--pm-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--pm-orange);
  position: relative;
  z-index: 1;
}

.pm-process__step-title {
  font-family: var(--pm-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--pm-gray-900);
  margin: 0 0 6px;
}

.pm-process__step-desc {
  font-family: var(--pm-font);
  font-size: 13px;
  color: var(--pm-gray-600);
  line-height: 1.6;
  margin: 0;
}

.pm-process__connector {
  width: 40px;
  height: 2px;
  background: var(--pm-gray-200);
  margin-top: 25px;
  flex-shrink: 0;
}

/* ==========================================================================
   9. Pricing
   ========================================================================== */
.pm-pricing {
  background: var(--pm-gray-50);
  padding: 80px 0;
}

.pm-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pm-pricing__card {
  background: var(--pm-white);
  border: 1px solid var(--pm-gray-200);
  border-radius: var(--pm-radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pm-pricing__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pm-pricing__icon {
  font-size: 24px;
  color: var(--pm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--pm-orange-light);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.pm-pricing__card-title {
  font-family: var(--pm-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--pm-gray-900);
  margin: 0 0 8px;
}

.pm-pricing__card-desc {
  font-family: var(--pm-font);
  font-size: 14px;
  color: var(--pm-gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   11. Integration Value Prop
   ========================================================================== */
.pm-integration {
  background: var(--pm-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pm-integration::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 100, 37, 0.06) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}

.pm-integration__flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.pm-integration__flow-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 20px;
  color: var(--pm-white);
  font-family: var(--pm-font);
  font-size: 14px;
  font-weight: 500;
}

.pm-integration__flow-arrow {
  color: rgba(255, 255, 255, 0.25);
  font-size: 20px;
}

.pm-integration__points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pm-integration__point {
  text-align: center;
}

.pm-integration__point-title {
  font-family: var(--pm-font);
  font-size: 17px;
  font-weight: 600;
  color: var(--pm-white);
  margin: 0 0 4px;
}

.pm-integration__point-desc {
  font-family: var(--pm-font);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   12. CTA
   ========================================================================== */
.pm-cta {
  background: var(--pm-orange);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pm-cta::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.pm-cta__title {
  font-family: var(--pm-font);
  font-size: 32px;
  font-weight: 700;
  color: var(--pm-white);
  margin: 0 0 12px;
}

.pm-cta__subtitle {
  font-family: var(--pm-font);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.pm-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.pm-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: var(--pm-white);
  color: var(--pm-orange);
  border-radius: 8px;
  font-family: var(--pm-font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  min-height: 44px;
}

.pm-cta__btn-primary:hover {
  background: var(--pm-gray-50);
  transform: translateY(-1px);
  color: var(--pm-orange);
  text-decoration: none;
}

.pm-cta__btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--pm-white);
  border-radius: 8px;
  font-family: var(--pm-font);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  min-height: 44px;
}

.pm-cta__btn-outline:hover {
  border-color: var(--pm-white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--pm-white);
  text-decoration: none;
}

/* ==========================================================================
   13. FAQ
   ========================================================================== */
.pm-faq {
  background: var(--pm-white);
  padding: 80px 0;
}

.pm-faq__list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.pm-faq__item {
  border: 1px solid var(--pm-gray-200);
  border-radius: var(--pm-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.pm-faq__item[open] {
  border-color: var(--pm-orange);
}

.pm-faq__item summary,
.pm-faq__q {
  padding: 18px 24px;
  font-family: var(--pm-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--pm-gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}

.pm-faq__item summary::-webkit-details-marker {
  display: none;
}

.pm-faq__item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--pm-gray-400);
  font-weight: 400;
  transition: color 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.pm-faq__item[open] summary::after {
  content: "\2212";
  color: var(--pm-orange);
}

.pm-faq__item[open] summary {
  border-bottom: 1px solid var(--pm-gray-200);
}

.pm-faq__a,
.pm-faq__item dd,
.pm-faq__item p {
  padding: 20px 24px;
  font-family: var(--pm-font);
  font-size: 14px;
  color: var(--pm-gray-600);
  line-height: 1.8;
  margin: 0;
}

/* ==========================================================================
   14. Footnote
   ========================================================================== */
.pm-footnote {
  text-align: center;
  padding: 24px 0;
  font-family: var(--pm-font);
  font-size: 13px;
  color: var(--pm-gray-400);
}

/* ==========================================================================
   RESPONSIVE — 1024px
   ========================================================================== */
@media (max-width: 1024px) {
  .pm-hero__title {
    font-size: 38px;
  }

  .pm-wms__title {
    font-size: 32px;
  }

  .pm-section-header__title {
    font-size: 28px;
  }

  .pm-problem__grid,
  .pm-types__grid,
  .pm-why__grid,
  .pm-vendor__grid,
  .pm-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pm-wms__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

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

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

/* ==========================================================================
   RESPONSIVE — 768px
   ========================================================================== */
@media (max-width: 768px) {
  .pm-hero {
    padding: 110px 0 56px;
  }

  .pm-hero__title {
    font-size: 30px;
  }

  .pm-hero__subtitle {
    font-size: 15px;
  }

  .pm-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .pm-hero__btn-primary,
  .pm-hero__btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .pm-hero__trust {
    gap: 16px;
  }

  .pm-problem__grid,
  .pm-types__grid,
  .pm-why__grid,
  .pm-vendor__grid,
  .pm-pricing__grid {
    grid-template-columns: 1fr;
  }

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

  .pm-wms__title {
    font-size: 28px;
  }

  .pm-process__flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .pm-process__connector {
    width: 2px;
    height: 24px;
    margin: 0 auto;
  }

  .pm-integration__flow {
    flex-direction: column;
  }

  .pm-integration__flow-arrow {
    transform: rotate(90deg);
  }

  .pm-integration__points {
    grid-template-columns: 1fr 1fr;
  }

  .pm-cta__title {
    font-size: 26px;
  }

  .pm-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .pm-cta__btn-primary,
  .pm-cta__btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .pm-hero,
  .pm-problem,
  .pm-types,
  .pm-why,
  .pm-wms,
  .pm-stats,
  .pm-vendor,
  .pm-process,
  .pm-pricing,
  .pm-integration,
  .pm-cta,
  .pm-faq {
    padding: 56px 0;
  }

  .pm-section-header__title {
    font-size: 24px;
  }

  .pm-section-header {
    margin-bottom: 32px;
  }
}

/* ==========================================================================
   RESPONSIVE — 480px
   ========================================================================== */
@media (max-width: 480px) {
  .pm-hero__title {
    font-size: 26px;
  }

  .pm-stats__number {
    font-size: 36px;
  }

  .pm-hero__trust {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .pm-integration__points {
    grid-template-columns: 1fr;
  }

  .pm-section-header__title {
    font-size: 22px;
  }

  .pm-stats__grid {
    grid-template-columns: 1fr;
  }

  .pm-faq__item summary,
  .pm-faq__q {
    font-size: 14px;
    padding: 16px 20px;
  }

  .pm-faq__a,
  .pm-faq__item dd,
  .pm-faq__item p {
    padding: 16px 20px;
    font-size: 13px;
  }
}

/* ==========================================================================
   17. JSX Class Aliases — fixes for class names used in JSX
   ========================================================================== */

/* ── Shared section header (replaces per-section __title pattern) ── */
.pm-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.pm-section-header__title {
  font-size: 34px;
  font-weight: 700;
  color: var(--pm-dark);
  margin-bottom: 12px;
}

.pm-section-header__subtitle {
  font-size: 16px;
  color: var(--pm-gray-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Hero actions (alias for __btns) ── */
.pm-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Problem section — icon on <i> directly, card-desc alias ── */
.pm-problem__icon {
  font-size: 36px;
  color: var(--pm-orange);
  display: block;
  margin-bottom: 16px;
}

.pm-problem__card-desc {
  font-size: 15px;
  color: var(--pm-gray-600);
  line-height: 1.6;
}

/* ── Types section — new card structure ── */
.pm-types__card {
  background: #fff;
  border: 1px solid var(--pm-gray-200);
  border-radius: var(--pm-radius);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pm-types__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pm-types__visual {
  width: 56px;
  height: 56px;
  background: var(--pm-orange-light);
  border-radius: var(--pm-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pm-types__visual .mdi {
  font-size: 28px;
  color: var(--pm-orange);
}

.pm-types__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--pm-dark);
  margin-bottom: 8px;
}

.pm-types__card-desc {
  font-size: 15px;
  color: var(--pm-gray-600);
  line-height: 1.6;
}

/* ── Why Prozo — icon on <i> directly ── */
.pm-why__icon {
  font-size: 28px;
  color: var(--pm-orange);
  display: block;
  margin-bottom: 14px;
}

/* ── WMS — icon on <i> directly ── */
.pm-wms__icon {
  font-size: 28px;
  color: var(--pm-orange);
  display: block;
  margin-bottom: 14px;
}

/* ── Stats — JSX uses pm-stats__item / __number / __label / __sublabel ── */
.pm-stats__item {
  text-align: center;
  padding: 32px 16px;
}

.pm-stats__number {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: var(--pm-orange);
  line-height: 1;
}

.pm-stats__label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--pm-dark);
  margin-top: 8px;
}

.pm-stats__sublabel {
  display: block;
  font-size: 13px;
  color: var(--pm-gray-400);
  margin-top: 4px;
}

/* ── Vendor — icon on <i> directly, card-desc alias ── */
.pm-vendor__icon {
  font-size: 32px;
  color: var(--pm-orange);
  display: block;
  margin-bottom: 16px;
}

.pm-vendor__card-desc {
  font-size: 15px;
  color: var(--pm-gray-600);
  line-height: 1.6;
}

/* ── Process — new stepper layout ── */
.pm-process__flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.pm-process__step {
  flex: 0 0 200px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.pm-process__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pm-orange);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(234, 100, 37, 0.3);
}

.pm-process__connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--pm-orange), rgba(234, 100, 37, 0.3));
  margin-top: 27px;
  /* vertically centred with the 56px circle */
  max-width: 80px;
  min-width: 20px;
  border-radius: 2px;
}

/* ── Pricing — icon on <i> directly ── */
.pm-pricing__icon {
  font-size: 32px;
  color: var(--pm-orange);
  display: block;
  margin-bottom: 16px;
}

/* ── CTA actions (alias for __btns) ── */
.pm-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── Responsive overrides for new classes ── */
@media (max-width: 768px) {
  .pm-section-header__title {
    font-size: 26px;
  }

  .pm-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .pm-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .pm-process__flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .pm-process__step {
    flex: none;
    width: 100%;
    max-width: 320px;
  }

  .pm-process__connector {
    width: 2px;
    height: 32px;
    max-width: 2px;
    min-width: 2px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--pm-orange), rgba(234, 100, 37, 0.3));
  }

  .pm-stats__number {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .pm-section-header__title {
    font-size: 30px;
  }

  .pm-process__step {
    flex: 0 0 160px;
  }
}