* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.partner_widget_page {
  padding: 24px 20px 40px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(
    160deg,
    #f7f0fd 0%,
    #edd9fa 30%,
    #f3e8ff 50%,
    #f7f0fd 70%,
    #fff5f0 100%
  );
  /* background-color: #e5d7f6; */
  color: #2d2d2d;
}

.partner_widget_page section {
  max-width: 90%;
  margin: 2rem auto;
}

/* HERO */
.partner_widget_hero {
  min-height: 80dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.hero-h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.highlight {
  background: linear-gradient(135deg, #9134d8, #7a2bb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
  color: #666;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #9134d8;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  color: white;
  text-decoration: none;
}

.learn-more-btn:hover {
  background: #7a2bb8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(145, 52, 216, 0.35);
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-text {
  font-size: 12px;
  color: #8b7aa0;
  font-weight: 500;
}

.hero-trust-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-pill {
  background: white;
  border: 1px solid rgba(145, 52, 216, 0.1);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #4a3560;
}

.hero-gif {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* filter: drop-shadow(0 40px 80px rgba(145, 52, 216, 0.25)); */
  border-radius: 15px;
}

/* SECTION */
.partner_widget_section {
  background: white;
  border-radius: 15px;
  padding: 28px;
  margin-bottom: 36px;
}

.partner_widget_center {
  text-align: center;
}

.partner_widget_section h2 {
  font-size: 22px;
  color: #3d2066;
  margin-bottom: 14px;
}

.partner_widget_section p{
    margin-bottom: 0;
    line-height: 25px;
}

/* CREDIBILITY */
.partner_widget_credibility {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 10px 0 40px;
  /* max-width: 90%; */
}

.partner_widget_cred-item {
  background: white;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.partner_widget_cred-item strong {
  font-size: 20px;
  color: #9134d8;
  display: block;
}

.partner_widget_cred-item span {
  font-size: 13px;
  color: #555;
}

/* VIDEO */
.partner_widget_video {
  max-width: 680px;
  margin: 1rem auto;
}

.video-container {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
}

.partner_widget_video-desc {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}


/* ===============================
   MOBILE / TABLET RESPONSIVE
================================ */

/* ≤ 768px */
@media (max-width: 768px) {
  .partner_widget_page {
    padding: 16px;
  }

  .partner_widget_hero .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 0;
    gap: 2rem;
  }

  .partner_widget_hero .hero-sub {
    margin: 0 auto 36px;
  }

  .partner_widget_hero .hero-cta-row {
    justify-content: center;
  }

  .partner_widget_hero .hero-trust {
    justify-content: center;
  }

  .partner_widget_hero .hero-trust-pills {
    justify-content: center;
  }

  .partner_widget_hero .hero-visual {
    margin-top: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: 2.2rem;
  }
}

/* ≤ 480px */
@media (max-width: 480px) {
  .partner_widget_page {
    padding: 10px;
  }

  .hero-h1 {
    font-size: 1.9rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .learn-more-btn {
    padding: 12px 22px;
    font-size: 13px;
  }
}
