/* ===========================
   Playbook Thank-You Page
   =========================== */

/* --- Hero Section --- */
.pty-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #100329 0%, #0F0039 50%, #1C0944 100%);
  position: relative;
  overflow: hidden;
}

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

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

.pty-hero__title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
  color: #ffffff;
}

.pty-hero__download {
  margin-bottom: 48px;
}

.pty-hero__cta-text {
  margin-top: 0;
}

.pty-hero__cta-heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #ffffff;
}

.pty-hero__cta-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

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

.pty-hero__image img {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
}

/* --- CTA / Meetings Section --- */
.pty-cta {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #1C0944 0%, #0F0039 50%, #100329 100%);
}

.pty-cta__inner {
  display: flex;
  justify-content: center;
}

.pty-cta__booking {
  width: 100%;
  max-width: 800px;
  min-height: 650px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  overflow: hidden;
}

.pty-cta__booking .meetings-iframe-container {
  width: 100%;
  min-height: 600px;
}

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

  .pty-hero__inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

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

  .pty-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pty-hero__image img {
    max-width: 480px;
  }

  .pty-cta {
    padding: 60px 0 80px;
  }
}

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

  .pty-hero__title {
    font-size: 1.85rem;
    margin-bottom: 24px;
  }

  .pty-hero__download {
    margin-bottom: 36px;
  }

  .pty-hero__cta-heading {
    font-size: 1.25rem;
  }

  .pty-hero__cta-subtitle {
    font-size: 1rem;
  }

  .pty-hero__image img {
    max-width: 400px;
  }

  .pty-cta {
    padding: 48px 0 64px;
  }

  .pty-cta__booking {
    padding: 16px;
    min-height: 550px;
  }
}

/* ===========================
   Responsive: 480px
   =========================== */
@media (max-width: 480px) {
  .pty-hero {
    padding: 100px 0 36px;
  }

  .pty-hero__inner {
    gap: 32px;
  }

  .pty-hero__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .pty-hero__download {
    margin-bottom: 28px;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .pty-hero__cta-heading {
    font-size: 1.1rem;
  }

  .pty-hero__cta-subtitle {
    font-size: 0.95rem;
  }

  .pty-hero__image img {
    max-width: 100%;
  }

  .pty-cta {
    padding: 36px 0 48px;
  }

  .pty-cta__booking {
    padding: 12px;
    border-radius: 14px;
    min-height: 480px;
  }
}
