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

.htd-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%;
}

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

.htd-hero__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.htd-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ===========================
   Modules Grid
   =========================== */
.htd-modules {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.htd-modules__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.htd-module {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 94, 231, 0.15);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.htd-module: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);
}

.htd-module__number {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #825EE7 0%, #53389E 100%);
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.htd-module__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.htd-module__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.htd-module__link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #825EE7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.htd-module__link:hover {
  color: #a78bfa;
}

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

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

.htd-cta__content {
  padding-top: 40px;
}

.htd-cta__content .section-subtitle {
  margin-bottom: 32px;
}

.htd-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);
}

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

.htd-cta__booking iframe {
  border-radius: 16px;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .htd-modules__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .htd-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .htd-cta__content {
    padding-top: 0;
    text-align: center;
  }

  .htd-cta__content .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .htd-hero {
    padding: 140px 0 60px;
  }

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

  .htd-modules {
    padding: 60px 0 80px;
  }

  .htd-cta {
    padding: 64px 0;
  }
}

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