@keyframes pf-grad {
  0%, 100% { background-position: 0% center; }
  50%       { background-position: 200% center; }
}


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

.pf-hero {
  position: relative;
  z-index: 0;
  min-height: 80vh;
  background: linear-gradient(135deg, #09090b 0%, #0a1628 50%, #09090b 100%);
  display: flex;
  flex-direction: column;
}

.pf-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pf-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.pf-hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 3rem;
}

.pf-hero-inner {
  max-width: 48rem;
  text-align: center;
}

.pf-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.pf-h1-gradient {
  background: linear-gradient(90deg, #0057A8, #F5A623, #0057A8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pf-grad 3s linear infinite;
}

.pf-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.pf-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pf-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 0.5rem;
}

.pf-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

.pf-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F5A623;
  flex-shrink: 0;
}

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

.pf-banks {
  position: relative;
  z-index: 10;
  padding: 1.5rem 0;
  overflow: hidden;
}

.pf-banks-label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}

.pf-carousel-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: max-content;
  animation: pf-scroll 30s linear infinite;
}

.pf-carousel-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .pf-cta-wrap {
    flex-direction: row;
    justify-content: center;
  }
}
