/* ===========================
   Training LP - Hero
   =========================== */
.ftlp-hero, .htlp-hero {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, #100329 0%, #1C0944 50%, #0F0039 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ftlp-hero::before, .htlp-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.ftlp-hero__inner, .htlp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.ftlp-hero__title, .htlp-hero__title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.ftlp-hero__subtitle, .htlp-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ===========================
   Key Benefits
   =========================== */
.ftlp-benefits, .htlp-benefits {
  padding: 56px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
  border-top: 1px solid rgba(130, 94, 231, 0.1);
}

.ftlp-benefits__list, .htlp-benefits__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.ftlp-benefits__item, .htlp-benefits__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.ftlp-benefits__check, .htlp-benefits__check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ===========================
   Logo Bar
   =========================== */
.ftlp-logos, .htlp-logos {
  padding: 48px 0;
  background: linear-gradient(180deg, #1C0944 0%, #0F0039 100%);
  border-top: 1px solid rgba(130, 94, 231, 0.1);
  border-bottom: 1px solid rgba(130, 94, 231, 0.1);
}

.ftlp-logos__label, .htlp-logos__label {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 24px;
}

.ftlp-logos__grid, .htlp-logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.ftlp-logos__item img, .htlp-logos__item img {
  height: 32px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.ftlp-logos__item img:hover, .htlp-logos__item img:hover {
  opacity: 0.8;
}

/* ===========================
   Course Content / Videos
   =========================== */
.ftlp-course, .htlp-course {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.ftlp-course__title, .htlp-course__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 24px;
}

.ftlp-course__intro, .htlp-course__intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.ftlp-course__list, .htlp-course__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.ftlp-course__item, .htlp-course__item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 94, 231, 0.15);
  border-radius: 12px;
  padding: 20px 28px;
  transition: all 0.3s ease;
}

.ftlp-course__item:hover, .htlp-course__item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(130, 94, 231, 0.3);
  transform: translateX(4px);
}

.ftlp-course__check, .htlp-course__check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #825EE7;
}

.ftlp-course__item-title, .htlp-course__item-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

/* ===========================
   Videos Grid (alternate layout)
   =========================== */
.ftlp-videos, .htlp-videos {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.ftlp-videos__title, .htlp-videos__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 24px;
}

.ftlp-videos__intro, .htlp-videos__intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.ftlp-videos__grid, .htlp-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.ftlp-videos__card, .htlp-videos__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 94, 231, 0.15);
  border-radius: 12px;
  padding: 24px 28px;
  transition: all 0.3s ease;
}

.ftlp-videos__card:hover, .htlp-videos__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(130, 94, 231, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(130, 94, 231, 0.15);
}

.ftlp-videos__card-number, .htlp-videos__card-number {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #825EE7;
  margin-bottom: 8px;
}

.ftlp-videos__card-title, .htlp-videos__card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .ftlp-videos, .htlp-videos {
    padding: 64px 0;
  }

  .ftlp-videos__title, .htlp-videos__title {
    font-size: 1.6rem;
  }

  .ftlp-videos__grid, .htlp-videos__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ===========================
   Instructors
   =========================== */
.ftlp-instructors, .htlp-instructors {
  padding: 100px 0;
  background: linear-gradient(180deg, #1C0944 0%, #0F0039 100%);
}

.ftlp-instructors__title, .htlp-instructors__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 56px;
}

.ftlp-instructors__grid, .htlp-instructors__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.ftlp-instructor-card, .htlp-instructor-card {
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 20px;
  padding: 40px 28px 36px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ftlp-instructor-card:hover, .htlp-instructor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(130, 94, 231, 0.3);
}

.ftlp-instructor-card__photo-wrap, .htlp-instructor-card__photo-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.25);
}

.ftlp-instructor-card__photo, .htlp-instructor-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ftlp-instructor-card__name, .htlp-instructor-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.ftlp-instructor-card__bio, .htlp-instructor-card__bio {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ===========================
   Testimonials
   =========================== */
.ftlp-testimonials, .htlp-testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.ftlp-testi-grid, .htlp-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.ftlp-testi-card, .htlp-testi-card {
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.ftlp-testi-card__heading, .htlp-testi-card__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.ftlp-testi-card__stars, .htlp-testi-card__stars {
  font-size: 1.3rem;
  color: #F5C518;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.ftlp-testi-card__text, .htlp-testi-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.ftlp-testi-card__footer, .htlp-testi-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

.ftlp-testi-card__avatar, .htlp-testi-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.ftlp-testi-card__name, .htlp-testi-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.ftlp-testi-card__role, .htlp-testi-card__role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ===========================
   CTA
   =========================== */
.ftlp-cta, .htlp-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #1C0944 0%, #0F0039 100%);
}

.ftlp-cta__inner, .htlp-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ftlp-cta__content, .htlp-cta__content {
  padding-top: 40px;
}

.ftlp-cta__content .section-subtitle,
.htlp-cta__content .section-subtitle {
  margin-bottom: 32px;
}

.ftlp-cta__booking, .htlp-cta__booking {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(130, 94, 231, 0.15);
}

.ftlp-cta__booking .meetings-iframe-container,
.htlp-cta__booking .meetings-iframe-container {
  min-height: 500px;
  width: 100%;
}

.ftlp-cta__booking iframe,
.htlp-cta__booking iframe {
  border-radius: 16px;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .ftlp-hero__title, .htlp-hero__title {
    font-size: 2.75rem;
  }

  .ftlp-instructors__grid, .htlp-instructors__grid,
  .ftlp-testi-grid, .htlp-testi-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .ftlp-cta__inner, .htlp-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ftlp-cta__content, .htlp-cta__content {
    padding-top: 0;
    text-align: center;
  }

  .ftlp-cta__content .section-subtitle,
  .htlp-cta__content .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .ftlp-hero, .htlp-hero {
    padding: 140px 0 70px;
  }

  .ftlp-hero__title, .htlp-hero__title {
    font-size: 2.25rem;
  }

  .ftlp-benefits, .htlp-benefits {
    padding: 40px 0;
  }

  .ftlp-logos, .htlp-logos {
    padding: 36px 0;
  }

  .ftlp-logos__grid, .htlp-logos__grid {
    gap: 32px;
  }

  .ftlp-logos__item img, .htlp-logos__item img {
    height: 24px;
  }

  .ftlp-course, .htlp-course,
  .ftlp-instructors, .htlp-instructors {
    padding: 64px 0;
  }

  .ftlp-course__title, .htlp-course__title,
  .ftlp-instructors__title, .htlp-instructors__title {
    font-size: 1.6rem;
  }

  .ftlp-testimonials, .htlp-testimonials {
    padding: 48px 0;
  }

  .ftlp-cta, .htlp-cta {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .ftlp-hero__title, .htlp-hero__title {
    font-size: 1.85rem;
  }

  .ftlp-instructor-card__photo-wrap, .htlp-instructor-card__photo-wrap {
    width: 120px;
    height: 120px;
  }
}
