/* =========================================================
   Voctos — Partnership / Affiliate Hero
   Dark gradient hero → breadcrumb, gradient-accent title, intro,
   promo gradient card + two benefit lists + wide CTA button.
   Tokens: Unbounded, #0D172D, container 1350, lime CTA.
   ========================================================= */
.vph-sec {
  font-family: 'Unbounded', sans-serif;
  position: relative;
  background: linear-gradient(180deg,
      #0a1730 0%, #0d1c3a 26%, #16233f 46%, #303650 62%, #b9bdca 82%, #eff0f4 100%);
  padding: 120px 0 50px;
}
.vph-inner { max-width: 1350px; margin: 0 auto; }

/* ---------- breadcrumb ---------- */
.vph-crumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
}
.vph-crumb { position: relative; }
.vph-crumb:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -11px; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transform: translateY(-50%);
}
.vph-crumb a, .vph-crumb span {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
}
.vph-crumb a:hover { color: #fff; }
.vph-crumb .is-current { color: rgba(255,255,255,0.45); }

/* ---------- title ---------- */
.vph-title {
  text-align: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.25;
  color: #ffffff;
  margin: 22px 0 0;
}
.vph-accent {
  position: relative;
  display: inline-block;
  background: linear-gradient(327deg, #F6C7D1 44.73%, #F5F1CE 59.41%, #FFA0BD 74.73%, #D2B3FF 99.78%, #FFCFCF 125.47%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 400;
}
.vph-accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 75%;
  width: 100%;
  height: 36px;
  background: url('../assets/img/spiral.png') center / contain no-repeat;
  pointer-events: none;
}

/* ---------- intro ---------- */
.vph-intro {
  text-align: center;
  max-width: 1040px;
  margin: 26px auto 0;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255,255,255,0.5);
}

/* ---------- cards grid ---------- */
.vph-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 54px;
  align-items: stretch;
}
.vph-promo { grid-column: 1; grid-row: 1 / span 2; }
.vph-card--1 { grid-column: 2; grid-row: 1; }
.vph-card--2 { grid-column: 3; grid-row: 1; }
.vph-btn    { grid-column: 2 / span 2; grid-row: 2; }

/* promo (gradient) card */
.vph-promo {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f7f0ca 0%, #fdc8cf 45.5%, #dfb7fb 100%);
  border-radius: 30px;
  padding: 24px 16px;
  justify-content: space-between;
}
.vph-promo-icon { display: flex; justify-content: center; margin-bottom: 0; }
.vph-promo-icon img { width: 144px; height: auto; display: block; }
.vph-promo-h {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #0D172D;
}
.vph-promo-h strong { font-weight: 700; }
.vph-promo-note {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(13,23,45,0.3);
  margin: 16px 0 0;
}

/* benefit cards */
.vph-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 20px 28px;
}
.vph-card-h {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  color: #0D172D;
  margin: 0 0 16px;
}
.vph-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.vph-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #0D172D;
}
.vph-check { width: 18px; height: 18px; flex: 0 0 auto; }

/* CTA button */
.vph-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #cad63a;
  color: #0D172D;
  border-radius: 10px;
  padding: 16px 40px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.vph-btn:hover { background: #bfcc2b; transform: translateY(-2px); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .vph-grid { grid-template-columns: 1fr 1fr; }
  .vph-promo { grid-column: 1 / span 2; grid-row: 1; }
  .vph-card--1 { grid-column: 1; grid-row: 2; }
  .vph-card--2 { grid-column: 2; grid-row: 2; }
  .vph-btn { grid-column: 1 / span 2; grid-row: 3; }
  .vph-promo-icon { margin-bottom: 40px; }
}
@media (max-width: 620px) {
  .vph-sec { padding-top: 96px; }
  .vph-grid { grid-template-columns: 1fr; }
  .vph-promo, .vph-card--1, .vph-card--2, .vph-btn { grid-column: 1; }
  .vph-promo { grid-row: auto; }
  .vph-card--1, .vph-card--2, .vph-btn { grid-row: auto; }
  .vph-promo-icon { margin-bottom: 30px; }
}
