/* 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: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: #0b5ed7;
  margin-bottom: 10px;
}

.pf-hero h2 {
  font-size: 22px;
  color: #f59e0b;
  margin-bottom: 25px;
  font-weight: 600;
}

.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);
}
.pf-hero-note {
  margin-top: 12px;
  margin-left: 12px;
  font-size: 13px;
  color: #6b7da6;
  letter-spacing: 0.5px;
}


/* 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;
}


/* MOBILE */
@media (max-width: 900px) {
  .pf-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pf-video-wrap {
    margin: auto;
  }

  .pf-buttons {
    justify-content: center;
  }
}

