/* HERO BASE */
.pf-hero {
  padding: 90px 20px 80px;
  background: linear-gradient(135deg, #eef4ff 0%, #fdf6ec 100%);
  border-bottom: 1px solid #dde6ff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pf-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.pf-hero h1 {
  font-size: 38px;
  line-height: 1.3;
  font-weight: 600;
  color: #0b5ed7;
  margin-bottom: 10px;
}

.pf-hero h2 {
  font-size: 22px;
  line-height: 1.2;
  color: #f59e0b;
  margin-bottom: 25px;
  font-weight: 400;
}

.pf-hero ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.pf-hero ul li {
  font-size: 18px;
  color: #425b8a;
  margin-bottom: 12px;
}

.pf-hero ul li::before {
  content: "✔ ";
  color: #0b5ed7;
  font-weight: bold;
}

/* RR */
.pf-rr {
  background: #ffffff;
  border-left: 5px solid #f59e0b;
  padding: 14px 18px;
  margin-bottom: 30px;
  font-size: 17px;
  color: #0b1f44;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* BUTTONS */
.pf-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pf-btn-primary {
  background: linear-gradient(135deg, #0b5ed7, #084298);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(11,94,215,0.35);
  transition: 0.3s;
}

.pf-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11,94,215,0.45);
}

.pf-btn-wa {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff !important;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(245,158,11,0.45);
  transition: 0.3s;
}

.pf-btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(245,158,11,0.6);
}



/* VIDEO – HARD FIX */
.pf-video-wrap {
  max-width: 560px;
  width: 100%;
  margin-left: auto;
}

.pf-video {
  position: relative;
  width: 100%;
  height: 315px; /* REAL HEIGHT FIX */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
  border: 5px solid #ffffff;
  background: #000;
}

.pf-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pf-hero .pf-hero-note {
  margin-top: 12px;
  margin-left: 12px;
  font-size: 13px;
  color: #6b7da6;
  letter-spacing: 0.5px;
}

/* Base animation */
@keyframes pfFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply to hero */
.pf-hero * {
  opacity: 0;
  animation: pfFadeUp 0.8s cubic-bezier(.22,.61,.36,1) forwards;
}


.pf-anim {
  opacity: 0;
  animation: pfFadeUp 0.8s cubic-bezier(.22,.61,.36,1) forwards;
}



/* Stagger */
.pf-hero h1 { animation-delay: 0.05s; }
.pf-hero h2 { animation-delay: 0.12s; }
.pf-hero ul { animation-delay: 0.18s; }
.pf-hero .pf-rr { animation-delay: 0.25s; }
.pf-hero .pf-buttons { animation-delay: 0.32s; }
.pf-hero .pf-hero-note { animation-delay: 0.38s; }
.pf-hero .pf-video-wrap { animation-delay: 0.45s; }



/* Section Gradients */
.pf-trades-section.light {
  background: linear-gradient(135deg, #f7faff, #e0f0ff);
  padding: 100px 20px;
}

.pf-trades-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pf-trades-inner h2 {
  font-size: 44px;
  color: #0b5ed7;
  font-weight: 800;
  margin-bottom: 18px;
}

.pf-trades-inner p {
  font-size: 18px;
  color: #425b8a;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 50px;
}

.pf-trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  width: 100%;
}

.pf-trade-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(11,94,215,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pf-trade-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11,94,215,0.45);
}

.pf-trade-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.pf-trade-info {
  padding: 20px;
  text-align: left;
}

.pf-trade-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0b1f44;
  margin-bottom: 6px;
}

.pf-trade-info .entry {
  font-size: 14px;
  color: #425b8a;
  margin-bottom: 6px;
}

.pf-trade-info .trade-profit {
  font-size: 18px;
  font-weight: 700;
  color: #0b5ed7;
  margin: 0;
}

.pf-btn-primary {
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(11,94,215,0.35);
  transition: 0.3s;
  display: inline-block;
}

.pf-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11,94,215,0.45);
}






/* Mobile */
@media (max-width: 900px) {
  .pf-institutional-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pf-institutional-content ul li {
    padding-left: 0;
  }
  .pf-institutional-content ul li::before {
    left: 50%;
    transform: translateX(-50%);
  }
}





/* =========================
   MOBILE – MAX 900px
   ========================= */
@media (max-width: 900px) {

  /* Trades */
  .pf-trades-grid {
    grid-template-columns: 1fr !important;
  }

  .pf-trades-inner {
    text-align: center;
  }

  /* Hero */
  .pf-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pf-video-wrap {
    margin: auto;
  }

  /* Buttons */
  .pf-buttons {
    justify-content: center;
  }

}

@media (max-width: 768px) {
  .pf-hero ul {
    text-align: left;
    padding-left: 20px;
  }

  .pf-hero li {
    font-size: 15px;
    line-height: 1.6;
  }
}


