/**
 * Product Category Pages – Shared Stylesheet
 * Used by: submersible-pumps, surface-pumps, solar-water-pumps, agricultural-processing-machines
 * Prefix: pp-
 */

/* ==========================================================================
   HERO
   ========================================================================== */
.pp-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a0a2e;
  padding: 100px 1.5rem 3.5rem;
}

.pp-hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.pp-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,10,46,0.82) 0%, rgba(60,20,100,0.72) 50%, rgba(88,28,135,0.65) 100%);
  z-index: 1;
}

.pp-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pp-hero__pretitle {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}

.pp-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 1rem;
}

.pp-hero__subtitle {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto 2rem;
}

.pp-hero__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pp-hero__actions .c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.pp-hero__actions .c-btn--secondary {
  background: #fff;
  color: #660099;
}
.pp-hero__actions .c-btn--secondary:hover {
  background: #f3e8ff;
  transform: translateY(-1px);
}

.pp-hero__actions .c-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.pp-hero__actions .c-btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

/* ==========================================================================
   SECTION
   ========================================================================== */
.pp-section {
  padding: 4.5rem 1.5rem;
}

.pp-section--white { background: #fff; }
.pp-section--gray  { background: #f8f9fb; }
.pp-section--gradient {
  background: linear-gradient(135deg, #1a0a2e 0%, #3b1562 50%, #581c87 100%);
  color: #fff;
}

.pp-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.pp-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.pp-section__pretitle {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  background: rgba(102,0,153,0.08);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #660099;
  margin-bottom: 0.75rem;
}

.pp-section--gradient .pp-section__pretitle {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}

.pp-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.pp-section--gradient .pp-section__title { color: #fff; }

.pp-section__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.pp-section--gradient .pp-section__subtitle { color: rgba(255,255,255,0.8); }

.pp-section__intro {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #444;
}

/* ==========================================================================
   GRID
   ========================================================================== */
.pp-grid {
  display: grid;
  gap: 1.5rem;
}

.pp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.pp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.pp-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
  .pp-grid--3, .pp-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pp-grid--2, .pp-grid--3, .pp-grid--4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FEATURE CARD (icon + title + description)
   ========================================================================== */
.pp-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #eee;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(102,0,153,0.08);
}

.pp-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102,0,153,0.08);
  border-radius: 12px;
  color: #660099;
  margin-bottom: 1rem;
}

.pp-card__icon svg {
  width: 24px;
  height: 24px;
}

.pp-card__icon--green {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}

.pp-card__icon--blue {
  background: rgba(59,130,246,0.1);
  color: #3b82f6;
}

.pp-card__icon--amber {
  background: rgba(245,158,11,0.1);
  color: #d97706;
}

.pp-card__step {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #660099;
  color: #fff;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pp-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 0.5rem;
}

.pp-card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.pp-card__list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.pp-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #555;
  padding: 0.25rem 0;
}

.pp-card__list li svg {
  width: 16px;
  height: 16px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Glass card (for gradient backgrounds) */
.pp-card--glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,0.15);
}

.pp-card--glass .pp-card__icon {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.pp-card--glass .pp-card__title { color: #fff; }
.pp-card--glass .pp-card__text { color: rgba(255,255,255,0.8); }
.pp-card--glass .pp-card__list li { color: rgba(255,255,255,0.8); }
.pp-card--glass .pp-card__list li svg { color: rgba(255,255,255,0.9); }

.pp-card--glass:hover {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ==========================================================================
   PRODUCT CARD (image + body + footer)
   ========================================================================== */
.pp-product {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pp-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(102,0,153,0.08);
}

.pp-product__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.pp-product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s;
}

.pp-product:hover .pp-product__image img {
  transform: scale(1.05);
}

.pp-product__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
  color: #a78bfa;
}

.pp-product__placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.pp-product__body {
  padding: 1.25rem 1.5rem;
  flex: 1;
}

.pp-product__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #660099;
  background: rgba(102,0,153,0.06);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.pp-product__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 0.375rem;
  line-height: 1.3;
}

.pp-product__desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.55;
  margin: 0;
}

.pp-product__footer {
  padding: 0 1.5rem 1.25rem;
  display: flex;
  gap: 0.625rem;
}

.pp-product__footer .c-btn {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.pp-product__footer .c-btn--outline {
  background: transparent;
  border: 1.5px solid #ddd;
  color: #374151;
}
.pp-product__footer .c-btn--outline:hover {
  border-color: #660099;
  color: #660099;
}

.pp-product__footer .c-btn--primary {
  background: #660099;
  color: #fff;
  border: 1.5px solid #660099;
}
.pp-product__footer .c-btn--primary:hover {
  background: #4a0066;
  border-color: #4a0066;
}

/* Product details modal */
.pp-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.pp-modal.is-open {
  display: flex;
}

.pp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(2px);
}

.pp-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.pp-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
}

.pp-modal__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
}

.pp-modal__close {
  width: 38px;
  height: 38px;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.pp-modal__body {
  padding: 1.25rem;
}

.pp-modal__image-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
}

.pp-modal__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pp-modal__summary {
  margin: 0 0 0.75rem;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pp-modal__description {
  margin: 0;
  color: #1f2937;
  font-size: 0.95rem;
  line-height: 1.7;
  white-space: pre-line;
}

.pp-modal__actions {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid #e5e7eb;
}

.pp-modal__actions .c-btn {
  flex: 1;
  text-align: center;
}

/* Ensure popup "Inquire Now" button always uses white text */
.pp-modal #pp-modal-inquire,
.pp-modal__actions #pp-modal-inquire {
  color: #fff !important;
}

/* Empty state */
.pp-empty {
  text-align: center;
  padding: 3rem;
  background: #f9fafb;
  border-radius: 16px;
  border: 2px dashed #e5e7eb;
}

.pp-empty svg { margin-bottom: 1rem; color: #9ca3af; }
.pp-empty p { color: #6b7280; margin: 0; font-size: 0.9375rem; }

/* ==========================================================================
   SPECS TABLE
   ========================================================================== */
.pp-specs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.pp-specs-table thead th {
  background: #660099;
  color: #fff;
  padding: 0.875rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
}

.pp-specs-table tbody td,
.pp-specs-table tbody th {
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  border-bottom: 1px solid #f0f0f0;
}

.pp-specs-table tbody th {
  font-weight: 600;
  color: #1a1a2e;
  background: #faf9fc;
}

.pp-specs-table tbody td {
  color: #555;
}

.pp-specs-table tbody tr:last-child td,
.pp-specs-table tbody tr:last-child th {
  border-bottom: none;
}

.pp-specs-wrap {
  overflow-x: auto;
  border-radius: 12px;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.pp-cta {
  padding: 4.5rem 1.5rem;
  background: linear-gradient(135deg, #1a0a2e 0%, #3b1562 50%, #581c87 100%);
  text-align: center;
}

.pp-cta__inner {
  max-width: 720px;
  margin: 0 auto;
}

.pp-cta__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.pp-cta__text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin: 0 0 1.75rem;
}

.pp-cta__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.pp-cta__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.pp-cta__pill svg {
  width: 14px;
  height: 14px;
  color: #22c55e;
}

.pp-cta__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pp-cta__actions .c-btn--secondary {
  background: #fff;
  color: #660099;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.pp-cta__actions .c-btn--secondary:hover {
  background: #f3e8ff;
  transform: translateY(-1px);
}

.pp-cta__actions .c-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.pp-cta__actions .c-btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes ppFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.pp-card, .pp-product { animation: ppFadeIn 0.5s ease both; }
.pp-grid > :nth-child(2) { animation-delay: 0.08s; }
.pp-grid > :nth-child(3) { animation-delay: 0.16s; }
.pp-grid > :nth-child(4) { animation-delay: 0.24s; }
.pp-grid > :nth-child(5) { animation-delay: 0.32s; }
.pp-grid > :nth-child(6) { animation-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .pp-card, .pp-product { animation: none; }
}

/* ==========================================================================
   CATEGORY CARD (image + overlay + text)
   ========================================================================== */
.pp-category {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: #fff;
}

.pp-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(102,0,153,0.15);
}

.pp-category__image {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-color: #1a0a2e;
  transition: transform 0.5s;
}

.pp-category:hover .pp-category__image { transform: scale(1.06); }

.pp-category__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,10,46,0.1) 0%, rgba(26,10,46,0.75) 100%);
  z-index: 1;
}

.pp-category__body {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  width: 100%;
}

.pp-category__count {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.625rem;
}

.pp-category__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.375rem;
  line-height: 1.25;
}

.pp-category__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pp-category__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: gap 0.2s;
}

.pp-category:hover .pp-category__link { gap: 0.625rem; }

.pp-category__link svg { width: 16px; height: 16px; }

.pp-category__placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0a2e 0%, #3b1562 60%, #581c87 100%);
}

.pp-category__placeholder-icon svg { width: 64px; height: 64px; opacity: 0.2; color: #fff; }

/* ==========================================================================
   COMPARISON SECTION (Solar vs Fuel)
   ========================================================================== */
.pp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pp-compare__col {
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #eee;
}

.pp-compare__col--solar {
  background: linear-gradient(135deg, rgba(102,0,153,0.04) 0%, rgba(102,0,153,0.08) 100%);
  border-color: rgba(102,0,153,0.15);
}

.pp-compare__col--fuel {
  background: #f9fafb;
  border-color: #e5e7eb;
}

.pp-compare__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pp-compare__col--solar .pp-compare__badge {
  background: rgba(102,0,153,0.1);
  color: #660099;
}

.pp-compare__col--fuel .pp-compare__badge {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
}

.pp-compare__badge svg { width: 14px; height: 14px; }

.pp-compare__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.375rem;
}

.pp-compare__tagline {
  font-size: 0.8125rem;
  color: #888;
  margin: 0 0 1.25rem;
}

.pp-compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pp-compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9375rem;
  color: #444;
}

.pp-compare__list li:last-child { border-bottom: none; }

.pp-compare__list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.pp-compare__col--solar .pp-compare__list li svg { color: #22c55e; }
.pp-compare__col--fuel .pp-compare__list li svg { color: #ef4444; }

.pp-compare__list strong {
  font-weight: 600;
  color: #1a1a2e;
}

.pp-compare__verdict {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pp-compare__note {
  border-radius: 12px;
  padding: 1.5rem;
}

.pp-compare__note--solar {
  background: rgba(102,0,153,0.06);
  border-left: 4px solid #660099;
}

.pp-compare__note--fuel {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
}

.pp-compare__note h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 0.375rem;
}

.pp-compare__note--solar h4 { color: #660099; }
.pp-compare__note--fuel h4 { color: #dc2626; }

.pp-compare__note p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .pp-compare { grid-template-columns: 1fr; }
  .pp-compare__verdict { grid-template-columns: 1fr; }
  .pp-category { min-height: 260px; }
}

/* ==========================================================================
   STATS ROW
   ========================================================================== */
.pp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pp-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
}

.pp-stat__value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.375rem;
}

.pp-stat__label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

@media (max-width: 768px) {
  .pp-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 480px) {
  .pp-stats { grid-template-columns: 1fr; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .pp-hero { min-height: 400px; padding: 90px 1rem 2.5rem; }
  .pp-section { padding: 3rem 1rem; }
  .pp-cta { padding: 3rem 1rem; }
  .pp-card { padding: 1.5rem; }
}
