/* ══════════════════════════════════════════════
   DEMO LIFESTYLE — Plus Points Transfer Page
   ══════════════════════════════════════════════ */

/* ── Hero ── */
.pp-hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(160deg, #DBEAFE 0%, #C7D9F5 40%, #B8CCF0 100%);
}
.pp-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.pp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(30,40,70,0.45) 0%, rgba(20,30,60,0.40) 40%, rgba(15,25,50,0.35) 100%);
}
.pp-hero__content {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-65%);
  text-align: center;
  padding: 0 24px;
}
.pp-hero__title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.pp-hero__subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 340px;
  line-height: 1.55;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

/* Search box inside hero */
.pp-hero__search {
  position: absolute;
  bottom: 32px;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 48px));
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
}
.pp-hero__search > .icon {
  flex-shrink: 0;
  margin-left: 20px;
  color: var(--grey);
}
.pp-hero__search input {
  flex: 1;
  padding: 16px 14px;
  border: none;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: transparent;
  outline: none;
}
.pp-hero__search input::placeholder {
  color: #9ca3af;
}

/* ── Section ── */
.pp-section {
  padding: 28px max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad))) 0;
}
.pp-section__title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 16px;
}

/* ── Program List ── */
.pp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
  padding-bottom: 24px;
}

/* ── Program Card ── */
.pp-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pp-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Logo */
.pp-card__logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
}

/* Info */
.pp-card__info {
  flex: 1;
  min-width: 0;
}
.pp-card__name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 3px;
  line-height: 1.3;
}
.pp-card__category {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--grey);
  margin: 0 0 6px;
}
.pp-card__category .icon {
  width: 14px;
  height: 14px;
  stroke: var(--grey);
}
.pp-card__conversion {
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  opacity: 0.7;
  margin: 0;
}

/* Link button */
.pp-card__link {
  flex-shrink: 0;
  padding: 8px 20px;
  border: 1.5px solid var(--charcoal);
  border-radius: var(--radius-full);
  background: transparent;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s ease;
}
.pp-card__link:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ── Browse All button ── */
.pp-browse {
  padding: 8px max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad))) 40px;
}
.pp-browse__btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border: 1.5px solid #D1D5DB;
  border-radius: 12px;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.pp-browse__btn:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .pp-hero {
    height: 400px;
  }
  .pp-hero__content {
    padding: 0 20px;
  }
  .pp-hero__title {
    font-size: 26px;
  }
  .pp-hero__subtitle {
    font-size: 14px;
  }
  .pp-hero__search {
    bottom: 28px;
    width: calc(100% - 40px);
    border-radius: 14px;
  }
  .pp-hero__search input {
    padding: 14px 12px;
    font-size: 16px;
  }
  .pp-card {
    padding: 14px;
    gap: 12px;
  }
  .pp-card__logo {
    width: 48px;
    height: 48px;
    font-size: 14px;
    border-radius: 10px;
  }
  .pp-card__name {
    font-size: 14px;
  }
  .pp-card__link {
    padding: 7px 14px;
    font-size: 11px;
  }
}
