*, *::before, *::after { box-sizing: border-box; }

.pf-social-sec {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: #09090b;
  font-family: 'Inter', sans-serif;
}

.pf-social-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(0,87,168,0.2) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.25;
  z-index: 0;
}

.pf-social-sec::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,87,168,0.05) 0%, transparent 50%, rgba(0,57,168,0.05) 100%);
  z-index: 0;
}

.pf-sp-inner {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pf-sp-header {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.pf-sp-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.pf-sp-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}

.pf-sp-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}

@media (min-width: 640px) {
  .pf-sp-stats-row { grid-template-columns: repeat(4, 1fr); }
}

.pf-sp-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  text-align: center;
}

.pf-sp-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #F5A623;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.pf-sp-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.pf-sp-carousel-outer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pf-sp-carousel-wrap {
  overflow: hidden;
  position: relative;
}

.pf-sp-carousel-wrap::before,
.pf-sp-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
}

.pf-sp-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, #09090b, transparent);
}

.pf-sp-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, #09090b, transparent);
}

@keyframes pf-sp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pf-sp-scroll-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.pf-sp-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: pf-sp-scroll 45s linear infinite;
}

.pf-sp-track-rev {
  animation: pf-sp-scroll-rev 50s linear infinite;
}

.pf-sp-track:hover,
.pf-sp-track-rev:hover {
  animation-play-state: paused;
}

.pf-sp-card {
  flex-shrink: 0;
  width: 280px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem;
}

.pf-sp-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.875rem;
}

.pf-sp-card-star {
  width: 14px;
  height: 14px;
  color: #F5A623;
  flex-shrink: 0;
}

.pf-sp-card-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0 0 0.875rem;
}

.pf-sp-card-author {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.pf-sp-card-suburb {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 0.125rem;
}

.pf-sp-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
}

.pf-sp-footer-stars {
  display: flex;
  gap: 4px;
}

.pf-sp-footer-star {
  width: 20px;
  height: 20px;
  color: #F5A623;
}

.pf-sp-footer-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin: 0;
}

.pf-sp-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,87,168,0.3), transparent);
  margin-top: 4rem;
}

@media (max-width: 600px) {
  .pf-social-sec { padding: 3.5rem 0; }
  .pf-sp-inner { padding: 0 1rem; }
}
