.webinar-section {
  position: relative;
}

.webinar-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.webinar-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 0 20px;
}

.webinar-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 8px 24px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.webinar-hero h1 {
  font-family: "Roboto", sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #f1f8fd;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.webinar-hero h1 .gradient-text {
  background: linear-gradient(90deg, #d5e8f9 0%, #fec3c3 50%, #77b4ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.webinar-hero p {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
}

/* Gratis Section */
.gratis-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.section-title {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #7eb6fc 0%, #243d5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}

.gratis-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.gratis-image {
  flex: 0 0 45%;
}

.gratis-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.gratis-text {
  flex: 1;
}

.gratis-text h3 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1b2d44;
  margin-bottom: 24px;
  line-height: 1.4;
}

.gratis-text p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/* Sertifikat Section */
.sertifikat-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.sertifikat-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sertifikat-text {
  flex: 1;
}

.sertifikat-text h3 {
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1b2d44;
  margin-bottom: 24px;
  line-height: 1.4;
}

.sertifikat-text p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

.sertifikat-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

.sertifikat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.sertifikat-image {
  flex: 0 0 45%;
}

.sertifikat-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Partner Logos Section */
.partner-logos-section {
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.partner-logos-section h2 {
  color: #101828;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}

.logos-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.logos-track {
  display: flex;
  animation: scroll 5s linear infinite;
  gap: 80px;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.logos-track:nth-child(3) .logo-item img,
.logos-track:nth-child(4) .logo-item img {
  height: 100px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-55.33%);
  }
}

/* Langkah Section */
.langkah-section {
  background: linear-gradient(180deg, #e8f2fc 0%, #f5f9fc 100%);
  padding: 80px 0;
}

.langkah-section h2 {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #243d5c 0%, #7eb6fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.langkah-section h2 .highlight {
  color: #5b9fdb;
}

.langkah-section .subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}

.langkah-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.langkah-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.langkah-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.langkah-number {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.langkah-number img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.langkah-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.langkah-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.langkah-card h3 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1b2d44;
  margin-bottom: 12px;
  margin-top: 0;
  line-height: 1.4;
}

.langkah-card p {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1b2d44;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.langkah-divider {
  width: 40px;
  height: 3px;
  background: #3d669b;
  margin-top: 16px;
}

/* CTA Section */

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.cta-content h2 {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #edf2f9;
}

.cta-content .subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #2a3f53;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #405d88;
  text-decoration: none;
}

.cta-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.cta-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.cta-feature svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

/* Tablet (991px) */
@media (max-width: 991px) {
  /* Hero Section */
  .webinar-hero {
    height: 500px;
  }

  .webinar-hero h1 {
    font-size: 36px;
  }

  .webinar-hero p {
    font-size: 16px;
  }

  /* Gratis Section */
  .gratis-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .gratis-content {
    flex-direction: column;
    gap: 40px;
  }

  .gratis-image {
    flex: 0 0 100%;
  }

  .gratis-text h3 {
    font-size: 20px;
  }

  .gratis-text p {
    font-size: 14px;
  }

  .feature-list li {
    font-size: 14px;
  }

  /* Sertifikat Section */
  .sertifikat-section {
    padding: 60px 0;
  }

  .sertifikat-content {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .sertifikat-image {
    flex: 0 0 100%;
  }

  .sertifikat-text h3 {
    font-size: 24px;
  }

  .sertifikat-text p {
    font-size: 14px;
  }

  .sertifikat-list li {
    font-size: 14px;
  }

  /* Partner Logos */
  .partner-logos-section {
    padding: 60px 0;
  }

  .partner-logos-section h2 {
    font-size: 32px;
  }

  .logos-slider {
    gap: 30px;
  }

  .logos-track {
    gap: 60px;
  }

  .logo-item img {
    height: 50px;
  }

  .logos-track:nth-child(3) .logo-item img,
  .logos-track:nth-child(4) .logo-item img {
    height: 70px;
  }

  /* Langkah Section */
  .langkah-section {
    padding: 60px 0;
  }

  .langkah-section h2 {
    font-size: 28px;
  }

  .langkah-section .subtitle {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .langkah-cards {
    gap: 40px;
  }

  /* CTA Section */
  .cta-section {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content .subtitle {
    font-size: 14px;
  }
}

/* Tablet Small (767px) */
@media (max-width: 767px) {
  /* Hero Section */
  .webinar-hero {
    height: 450px;
  }

  .webinar-hero h1 {
    font-size: 28px;
  }

  .webinar-hero p {
    font-size: 14px;
  }

  .webinar-badge {
    font-size: 12px;
    padding: 6px 20px;
  }

  /* Gratis Section */
  .gratis-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .gratis-text h3 {
    font-size: 18px;
  }

  /* Sertifikat Section */
  .sertifikat-section {
    padding: 50px 0;
  }

  .sertifikat-text h3 {
    font-size: 20px;
  }

  /* Partner Logos */
  .partner-logos-section {
    padding: 50px 0;
  }

  .partner-logos-section h2 {
    font-size: 28px;
  }

  .logos-slider {
    gap: 25px;
  }

  .logos-track {
    gap: 50px;
  }

  .logo-item img {
    height: 45px;
  }

  .logos-track:nth-child(3) .logo-item img,
  .logos-track:nth-child(4) .logo-item img {
    height: 90px;
  }

  /* Langkah Section */
  .langkah-section {
    padding: 50px 0;
  }

  .langkah-section h2 {
    font-size: 24px;
  }

  .langkah-cards {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .langkah-card {
    padding: 40px 25px;
  }

  .langkah-card h3 {
    font-size: 18px;
  }

  /* CTA Section */
  .cta-section {
    padding: 50px 0;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-features {
    flex-direction: column;
    gap: 20px;
  }
}

/* Mobile (575px) */
@media (max-width: 575px) {
  /* Hero Section */
  .webinar-hero {
    height: 400px;
  }

  .webinar-hero h1 {
    font-size: 24px;
  }

  .webinar-hero p {
    font-size: 13px;
  }

  /* Gratis Section */
  .gratis-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 20px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .gratis-text h3 {
    font-size: 16px;
  }

  .gratis-text p,
  .feature-list li {
    font-size: 13px;
  }

  /* Sertifikat Section */
  .sertifikat-section {
    padding: 40px 0;
  }

  .sertifikat-text h3 {
    font-size: 18px;
  }

  .sertifikat-text p,
  .sertifikat-list li {
    font-size: 13px;
  }

  /* Partner Logos */
  .partner-logos-section {
    padding: 40px 0;
  }

  .partner-logos-section h2 {
    font-size: 20px;
  }

  .logos-slider {
    gap: 20px;
  }

  .logos-track {
    gap: 40px;
    animation: scroll 15s linear infinite;
  }

  .logo-item img {
    height: 40px;
  }

  .logos-track:nth-child(3) .logo-item img,
  .logos-track:nth-child(4) .logo-item img {
    height: 55px;
  }

  /* Langkah Section */
  .langkah-section {
    padding: 40px 0;
  }

  .langkah-section h2 {
    font-size: 20px;
  }

  .langkah-section .subtitle {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .langkah-card h3 {
    font-size: 16px;
  }

  .langkah-card p {
    font-size: 13px;
  }

  /* CTA Section */
  .cta-section {
    padding: 40px 0;
  }

  .cta-content h2 {
    font-size: 20px;
  }

  .cta-content .subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .cta-button {
    font-size: 14px;
    padding: 12px 24px;
  }

  .cta-features {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }

  .cta-feature {
    font-size: 13px;
  }
}
