/* ============================================
   Private Label Page
   ============================================ */

/* Hero */
.pl-hero {
  background-color: var(--bg-dark);
  padding-top: var(--navbar-height);
  text-align: center;
}

.pl-hero__content {
  padding: var(--space-4xl) 0;
  max-width: 750px;
  margin: 0 auto;
}

.pl-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.pl-hero__title span { color: var(--brand-red); }

.pl-hero__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
}

/* Services Grid */
.pl-services { padding: var(--space-section) 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background-color: var(--brand-red);
  color: var(--text-white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: var(--lh-relaxed);
}

/* Process Steps */
.pl-process { padding: var(--space-section) 0; }

.pl-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.pl-step {
  background-color: var(--bg-beige);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  flex: 1;
  max-width: 260px;
}

.pl-step__num {
  width: 48px;
  height: 48px;
  background-color: var(--brand-red);
  color: var(--text-white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 1.25rem;
  margin: 0 auto var(--space-md);
}

.pl-step h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  margin-bottom: var(--space-xs);
}

.pl-step p {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: var(--lh-relaxed);
}

.pl-step__arrow {
  color: var(--brand-red);
  display: flex;
  align-items: center;
}

/* CTA (shared) */
.product-cta {
  padding: var(--space-4xl) 0;
  background-color: var(--brand-red);
  text-align: center;
}
.product-cta__title { font-size: var(--fs-h2); color: var(--text-white); margin-bottom: var(--space-md); }
.product-cta__text { font-size: var(--fs-body-lg); color: rgba(255,255,255,0.85); margin-bottom: var(--space-2xl); max-width: 600px; margin-left: auto; margin-right: auto; }
.product-cta__actions { display: flex; align-items: center; justify-content: center; gap: var(--space-lg); flex-wrap: wrap; }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pl-hero__content { padding: var(--space-2xl) 0; }
  .services-grid { grid-template-columns: 1fr; }
  .pl-steps { flex-direction: column; }
  .pl-step { max-width: 100%; }
  .pl-step__arrow { transform: rotate(90deg); }
  .product-cta__actions { flex-direction: column; align-items: stretch; }
}
