/* ============================================
   Process Playbook Landing Page Styles
   ============================================ */

/* ---------- Hero ---------- */
.pplp-hero {
  background: linear-gradient(135deg, #100329 0%, #0F0039 40%, #1C0944 70%, #1a0a3e 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}

.pplp-hero__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.pplp-hero__content {
  flex: 1;
  min-width: 0;
}

.pplp-hero__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.pplp-hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 520px;
}

.pplp-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.pplp-hero__pill {
  display: inline-block;
  background: rgba(130, 94, 231, 0.2);
  border: 1px solid rgba(130, 94, 231, 0.5);
  color: #c4b5fd;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pplp-hero__cta {
  display: inline-block;
}

.pplp-hero__image {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pplp-hero__image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 20px 60px rgba(130, 94, 231, 0.25));
}

/* ---------- Client Logos ---------- */
.pplp-logos {
  background: linear-gradient(180deg, #1a0a3e 0%, #100329 100%);
  padding: 60px 0;
}

.pplp-logos__heading {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 36px;
}

.pplp-logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.pplp-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pplp-logos__item img {
  max-height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.pplp-logos__item img:hover {
  opacity: 0.7;
}

/* ---------- Plays Included ---------- */
.pplp-plays {
  background: linear-gradient(180deg, #100329 0%, #0F0039 100%);
  padding: 100px 0;
}

.pplp-plays__heading {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 56px;
}

.pplp-plays__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pplp-plays__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 94, 231, 0.15);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pplp-plays__card:hover {
  transform: translateY(-4px);
  border-color: rgba(130, 94, 231, 0.4);
  box-shadow: 0 12px 40px rgba(130, 94, 231, 0.12);
}

.pplp-plays__card-number {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #825EE7;
  background: rgba(130, 94, 231, 0.12);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.pplp-plays__card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

/* Last two cards center in the bottom row */
.pplp-plays__card:nth-child(4) {
  grid-column: 1 / 2;
}

/* ---------- Author ---------- */
.pplp-author {
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
  padding: 80px 0;
}

.pplp-author__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.pplp-author__image {
  flex-shrink: 0;
}

.pplp-author__image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(130, 94, 231, 0.35);
}

.pplp-author__content {
  flex: 1;
  min-width: 0;
}

.pplp-author__name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pplp-author__bio {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.pplp-testimonials {
  background: linear-gradient(180deg, #1C0944 0%, #100329 100%);
  padding: 100px 0;
}

.pplp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pplp-testimonials__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 94, 231, 0.15);
  border-radius: 16px;
  padding: 36px 32px;
}

.pplp-testimonials__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.pplp-testimonials__star {
  color: #f5a623;
  font-size: 1.2rem;
}

.pplp-testimonials__headline {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.pplp-testimonials__quote {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pplp-testimonials__footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pplp-testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.pplp-testimonials__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.pplp-testimonials__role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* ---------- CTA / Form ---------- */
.pplp-form {
  background: linear-gradient(180deg, #100329 0%, #0F0039 50%, #1a0a3e 100%);
  padding: 100px 0;
}

.pplp-form__inner {
  text-align: center;
}

.pplp-form__heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 48px;
}

.pplp-form__embed {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 94, 231, 0.15);
  border-radius: 16px;
  padding: 32px;
  min-height: 500px;
}

/* ---------- Responsive: 992px ---------- */
@media (max-width: 992px) {
  .pplp-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .pplp-hero__subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .pplp-hero__pills {
    justify-content: center;
  }

  .pplp-hero__image img {
    max-width: 380px;
  }

  .pplp-plays__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pplp-plays__card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .pplp-testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

/* ---------- Responsive: 768px ---------- */
@media (max-width: 768px) {
  .pplp-hero {
    padding: 120px 0 60px;
  }

  .pplp-hero__title {
    font-size: 2.25rem;
  }

  .pplp-hero__subtitle {
    font-size: 1.05rem;
  }

  .pplp-plays__heading {
    font-size: 1.75rem;
  }

  .pplp-plays__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pplp-plays__card:nth-child(5) {
    max-width: none;
  }

  .pplp-author__inner {
    flex-direction: column;
    text-align: center;
  }

  .pplp-author__image img {
    width: 120px;
    height: 120px;
  }

  .pplp-logos__grid {
    gap: 32px;
  }

  .pplp-logos__item img {
    max-height: 28px;
  }

  .pplp-form__heading {
    font-size: 1.75rem;
  }

  .pplp-form__embed {
    padding: 20px;
  }
}

/* ---------- Responsive: 480px ---------- */
@media (max-width: 480px) {
  .pplp-hero {
    padding: 110px 0 48px;
  }

  .pplp-hero__title {
    font-size: 1.85rem;
  }

  .pplp-hero__subtitle {
    font-size: 1rem;
  }

  .pplp-hero__pills {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .pplp-hero__image img {
    max-width: 280px;
  }

  .pplp-plays {
    padding: 64px 0;
  }

  .pplp-plays__heading {
    font-size: 1.5rem;
  }

  .pplp-plays__card {
    padding: 24px 20px;
  }

  .pplp-author {
    padding: 60px 0;
  }

  .pplp-author__name {
    font-size: 1.4rem;
  }

  .pplp-author__bio {
    font-size: 0.95rem;
  }

  .pplp-testimonials {
    padding: 64px 0;
  }

  .pplp-testimonials__card {
    padding: 28px 22px;
  }

  .pplp-testimonials__headline {
    font-size: 1.1rem;
  }

  .pplp-testimonials__quote {
    font-size: 0.88rem;
  }

  .pplp-form {
    padding: 64px 0;
  }

  .pplp-form__heading {
    font-size: 1.4rem;
  }

  .pplp-logos__grid {
    gap: 24px;
  }

  .pplp-logos__item img {
    max-height: 22px;
  }
}
