
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
 
.ap-hero {
  background: #172327;
  padding: 100px 60px 92px;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}
 
.ap-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ap-orb-1 {
  width: 650px; height: 650px;
  top: -200px; left: -180px;
  background: radial-gradient(circle, rgba(242,178,80,0.14) 0%, transparent 70%);
  animation: ap-orb1 9s ease-in-out infinite alternate;
}
.ap-orb-2 {
  width: 750px; height: 750px;
  bottom: -250px; right: -200px;
  background: radial-gradient(circle, rgba(242,178,80,0.10) 0%, transparent 70%);
  animation: ap-orb2 11s ease-in-out infinite alternate;
}
.ap-orb-3 {
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(242,178,80,0.05) 0%, transparent 70%);
  animation: ap-orb3 7s ease-in-out infinite alternate;
}
 
@keyframes ap-orb1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(90px, 70px) scale(1.18); }
}
@keyframes ap-orb2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-70px, -90px) scale(1.12); }
}
@keyframes ap-orb3 {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -50%) scale(1.3); }
}
 
.ap-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
 
.ap-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: ap-fadeup 0.7s ease forwards;
}
.ap-fade-up:nth-child(1) { animation-delay: 0.10s; }
.ap-fade-up:nth-child(2) { animation-delay: 0.26s; }
.ap-fade-up:nth-child(3) { animation-delay: 0.42s; }
.ap-fade-up:nth-child(4) { animation-delay: 0.56s; }
.ap-fade-up:nth-child(5) { animation-delay: 0.70s; }
 
@keyframes ap-fadeup {
  to { opacity: 1; transform: translateY(0); }
}
 
.ap-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #F2B250;
  margin-bottom: 22px;
}
 
.ap-hero h1 {
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 26px;
}
.ap-hero h1 em {
  font-style: normal;
  color: #F2B250;
  position: relative;
  display: inline-block;
}
.ap-hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F2B250, transparent, #F2B250);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: ap-shimmer 3s linear infinite;
}
@keyframes ap-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
 
.ap-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 44px;
  font-weight: 400;
  line-height: 1.7;
}
 
.ap-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
 
.ap-btn-gold {
  display: inline-block;
  background: #F2B250; !important;
  color: #172327; !important;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.ap-btn-gold:hover { background: #d9963a !important; ; transform: translateY(-2px); }
 
.ap-btn-outline {
  display: inline-block;
  background: transparent; !important;
  color: #ffffff; !important;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, transform 0.15s;
}
.ap-btn-outline:hover { border-color: rgba(255,255,255,0.75) !important; transform: translateY(-2px); }
 
.ap-proof-bar {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  backdrop-filter: blur(8px);
}
.ap-proof-item { text-align: center; }
.ap-proof-num {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.ap-proof-num span { color: #F2B250; }
.ap-proof-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
  font-weight: 500;
}
.ap-proof-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.1);
}
.ap-stars {
  color: #F2B250;
  font-size: 18px;
  letter-spacing: 3px;
  line-height: 1;
}
 
@media (max-width: 768px) {
  .ap-hero { padding: 64px 24px 56px; }
  .ap-proof-bar { padding: 20px; }
  .ap-proof-divider { display: none; }
}