/* =====================================================
   PARTNERS HERO – ENTERPRISE FOUNDATION
===================================================== */

.yp-partner-hero {
  position: relative;
  padding: 140px 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* Soft ambient motion */
.yp-partner-hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(99,102,241,0.12), transparent 60%);
}

.yp-partner-hero-wrap {
  position: relative;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  z-index: 2;
}

/* =====================================================
   CONTENT
===================================================== */

.yp-partner-hero-content {
  max-width: 820px;
}

.yp-partner-hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.9px;
  color: #020617;
  margin-bottom: 28px;
  opacity: 0;
  animation: ypHeroTitle 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.yp-partner-hero-desc {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 20px;
  opacity: 0;
  animation: ypHeroFade 1.1s ease forwards;
}

.yp-partner-hero-desc:nth-of-type(1) {
  animation-delay: 0.2s;
}

.yp-partner-hero-desc:nth-of-type(2) {
  animation-delay: 0.35s;
}

/* =====================================================
   CTA
===================================================== */

.yp-partner-hero-actions {
  margin-top: 48px;
  opacity: 0;
  animation: ypHeroFade 1.1s ease forwards;
  animation-delay: 0.55s;
}

.yp-partner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #2563eb);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(37,99,235,0.45);
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
}

.yp-partner-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(43, 113, 255, 0.6);
  color: #ffffff;
}

/* =====================================================
   ANIMATIONS – PROFESSIONAL & CONTROLLED
===================================================== */

@keyframes ypHeroTitle {
  from {
    opacity: 0;
    transform: translateY(54px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ypHeroFade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ypHeroGlow {
  0%,100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .yp-partner-hero {
    padding: 110px 20px;
  }

  .yp-partner-hero-title {
    font-size: 2.4rem;
  }

  .yp-partner-hero-desc {
    font-size: 1.05rem;
  }
}

/* =====================================================
   PARTNERS HERO – RIGHT IMAGE
===================================================== */

.yp-partner-hero-image-wrap {
  position: relative;
  display: inline-block;
}

/* Main image */
.yp-partner-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 32px 85px rgba(37, 99, 235, 0.25);
  animation: ypPartnerFloat 6.5s ease-in-out infinite;
}

/* Soft glow behind image */
.yp-partner-hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -18%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.22),
    transparent 70%
  );
  filter: blur(70px);
  z-index: -1;
}

/* Floating animation */
@keyframes ypPartnerFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* =====================================================
   RESPONSIVE TUNING
===================================================== */

@media (max-width: 992px) {
  .yp-partner-hero-content {
    text-align: center;
  }

  .yp-partner-hero-image-wrap {
    margin-top: 30px;
  }
}



/* =====================================================
 PARTNER MODELS – BASE
===================================================== */
.ys-partner-models {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* =====================================================
 HEADER
===================================================== */
.ys-partner-head {
  max-width: 820px;
  margin: 0 auto 70px;
  animation: ysFadeUp 0.9s ease forwards;
}

.ys-partner-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2563eb;
  background: #eff6ff;
  border-radius: 30px;
  margin-bottom: 14px;
}

.ys-partner-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.ys-partner-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
}

/* =====================================================
 CARDS
===================================================== */
.ys-partner-card {
  position: relative;
  height: 100%;
  padding: 44px 40px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  animation: ysCardRise 1s ease forwards;
}

.ys-partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(120deg, transparent, rgba(37,99,235,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ys-partner-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.14);
}

.ys-partner-card:hover::before {
  opacity: 1;
}

/* =====================================================
 ICON
===================================================== */
.ys-partner-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 16px;
  margin-bottom: 22px;
  background: #f1f5f9;
  animation: ysPulse 3s infinite ease-in-out;
}

.ys-referral .ys-partner-icon {
  background: #ecfeff;
}

.ys-channel .ys-partner-icon {
  background: #eef2ff;
}

/* =====================================================
 TEXT
===================================================== */
.ys-partner-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.ys-partner-card-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 22px;
}

.ys-partner-points {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ys-partner-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #334155;
}

.ys-partner-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: 700;
}

/* =====================================================
 ANIMATIONS
===================================================== */
@keyframes ysFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysCardRise {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ysPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}


/* =====================================================
 REFERRAL PROGRAM – BASE
===================================================== */
.yp-referral-program {
  padding: 60px 0;
  background:
    radial-gradient(circle at top right, #eef2ff, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* =====================================================
 HEADER
===================================================== */
.yp-referral-head {
  max-width: 860px;
  margin: 0 auto 80px;
  animation: ypFadeLift 0.9s ease forwards;
}

.yp-referral-badge {
  display: inline-block;
  padding: 7px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #2563eb;
  background: #e0e7ff;
  border-radius: 30px;
  margin-bottom: 16px;
}

.yp-referral-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.7px;
  margin-bottom: 18px;
}

.yp-referral-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
}

/* =====================================================
 CARDS
===================================================== */
.yp-referral-card {
  position: relative;
  height: 100%;
  padding: 44px 38px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  animation: ypCardFloat 1.1s ease forwards;
}

.yp-referral-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(37, 99, 235, 0.12),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.yp-referral-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 45px 100px rgba(15, 23, 42, 0.14);
}

.yp-referral-card:hover::after {
  opacity: 1;
}

/* =====================================================
 ICON
===================================================== */
.yp-referral-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: #f1f5f9;
  margin-bottom: 24px;
  animation: ypIconPulse 3.2s infinite ease-in-out;
}

.yp-referral-highlight .yp-referral-icon {
  background: #dcfce7;
}

/* =====================================================
 TEXT
===================================================== */
.yp-referral-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 14px;
}

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

.yp-referral-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #334155;
}

.yp-referral-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #22c55e;
}

.yp-referral-commission {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #065f46;
}

/* =====================================================
 BEST FIT
===================================================== */
.yp-referral-fit {
  margin-top: 90px;
  text-align: center;
  animation: ypFadeLift 1.2s ease forwards;
}

.yp-referral-fit-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 26px;
  color: #020617;
}

.yp-referral-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.yp-referral-tags span {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  background: #f1f5f9;
  color: #334155;
  transition: transform 0.35s ease, background 0.35s ease;
}

.yp-referral-tags span:hover {
  transform: translateY(-6px);
  background: #e0e7ff;
}

/* =====================================================
 ANIMATIONS
===================================================== */
@keyframes ypFadeLift {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ypCardFloat {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ypIconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}


/* =====================================================
 CHANNEL PROGRAM – BASE
===================================================== */
.yc-channel-program {
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, #eef2ff, transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  overflow: hidden;
}

/* =====================================================
 HEADER
===================================================== */
.yc-channel-head {
  max-width: 900px;
  margin: 0 auto 90px;
  animation: ycRevealUp 0.9s ease forwards;
}

.yc-channel-badge {
  display: inline-block;
  padding: 7px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4338ca;
  background: #e0e7ff;
  border-radius: 999px;
  margin-bottom: 18px;
}

.yc-channel-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #020617;
  margin-bottom: 20px;
}

.yc-channel-intro {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #475569;
}

/* =====================================================
 SECTION TITLES
===================================================== */
.yc-section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 26px;
}

/* =====================================================
 KEY TERMS
===================================================== */
.yc-channel-terms {
  max-width: 900px;
  margin: 0 auto 70px;
  padding: 44px 46px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 28px 60px rgba(15,23,42,0.08);
  animation: ycSoftFloat 1.1s ease forwards;
}

.yc-terms-list {
  padding-left: 20px;
  margin: 0;
}

.yc-terms-list li {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #334155;
}

/* =====================================================
 CARDS
===================================================== */
.yc-channel-card {
  height: 100%;
  padding: 46px 44px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(15,23,42,0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  animation: ycCardRise 1.2s ease forwards;
}

.yc-support-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.yc-channel-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 48px 110px rgba(15,23,42,0.14);
}

.yc-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 22px;
  color: #020617;
}

/* =====================================================
 LIST
===================================================== */
.yc-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.yc-check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #334155;
}

.yc-check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #22c55e;
}

/* =====================================================
 EARNINGS
===================================================== */
.yc-channel-earnings {
  margin-top: 90px;
  text-align: center;
  animation: ycRevealUp 1.2s ease forwards;
}

.yc-earnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 18px;
}

.yc-earning-box {
  padding: 22px 26px;
  border-radius: 18px;
  background: #f1f5f9;
  font-size: 0.95rem;
  font-weight: 600;
  color: #020617;
  transition: transform 0.35s ease, background 0.35s ease;
}

.yc-earning-box:hover {
  transform: translateY(-6px);
  background: #e0e7ff;
}

/* =====================================================
 WHO SHOULD APPLY
===================================================== */
.yc-channel-fit {
  margin-top: 90px;
  text-align: center;
}

.yc-fit-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.yc-fit-tags span {
  padding: 10px 22px;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  transition: transform 0.35s ease, background 0.35s ease;
}

.yc-fit-tags span:hover {
  transform: translateY(-6px);
  background: #e0e7ff;
}

/* =====================================================
 ANIMATIONS
===================================================== */
@keyframes ycRevealUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ycSoftFloat {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ycCardRise {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}


/* =====================================================
 PRODUCTS – BASE
===================================================== */
.yp-products-partnership {
  padding: 60px 0;
  background:
    radial-gradient(circle at bottom right, #eef2ff, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* =====================================================
 HEADER
===================================================== */
.yp-products-head {
  max-width: 900px;
  margin: 0 auto 80px;
  animation: ypProductsFade 0.9s ease forwards;
}

.yp-products-badge {
  display: inline-block;
  padding: 7px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1d4ed8;
  background: #e0e7ff;
  border-radius: 999px;
  margin-bottom: 18px;
}

.yp-products-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.7px;
  margin-bottom: 18px;
}

.yp-products-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
}

/* =====================================================
 PRODUCT CARDS
===================================================== */
.yp-product-card {
  height: 100%;
  padding: 46px 40px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
  text-align: center;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  animation: ypProductRise 1.1s ease forwards;
  position: relative;
}

.yp-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(37, 99, 235, 0.12),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.yp-product-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 50px 110px rgba(15, 23, 42, 0.14);
}

.yp-product-card:hover::after {
  opacity: 1;
}

/* =====================================================
 ICON
===================================================== */
.yp-product-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: #f1f5f9;
  animation: ypIconFloat 3.5s infinite ease-in-out;
}

.yp-product-highlight .yp-product-icon {
  background: #dcfce7;
}

/* =====================================================
 TEXT
===================================================== */
.yp-product-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 8px;
}

.yp-product-desc {
  font-size: 0.95rem;
  color: #475569;
}

/* =====================================================
 ANIMATIONS
===================================================== */
@keyframes ypProductsFade {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ypProductRise {
  from { opacity: 0; transform: translateY(48px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ypIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* =====================================================
 WHY PARTNER – BASE
===================================================== */
.yw-partner-advantages {
  padding: 60px 0;
  background:
    radial-gradient(circle at top right, #eef2ff, transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* =====================================================
 HEADER
===================================================== */
.yw-adv-head {
  max-width: 900px;
  margin: 0 auto 90px;
  animation: ywFadeUp 0.9s ease forwards;
}

.yw-adv-badge {
  display: inline-block;
  padding: 7px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1d4ed8;
  background: #e0e7ff;
  border-radius: 999px;
  margin-bottom: 18px;
}

.yw-adv-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #020617;
  margin-bottom: 18px;
}

.yw-adv-subtitle {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
}

/* =====================================================
 ADVANTAGE CARDS
===================================================== */
.yw-adv-card {
  height: 100%;
  padding: 38px 32px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.08);
  text-align: left;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  animation: ywCardLift 1.1s ease forwards;
  position: relative;
}

.yw-adv-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 48px 110px rgba(15, 23, 42, 0.14);
}

.yw-adv-highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

/* =====================================================
 ICON
===================================================== */
.yw-adv-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 24px;
  background: #f1f5f9;
  margin-bottom: 18px;
  animation: ywIconPulse 3.6s infinite ease-in-out;
}

/* =====================================================
 TEXT
===================================================== */
.yw-adv-card h5 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.yw-adv-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
}

/* =====================================================
 ANIMATIONS
===================================================== */
@keyframes ywFadeUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ywCardLift {
  from { opacity: 0; transform: translateY(48px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ywIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* =====================================================
 ONBOARDING – BASE
===================================================== */
.yo-onboarding-flow {
  padding: 60px 0;
  background:
    radial-gradient(circle at bottom left, #eef2ff, transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* =====================================================
 HEADER
===================================================== */
.yo-onboarding-head {
  max-width: 900px;
  margin: 0 auto 90px;
  animation: yoFadeUp 0.9s ease forwards;
}

.yo-onboarding-badge {
  display: inline-block;
  padding: 7px 22px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1d4ed8;
  background: #e0e7ff;
  border-radius: 999px;
  margin-bottom: 18px;
}

.yo-onboarding-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #020617;
  margin-bottom: 18px;
}

.yo-onboarding-subtitle {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
}

/* =====================================================
 TIMELINE
===================================================== */
.yo-onboarding-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.yo-onboarding-timeline::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    #c7d2fe,
    transparent
  );
}

/* =====================================================
 STEP
===================================================== */
.yo-step {
  display: flex;
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
  animation: yoStepRise 1s ease forwards;
}

.yo-step:last-child {
  margin-bottom: 0;
}

.yo-step-number {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e0e7ff;
  color: #1d4ed8;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(29,78,216,0.25);
  animation: yoPulse 3.5s infinite ease-in-out;
}

.yo-step-content {
  padding: 30px 36px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(15,23,42,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.yo-step-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 42px 100px rgba(15,23,42,0.14);
}

.yo-step-content h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.yo-step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* =====================================================
 ANIMATIONS
===================================================== */
@keyframes yoFadeUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes yoStepRise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes yoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}


/* =====================================================
 PARTNER APPLY – BASE
===================================================== */
.ya-partner-apply {
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, #eef2ff, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* =====================================================
 HEADER
===================================================== */
.ya-apply-head {
  max-width: 900px;
  margin: 0 auto 80px;
  animation: yaFadeUp 0.9s ease forwards;
}

.ya-apply-badge {
  display: inline-block;
  padding: 7px 22px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1d4ed8;
  background: #e0e7ff;
  border-radius: 999px;
  margin-bottom: 18px;
}

.ya-apply-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #020617;
  margin-bottom: 18px;
}

.ya-apply-subtitle {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
}

/* =====================================================
 FORM CARD
===================================================== */
.ya-apply-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 56px;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 40px 90px rgba(15,23,42,0.1);
  animation: yaCardRise 1.1s ease forwards;
}

/* =====================================================
 FIELDS
===================================================== */
.ya-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
}

.ya-field input,
.ya-field select,
.ya-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  background: #ffffff;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.ya-field input:focus,
.ya-field select:focus,
.ya-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}

/* =====================================================
 CTA BUTTON
===================================================== */
.ya-form-action {
  margin-top: 50px;
}

.ya-apply-btn {
  padding: 16px 44px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 999px;
  border: none;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb);
  box-shadow: 0 18px 40px rgba(37,99,235,0.4);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ya-apply-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(37,99,235,0.55);
  color: #ffffff;
}

/* =====================================================
 ANIMATIONS
===================================================== */
@keyframes yaFadeUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes yaCardRise {
  from { opacity: 0; transform: translateY(50px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* =====================================================
 FINAL CTA – LIGHT PREMIUM SYSTEM
===================================================== */
.zl-partner-cta {
  position: relative;
  padding: 60px 20px;
  background:
    linear-gradient(120deg, #4ba5ff 0%,#2b52ff 60%);
  overflow: hidden;
}

/* Diagonal accent stripes */
/* .zl-partner-cta::before,
.zl-partner-cta::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 120px;
  left: -20%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37,99,235,0.08),
    transparent
  );
}

.zl-partner-cta::before {
  top: 20%;
  animation: zlStripeMove 14s linear infinite;
}

.zl-partner-cta::after {
  top: 55%;
  animation: zlStripeMove 18s linear infinite reverse;
} */

/* =====================================================
 FRAME
===================================================== */
.zl-cta-frame {
  max-width: 1080px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* =====================================================
 GLASS BOX
===================================================== */
.zl-cta-box {
  padding: 30px 10px;
  text-align: left;
  animation: zlBoxReveal 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

/* =====================================================
 TEXT
===================================================== */
.zl-cta-heading {
  font-size: 2.9rem;
  font-weight: 900;
  letter-spacing: -0.9px;
  color: #ffffff;
  margin-bottom: 22px;
}

.zl-cta-desc {
  max-width: 1160px;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #ffffff;
}

/* =====================================================
 ACTIONS
===================================================== */
.zl-cta-actions {
  display: flex;
  justify-content: left;
  gap: 24px;
  flex-wrap: wrap;
}

.zl-btn-main,
.zl-btn-outline {
  padding: 16px 42px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(.22,.61,.36,1);
}

/* Primary */
.zl-btn-main {
  background: linear-gradient(135deg, #2563eb);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(37,99,235,0.45);
}

.zl-btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 65px  rgba(37,99,235,0.45);
  color: #ffffff;
}
 


/* Secondary */
.zl-btn-outline {
  color: #2563eb;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #c7d2fe;
}

.zl-btn-outline:hover {
  background: #eff6ff;
  transform: translateY(-4px);
}

/* =====================================================
 ANIMATIONS
===================================================== */
@keyframes zlBoxReveal {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes zlStripeMove {
  from { transform: translateX(-20%); }
  to { transform: translateX(20%); }
}

/* =====================================================
 RESPONSIVE
===================================================== */
@media (max-width: 768px) {
  .zl-cta-box {
    padding: 50px 30px;
  }

  .zl-cta-heading {
    font-size: 2.2rem;
  }

  .zl-cta-desc {
    font-size: 1.02rem;
  }
}


/*  ------------------------------------ Partners Landing Page -----------------------------------------------*/

/* =========================================
 PARTNER HERO – BASE
========================================= */

.ys-ad-partner-hero {
  position: relative;
  padding: 130px 20px 140px;
  background: #ffffff;
  overflow: hidden;
}

.ys-hero-inner {
  max-width: 960px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* =========================================
 BACKGROUND MOTION (SUBTLE & PREMIUM)
========================================= */

.ys-hero-motion-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(30,77,140,.18), transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(14,165,233,.15), transparent 45%);
  animation: ys-bg-drift 14s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes ys-bg-drift {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* =========================================
 PILL / BADGE
========================================= */

.ys-hero-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(30,77,140,.1);
  color: #1e4d8c;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 22px;
  animation: ys-fade-down .7s ease forwards;
}

/* =========================================
 HEADINGS
========================================= */

.ys-hero-heading {
  font-size: 3.1rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  line-height: 1.15;
  color: #020617;
  margin-bottom: 26px;
  animation: ys-fade-up .8s ease forwards;
}

.ys-hero-heading span {
  color: #2664ff;
}

/* =========================================
 COPY
========================================= */

.ys-hero-description {
  font-size: 1.18rem;
  line-height: 1.9;
  color: #334155;
  max-width: 780px;
  margin: 0 auto 18px;
  animation: ys-fade-up .95s ease forwards;
}

.ys-hero-subline {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 760px;
  margin: 0 auto 36px;
  animation: ys-fade-up 1.1s ease forwards;
}

/* =========================================
 TRUST BULLETS
========================================= */

.ys-hero-trust {
  list-style: none;
  padding: 0;
  margin: 0 auto 48px;
  max-width: 640px;
}

.ys-hero-trust li {
  padding: 10px 0;
  font-size: .98rem;
  color: #020617;
  animation: ys-fade-up 1.25s ease forwards;
}

.ys-hero-trust strong {
  color: #1e4d8c;
}

/* =========================================
 CTA BUTTON
========================================= */

.ys-hero-action {
  animation: ys-fade-up 1.45s ease forwards;
}

.ys-btn-apply {
  display: inline-block;
  padding: 18px 38px;
  border-radius: 60px;
  background: linear-gradient(135deg, #1e4d8c, #2563eb);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(30,77,140,.35);
  transition: transform .35s ease, box-shadow .35s ease;
}

.ys-btn-apply:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(30,77,140,.45);
  color: #ffffff;
}

/* =========================================
 ANIMATIONS
========================================= */

@keyframes ys-fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ys-fade-down {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
 MOBILE REFINEMENTS
========================================= */

@media (max-width: 768px) {
  .ys-hero-heading {
    font-size: 2.4rem;
  }
}

/* =========================================
 PARTNER HERO – RIGHT VISUAL
========================================= */

.ys-hero-visual-wrap {
  position: relative;
  display: inline-block;
}

/* Main image */
.ys-hero-visual {
  max-width: 120%;
  max-height: 500px;
  border-radius: 15px;
  box-shadow: 0 35px 90px rgba(30, 78, 140, 0.233);
  animation: ysHeroFloat 6.5s ease-in-out infinite;
}

/* Soft glow behind image */
.ys-hero-visual-wrap::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle,
    rgba(38, 100, 255, 0.25),
    transparent 70%
  );
  filter: blur(80px);
  z-index: -1;
}

/* Floating motion */
@keyframes ysHeroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* =========================================
 RESPONSIVE ALIGNMENT
========================================= */

@media (max-width: 992px) {
  .ys-hero-inner {
    text-align: center;
  }

  .ys-hero-visual-wrap {
    margin-top: 30px;
  }
}



/* =========================================
 PARTNER PROFILE – BASE
========================================= */

.ys-partner-profile {
  padding: 60px 20px;
  background: #ffffff; /* unchanged */
}

.ys-profile-wrap {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* =========================================
 HEADER
========================================= */

.ys-profile-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #020617;
  margin-bottom: 14px;
  animation: ys-rise-in .8s ease forwards;
}

.ys-profile-intro {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 760px;
  margin: 0 auto 60px;
  line-height: 1.8;
  animation: ys-rise-in 1s ease forwards;
}

/* =========================================
 GRID (NON-CARD, CLEAN STYLE)
========================================= */

.ys-profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-bottom: 60px;
}

.ys-profile-item {
  position: relative;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #020617;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  transition: transform .35s ease, box-shadow .35s ease;
  animation: ys-rise-in 1.15s ease forwards;
}

/* Accent line (unique visual identity) */
.ys-profile-item::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 2px;
  background: linear-gradient(90deg, #1e4d8c, #38bdf8);
  opacity: .35;
}

/* Hover motion */
.ys-profile-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(2,6,23,.12);
}

/* =========================================
 FOOTER STATEMENT
========================================= */

.ys-profile-footer {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #334155;
  max-width: 820px;
  margin: auto;
  animation: ys-rise-in 1.3s ease forwards;
}

.ys-profile-footer strong {
  color: #1e4d8c;
}

/* =========================================
 ANIMATIONS
========================================= */

@keyframes ys-rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
 MOBILE REFINEMENTS
========================================= */

@media (max-width: 768px) {
  .ys-profile-title {
    font-size: 2rem;
  }
}


/* =========================================
 SELL SECTION – BASE
========================================= */

.ys_sell_section {
  padding: 60px 20px;
  background: #ffffff;
}

.ys_sell_wrapper {
  max-width: 960px;
  margin: auto;
}

/* =========================================
 HEADER
========================================= */

.ys_sell_header {
  text-align: center;
  margin-bottom: 90px;
}

.ys_sell_title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #020617;
  margin-bottom: 14px;
  animation: ys_sell_zoom_in .9s ease forwards;
}

.ys_sell_intro {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.8;
  animation: ys_sell_zoom_in 1.1s ease forwards;
}

/* =========================================
 TIMELINE
========================================= */

.ys_sell_timeline {
  position: relative;
  padding-left: 52px;
  margin-bottom: 80px;
}

.ys_sell_timeline::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    #1e4d8c,
    transparent
  );
  opacity: .35;
}

/* =========================================
 ITEM
========================================= */

.ys_sell_item {
  display: flex;
  gap: 30px;
  padding: 28px 0;
  animation: ys_sell_soft_up .85s ease forwards;
}

/* =========================================
 ICON
========================================= */

.ys_sell_icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1e4d8c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: ys_sell_pulse 3s infinite ease-in-out;
}

.ys_sell_icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
}

/* =========================================
 CONTENT
========================================= */

.ys_sell_name {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #020617;
  
}

.ys_sell_desc {
  margin: 0;
  font-size: .95rem;
  color: #475569;
}

/* =========================================
 FOOTER
========================================= */

.ys_sell_footer {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #334155;
  max-width: 820px;
  animation: ys_sell_soft_up 1.2s ease forwards;
}

.ys_sell_footer strong {
  color: #1e4d8c;
}

/* =========================================
 ANIMATIONS (UNIQUE)
========================================= */

@keyframes ys_sell_zoom_in {
  from {
    opacity: 0;
    transform: scale(.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ys_sell_soft_up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ys_sell_pulse {
  0% { box-shadow: 0 0 0 0 rgba(30,77,140,.45); }
  70% { box-shadow: 0 0 0 16px rgba(30,77,140,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,77,140,0); }
}

/* =========================================
 MOBILE
========================================= */

@media (max-width: 768px) {
  .ys_sell_title {
    font-size: 2.05rem;
  }
}

/* =========================================
 EARN SECTION – BASE
========================================= */

.ys_earn_section {
  padding: 60px 20px;
  background: #ffffff;
}

.ys_earn_wrapper {
  max-width: 1100px;
  margin: auto;
}

/* =========================================
 HEADER
========================================= */

.ys_earn_header {
  text-align: center;
  margin-bottom: 90px;
}

.ys_earn_title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #020617;
  margin-bottom: 14px;
  animation: ys_earn_focus_in .9s ease forwards;
}

.ys_earn_intro {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 760px;
  margin: auto;
  animation: ys_earn_focus_in 1.1s ease forwards;
}

/* =========================================
 COMPARISON LAYOUT
========================================= */

.ys_earn_compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

/* =========================================
 BLOCKS
========================================= */

.ys_earn_block {
  position: relative;
  padding: 40px 36px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  animation: ys_earn_slide_up .9s ease forwards;
}

/* subtle differentiation */
.ys_earn_active {
  box-shadow: 0 20px 50px rgba(30,77,140,.12);
}

.ys_earn_passive {
  box-shadow: 0 20px 50px rgba(2,6,23,.08);
}

/* =========================================
 BADGE
========================================= */

.ys_earn_badge {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 24px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  background: rgba(30,77,140,.1);
  color: #1e4d8c;
}

/* =========================================
 POINTS
========================================= */

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

.ys_earn_points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: .98rem;
  color: #020617;
}

.ys_earn_points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1e4d8c;
  font-weight: 800;
}

/* =========================================
 NOTES
========================================= */

.ys_earn_note {
  font-size: .95rem;
  line-height: 1.7;
  color: #475569;
}

/* =========================================
 FOOTER STATEMENT
========================================= */

.ys_earn_footer {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #334155;
  max-width: 860px;
  margin: auto;
  animation: ys_earn_slide_up 1.2s ease forwards;
}

.ys_earn_footer strong {
  color: #1e4d8c;
}

/* =========================================
 ANIMATIONS (UNIQUE)
========================================= */

@keyframes ys_earn_focus_in {
  from {
    opacity: 0;
    transform: scale(.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ys_earn_slide_up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
 MOBILE
========================================= */

@media (max-width: 768px) {
  .ys_earn_title {
    font-size: 2.05rem;
  }
}


/* =========================================
 TERMS – ALT STYLE BASE
========================================= */

.ys_terms_zone {
  padding: 60px 20px;
  background: #ffffff;
}

.ys_terms_frame {
  max-width: 1000px;
  margin: auto;
}

/* =========================================
 HEADER
========================================= */

.ys_terms_head {
  max-width: 780px;
  margin-bottom: 90px;
}

.ys_terms_title {
  font-size: 2.45rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #020617;
  margin-bottom: 16px;
  animation: ys_terms_focus_in .9s ease forwards;
  align-items: center;
  text-align: center;
}

.ys_terms_subtext {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
  animation: ys_terms_focus_in 1.1s ease forwards;
  
}

/* =========================================
 RULES LAYOUT (SEGMENTED BLOCKS)
========================================= */

.ys_terms_rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 34px;
  margin-bottom: 90px;
}

.ys_terms_rule {
  padding: 30px 32px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(2,6,23,.08);
  animation: ys_terms_blur_in .9s ease forwards;
  transition: transform .35s ease, box-shadow .35s ease;
}

.ys_terms_rule:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(2,6,23,.12);
}

/* =========================================
 TAG
========================================= */

.ys_terms_tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(30,77,140,.1);
  color: #1e4d8c;
}

/* =========================================
 TEXT
========================================= */

.ys_terms_text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: #020617;
}

.ys_terms_text strong {
  color: #1e4d8c;
}

/* =========================================
 CLOSURE STATEMENT
========================================= */

.ys_terms_closure {
  max-width: 900px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #334155;
  animation: ys_terms_blur_in 1.1s ease forwards;
}

.ys_terms_closure strong {
  color: #1e4d8c;
}

/* =========================================
 ANIMATIONS (VERY DIFFERENT)
========================================= */

@keyframes ys_terms_focus_in {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: scale(.96);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes ys_terms_blur_in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* =========================================
 MOBILE
========================================= */

@media (max-width: 768px) {
  .ys_terms_title {
    font-size: 2.05rem;
  }
}


/* =====================================================
 ROLE SPLIT – BASE
===================================================== */
.ys_role_section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* =====================================================
 HEADER
===================================================== */
.ys_role_head {
  max-width: 900px;
  margin: 0 auto 90px;
  animation: ys_role_head_in 0.9s ease forwards;
}

.ys_role_badge {
  display: inline-block;
  padding: 7px 22px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e40af;
  background: #e0e7ff;
  border-radius: 999px;
  margin-bottom: 18px;
}

.ys_role_title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #020617;
  margin-bottom: 18px;
}

.ys_role_subtitle {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
}

/* =====================================================
 GRID
===================================================== */
.ys_role_grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
}

/* =====================================================
 CARDS
===================================================== */
.ys_role_card {
  padding: 54px 48px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 32px 80px rgba(15,23,42,0.1);
  animation: ys_role_card_up 1s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys_role_you {
  animation-delay: 0.1s;
}

.ys_role_yuvaasoft {
  animation-delay: 0.25s;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

/* =====================================================
 CARD HEADER
===================================================== */
.ys_role_card_head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.ys_role_icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: #f1f5f9;
}

.ys_role_card_head h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #020617;
}

/* =====================================================
 LIST
===================================================== */
.ys_role_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ys_role_list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #334155;
}

.ys_role_list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 800;
}

/* =====================================================
 DIVIDER
===================================================== */
.ys_role_divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ys_role_divider span {
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    #c7d2fe,
    transparent
  );
  animation: ys_role_divider_glow 3.5s ease-in-out infinite;
}

/* =====================================================
 FOOTER
===================================================== */
.ys_role_footer {
  margin-top: 80px;
  text-align: center;
  animation: ys_role_footer_in 1.1s ease forwards;
}

.ys_role_footer p {
  font-size: 1.1rem;
  color: #020617;
}

.ys_role_footer span {
  color: #475569;
  margin-left: 6px;
}

/* =====================================================
 ANIMATIONS
===================================================== */
@keyframes ys_role_head_in {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ys_role_card_up {
  from { opacity: 0; transform: translateY(60px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ys_role_divider_glow {
  0%,100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes ys_role_footer_in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
 RESPONSIVE
===================================================== */
@media (max-width: 992px) {
  .ys_role_grid {
    grid-template-columns: 1fr;
  }

  .ys_role_divider {
    display: none;
  }
}


/* =====================================================
 PARTNER WIN – BASE
===================================================== */
.ys_win_section {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* =====================================================
 HEADER
===================================================== */
.ys_win_head {
  max-width: 900px;
  margin: 0 auto 90px;
  animation: ys_win_head_reveal 0.9s ease forwards;
}

.ys_win_badge {
  display: inline-block;
  padding: 7px 22px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e40af;
  background: #e0e7ff;
  border-radius: 999px;
  margin-bottom: 18px;
}

.ys_win_title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #020617;
  margin-bottom: 18px;
}

.ys_win_subtitle {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
}

/* =====================================================
 GRID
===================================================== */
.ys_win_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 36px;
}

/* =====================================================
 CARDS
===================================================== */
.ys_win_card {
  position: relative;
  padding: 46px 42px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(15,23,42,0.09);
  animation: ys_win_card_rise 1s cubic-bezier(.22,.61,.36,1) forwards;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.ys_win_card:hover {
  transform: translateY(-12px);
  box-shadow: 0 48px 120px rgba(15,23,42,0.15);
}

.ys_win_highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

/* =====================================================
 ICON
===================================================== */
.ys_win_icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 26px;
  background: #f1f5f9;
  margin-bottom: 20px;
  animation: ys_win_icon_float 3.6s ease-in-out infinite;
}

/* =====================================================
 TEXT
===================================================== */
.ys_win_card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.ys_win_card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* =====================================================
 FOOTER STATEMENT
===================================================== */
.ys_win_footer {
  margin-top: 90px;
  text-align: center;
  animation: ys_win_footer_fade 1.1s ease forwards;
}

.ys_win_footer p {
  font-size: 1.15rem;
  color: #020617;
}

.ys_win_footer span {
  color: #475569;
  margin-left: 6px;
}

/* =====================================================
 ANIMATIONS
===================================================== */
@keyframes ys_win_head_reveal {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ys_win_card_rise {
  from { opacity: 0; transform: translateY(50px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ys_win_icon_float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes ys_win_footer_fade {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
 JOIN PROCESS – BASE
===================================================== */
.ys_join_section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* =====================================================
 HEADER
===================================================== */
.ys_join_head {
  max-width: 900px;
  margin: 0 auto 90px;
  animation: ys_join_head_in 0.9s ease forwards;
}

.ys_join_badge {
  display: inline-block;
  padding: 7px 22px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e40af;
  background: #e0e7ff;
  border-radius: 999px;
  margin-bottom: 18px;
}

.ys_join_title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: #020617;
  margin-bottom: 18px;
}

.ys_join_subtitle {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
}

/* =====================================================
 STEPS GRID
===================================================== */
.ys_join_steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 34px;
}

/* =====================================================
 STEP CARD
===================================================== */
.ys_join_step {
  position: relative;
  padding: 44px 38px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(15,23,42,0.09);
  text-align: left;
  animation: ys_join_step_up 1s cubic-bezier(.22,.61,.36,1) forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ys_join_step:hover {
  transform: translateY(-10px);
  box-shadow: 0 44px 110px rgba(15,23,42,0.15);
}

/* =====================================================
 STEP NUMBER
===================================================== */
.ys_join_no {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 900;
  color: #1e40af;
  background: #eef2ff;
  margin-bottom: 20px;
  animation: ys_join_pulse 3.2s infinite ease-in-out;
}

/* =====================================================
 TEXT
===================================================== */
.ys_join_step h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 8px;
}

.ys_join_step p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* =====================================================
 FOOTER LINE
===================================================== */
.ys_join_footer {
  margin-top: 90px;
  text-align: center;
  animation: ys_join_footer_in 1.1s ease forwards;
}

.ys_join_footer p {
  font-size: 1.15rem;
  color: #020617;
}

.ys_join_footer span {
  color: #2563eb;
  font-weight: 700;
  margin-left: 4px;
}

/* =====================================================
 ANIMATIONS
===================================================== */
@keyframes ys_join_head_in {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ys_join_step_up {
  from { opacity: 0; transform: translateY(46px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ys_join_pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@keyframes ys_join_footer_in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}


/* =====================================================
 APPLY FORM – BASE
===================================================== */
.ys_apply_section {
  padding: 60px 0;
  background:
    radial-gradient(circle at top right, #eef2ff, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* =====================================================
 HEADER
===================================================== */
.ys_apply_head {
  max-width: 920px;
  margin: 0 auto 90px;
  animation: ys_apply_head_in 0.9s ease forwards;
}

.ys_apply_badge {
  display: inline-block;
  padding: 7px 22px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e40af;
  background: #e0e7ff;
  border-radius: 999px;
  margin-bottom: 18px;
}

.ys_apply_title {
  font-size: 2.9rem;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: #020617;
  margin-bottom: 18px;
}

.ys_apply_subtitle {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #475569;
}

/* =====================================================
 FORM WRAPPER
===================================================== */
.ys_apply_wrapper {
  max-width: 1040px;
  margin: 0 auto;
  padding: 70px 70px;
  background: #ffffff;
  border-radius: 34px;
  box-shadow: 0 42px 100px rgba(15,23,42,0.12);
  animation: ys_apply_card_up 1.1s cubic-bezier(.22,.61,.36,1) forwards;
}

/* =====================================================
 FIELDS
===================================================== */
.ys_apply_field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 8px;
}

.ys_apply_field input,
.ys_apply_field select,
.ys_apply_field textarea {
  width: 100%;
  padding: 15px 18px;
  font-size: 0.95rem;
  border-radius: 16px;
  border: 1.6px solid #e5e7eb;
  background: #ffffff;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.ys_apply_field input:focus,
.ys_apply_field select:focus,
.ys_apply_field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}

/* =====================================================
 CTA
===================================================== */
.ys_apply_action {
  margin-top: 60px;
}

.ys_apply_btn {
  padding: 18px 52px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.4px;
  border: none;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  box-shadow: 0 20px 48px rgba(37,99,235,0.5);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ys_apply_btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 72px rgba(37,99,235,0.65);
}

/* =====================================================
 ANIMATIONS
===================================================== */
@keyframes ys_apply_head_in {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ys_apply_card_up {
  from { opacity: 0; transform: translateY(56px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* =====================================================
 RESPONSIVE
===================================================== */
@media (max-width: 768px) {
  .ys_apply_wrapper {
    padding: 50px 30px;
  }

  .ys_apply_title {
    font-size: 2.3rem;
  }
}


/* =====================================================
   FINAL PARTNER CTA – GROWTH SIGNAL STYLE
===================================================== */

.ys-partnerCTA-wrap {
  position: relative;
  padding: 60px 20px;
  background:
    radial-gradient(circle at top right, #217ef8, transparent 45%),
    radial-gradient(circle at bottom left, #4570ff, transparent 45%),
    linear-gradient(180deg, #1f6fe5 10%, #2563eb 70%);
  overflow: hidden;
}

/* .ys-partnerCTA-wrap::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(177, 218, 255, 0.581), transparent 60%);
  animation: ctaGlowMove 10s ease-in-out infinite;
} */

/* ---------- CTA Box ---------- */

.ys-partnerCTA-box {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 10px;
}


/* ---------- Chip ---------- */

.ys-partnerCTA-chip {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 40px;
  background: rgba(31,111,229,0.12);
  color: #1f6fe5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 26px;
}

/* ---------- Title ---------- */

.ys-partnerCTA-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #020617;
  line-height: 1.15;
  margin-bottom: 22px;
}

.ys-partnerCTA-title span {
  color: #ffffff;
}

/* ---------- Text ---------- */

.ys-partnerCTA-text {
  max-width: 1160px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
}

/* ---------- Actions ---------- */

.ys-partnerCTA-actions {
  display: flex;
  justify-content: left;
  gap: 24px;
  flex-wrap: wrap;
}

.ys-partnerCTA-btn {
  padding: 18px 46px;
  border-radius: 60px;
  font-weight: 800;
  text-decoration: none;
  transition: all .35s ease;
}

/* Primary */
.ys-partnerCTA-btn.primary {
  background: linear-gradient(135deg, #1f6fe5, #3b82f6);
  color: #ffffff;
  box-shadow: 0 24px 65px rgba(31,111,229,0.55);
}

.ys-partnerCTA-btn.primary:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 38px 95px rgba(31,111,229,0.75);
}

/* Outline */
.ys-partnerCTA-btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.ys-partnerCTA-btn.outline:hover {
  transform: translateY(-4px);
  color: #ffffff;
}

/* ---------- Animations ---------- */

@keyframes partnerPulse {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes partnerPulseReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .ys-partnerCTA-title {
    font-size: 2.3rem;
  }

  .ys-partnerCTA-box {
    padding: 90px 24px;
  }

  .ys-partnerCTA-wave {
    display: none;
  }
}


/* =====================================================
 BOOTSTRAP SAFE GLOBAL RESET
===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

section {
  width: 100%;
  overflow: hidden;
}

/* Keep Bootstrap container predictable */
.container {
  max-width: 1140px;
}

/* =====================================================
 HERO SECTION FIX (NO CONTENT CHANGE)
===================================================== */
.ys-ad-partner-hero {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ys-hero-inner {
  padding-left: 15px;
  padding-right: 15px;
}

/* Mobile hero spacing */
@media (max-width: 768px) {
  .ys-ad-partner-hero {
    padding: 90px 15px 100px;
  }

  .ys-hero-heading {
    font-size: 2.4rem;
  }

  .ys-hero-description,
  .ys-hero-subline {
    padding: 0 10px;
  }
}

/* =====================================================
 PARTNER PROFILE
===================================================== */
.ys-profile-wrap {
  padding-left: 15px;
  padding-right: 15px;
}

.ys-profile-grid {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
 SELL SECTION – TIMELINE FIX
===================================================== */
.ys_sell_wrapper {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 768px) {
  .ys_sell_timeline {
    padding-left: 0;
  }

  .ys_sell_timeline::before {
    display: none;
  }

  .ys_sell_item {
    align-items: flex-start;
  }
}

/* =====================================================
 EARN SECTION – EQUAL HEIGHT
===================================================== */
.ys_earn_wrapper {
  padding-left: 15px;
  padding-right: 15px;
}

.ys_earn_compare {
  align-items: stretch;
}

.ys_earn_block {
  height: 100%;
}

/* =====================================================
 TERMS SECTION
===================================================== */
.ys_terms_frame {
  padding-left: 15px;
  padding-right: 15px;
}

.ys_terms_head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* =====================================================
 ROLE SECTION – BOOTSTRAP SAFE
===================================================== */
.ys_role_section {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 992px) {
  .ys_role_grid {
    grid-template-columns: 1fr;
  }

  .ys_role_divider {
    display: none;
  }

  .ys_role_card {
    padding: 40px 30px;
  }
}

/* =====================================================
 WHY PARTNERS WIN
===================================================== */
.ys_win_section {
  padding-left: 15px;
  padding-right: 15px;
}

/* =====================================================
 JOIN SECTION
===================================================== */
.ys_join_section {
  padding-left: 15px;
  padding-right: 15px;
}

.ys_join_steps {
  align-items: stretch;
}

.ys_join_step {
  height: 100%;
}

/* =====================================================
 APPLY FORM – BOOTSTRAP FRIENDLY
===================================================== */
.ys_apply_section {
  padding-left: 15px;
  padding-right: 15px;
}

.ys_apply_wrapper {
  width: 100%;
}

@media (max-width: 768px) {
  .ys_apply_wrapper {
    padding: 50px 30px;
  }

  .ys_apply_title {
    font-size: 2.3rem;
  }
}

/* =====================================================
 FINAL CTA
===================================================== */
.ys-partnerCTA-wrap {
  padding-left: 15px;
  padding-right: 15px;
}

.ys-partnerCTA-box {
  text-align: left;
}

.ys-partnerCTA-actions {
  align-items: left;
}

/* =====================================================
 TABLET OPTIMIZATION
===================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .ys-hero-heading {
    font-size: 2.8rem;
  }

  .ys-role_card {
    padding: 48px 40px;
  }
}

/* =====================================================
 LARGE SCREENS (DESKTOP / LAPTOP)
===================================================== */
@media (min-width: 1200px) {
  .ys-hero-heading {
    font-size: 3.1rem;
  }
}
