/* PointPeak theme – classic UI: solid colors, clear buttons, professional look */

:root {
  --pp-teal: #0d9488;
  --pp-teal-dark: #0f766e;
  --pp-teal-light: #14b8a6;
  --pp-teal-bg: #f0fdfa;
  --pp-teal-bar: #ccfbf1;
  --pp-blue: #0284c7;
  --pp-blue-bright: #0ea5e9;
  --pp-gradient: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  --pp-gradient-soft: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(2, 132, 199, 0.08) 100%);
  --pp-font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --pp-text: #1e293b;
  --pp-text-muted: #64748b;
  --pp-bg: #f8fafc;
  --pp-card: #ffffff;
  --pp-radius: 10px;
  --pp-radius-lg: 16px;
  --pp-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --pp-shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
  --pp-border: #e2e8f0;
}

/* Base */
body {
  font-family: var(--pp-font);
  color: var(--pp-text);
  background: var(--pp-bg);
}

/* ========== Auth pages (login, register, forgot password) ========== */
.auth-page {
  min-height: calc(100vh - 60px);
  padding: 0;
}

.auth-split {
  display: flex;
  flex-wrap: wrap;
  min-height: calc(100vh - 60px);
}

.auth-split__left {
  flex: 1 1 42%;
  min-width: 280px;
  background: var(--pp-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-split__right {
  flex: 1 1 58%;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--pp-card);
}

.auth-panel--left {
  max-width: 400px;
  width: 100%;
}

.auth-panel__inner {
  color: #fff;
  text-align: center;
}

.auth-panel__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.auth-panel__logo-img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}

.auth-panel__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.auth-panel__lead {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.auth-panel__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.auth-panel__list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.auth-panel__footer {
  font-size: 0.95rem;
  opacity: 0.9;
}

.auth-panel__footer a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.auth-panel__footer a:hover {
  color: #fff;
  opacity: 0.9;
}

.auth-form-wrap {
  width: 100%;
  max-width: 400px;
}

.auth-form-wrap--wide {
  max-width: 480px;
}

.auth-form__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pp-text);
  margin-bottom: 0.35rem;
}

.auth-form__subtitle {
  color: var(--pp-text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.auth-form .form-label {
  font-weight: 600;
  color: var(--pp-text);
  margin-bottom: 0.35rem;
}

.auth-form__link-wrap {
  margin-bottom: 0;
}

.auth-form__link {
  color: var(--pp-teal);
  font-weight: 500;
  text-decoration: none;
}

.auth-form__link:hover {
  color: var(--pp-blue);
  text-decoration: underline;
}

.auth-form__register {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.95rem;
  color: var(--pp-text-muted);
  text-align: center;
}

.auth-form__register a {
  color: var(--pp-teal);
  font-weight: 600;
  text-decoration: none;
}

.auth-form__register a:hover {
  color: var(--pp-blue);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .auth-split__left {
    min-height: 280px;
    padding: 2rem 1.5rem;
  }
  .auth-split__right {
    padding: 2rem 1.5rem;
  }
  .auth-panel__title {
    font-size: 1.4rem;
  }
}

/* ========== Homepage trust strip – classic bar with solid background ========== */
.trust-strip {
  background: var(--pp-teal-bar);
  padding: 0.6rem 0;
  border-bottom: 2px solid var(--pp-teal);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pp-teal-dark);
}

.trust-strip__dot {
  width: 5px;
  height: 5px;
  background: var(--pp-teal);
  border-radius: 50%;
}

/* ========== Header ========== */
.site-header {
  background: var(--pp-card);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.site-header .navbar {
  padding: 0.75rem 0;
}

.site-header__logo {
  height: 42px;
  width: auto;
  display: block;
}

.site-header__wordmark {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pp-text);
  letter-spacing: -0.02em;
  background: var(--pp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-header__toggler {
  border-color: var(--pp-teal);
  border-radius: var(--pp-radius);
}

.site-header__toggler:focus {
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.25);
}

.site-header__nav-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.site-header__link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--pp-text);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  border: none;
  background: none;
  cursor: pointer;
}

.site-header__link:hover {
  color: var(--pp-teal);
}

.site-header__link--primary {
  background: var(--pp-teal-bg) !important;
  color: var(--pp-teal) !important;
  border: 2px solid var(--pp-teal);
  font-weight: 600;
}

.site-header__link--primary:hover {
  background: #ccfbf1 !important;
  color: var(--pp-teal-dark) !important;
  border-color: var(--pp-teal-dark);
}

.site-header__link--cta {
  background: var(--pp-teal) !important;
  color: #fff !important;
  border: 2px solid var(--pp-teal);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
}

.site-header__link--cta:hover {
  opacity: 0.95;
  color: #fff !important;
  box-shadow: var(--pp-shadow);
}

.site-header__link--btn {
  background: var(--pp-teal-bg) !important;
  border: 2px solid var(--pp-teal);
  color: var(--pp-teal);
  font-weight: 600;
}

.site-header__link--btn:hover {
  background: #ccfbf1 !important;
  border-color: var(--pp-teal-dark);
  color: var(--pp-teal-dark);
}

@media (max-width: 991.98px) {
  .site-header__nav-group {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }
}

/* ========== Main / Homepage ========== */
.site-main {
  padding-top: 0;
}

#main {
  padding-top: 0;
}

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}

.hero--home {
  padding: 5.5rem 0 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--pp-teal);
  z-index: 0;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
  pointer-events: none;
}

.hero__shape--1 {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -80px;
}

.hero__shape--2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -40px;
}

.hero__shape--3 {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 5%;
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

/* Two-column hero (value left, CTA right) */
.hero--split .hero__inner {
  text-align: left;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero--split .hero__left {
    text-align: center;
  }
  .hero__stat-blocks {
    justify-content: center;
  }
  .hero__right {
    max-width: 400px;
  }
}

.hero__left {
  color: #fff;
}

.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__title-accent {
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-shadow: none;
}

.hero__stat-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.hero__stat-block {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--pp-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 280px;
}

.hero__stat-block__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hero__stat-block__value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.hero__stat-block__label {
  font-size: 0.85rem;
  opacity: 0.9;
  color: #fff;
}

.hero__cta-box {
  background: var(--pp-card);
  padding: 2rem;
  border-radius: var(--pp-radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 360px;
}

.hero__cta-box__badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pp-teal);
  margin-bottom: 0.75rem;
  text-align: center;
}

.hero__cta-box__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pp-text);
  margin-bottom: 1.25rem;
  text-align: center;
}

.hero__cta-box__btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* Classic: primary = solid teal, secondary = solid light gray with teal border */
.hero__cta-box__btns .btn-hero--primary {
  background: var(--pp-teal) !important;
  color: #fff !important;
  border: 2px solid var(--pp-teal);
}

.hero__cta-box__btns .btn-hero--outline {
  background: #f1f5f9 !important;
  color: var(--pp-teal) !important;
  border: 2px solid var(--pp-teal);
}

.hero__cta-box__btns .btn-hero--outline:hover {
  background: var(--pp-teal-bg) !important;
  color: var(--pp-teal-dark) !important;
  border-color: var(--pp-teal-dark);
}

.btn-block {
  display: block;
  text-align: center;
  width: 100%;
}

.hero__cta-box__app {
  display: block;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pp-teal);
  text-decoration: none;
  margin-bottom: 1rem;
}

.hero__cta-box__app:hover {
  color: var(--pp-blue);
}

.hero__cta-box__trust {
  font-size: 0.8rem;
  color: var(--pp-text-muted);
  text-align: center;
  margin: 0;
}

.hero__logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.hero__logo-img {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
}

.hero__title {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.hero__badge {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 0.75rem;
}

.hero__lead {
  font-size: 1.15rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.hero--split .hero__lead {
  margin-left: 0;
  margin-right: 0;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.hero__trust {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero__stat-divider {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.hero__stat strong {
  font-weight: 700;
}

/* Homepage stats bar – classic cards */
.home-stats {
  background: var(--pp-bg);
  padding: 2rem 0;
  border-top: 2px solid var(--pp-border);
}

.home-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 600px) {
  .home-stats__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.home-stats__item {
  background: var(--pp-card);
  padding: 1.25rem 1rem;
  border-radius: var(--pp-radius);
  border: 2px solid var(--pp-border);
  box-shadow: var(--pp-shadow);
}

.home-stats__value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pp-teal);
  margin-bottom: 0.25rem;
}

.home-stats__label {
  font-size: 0.9rem;
  color: var(--pp-text-muted);
}

/* Narrow container for sections */
.container--narrow {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero {
  display: inline-block;
  background: #fff;
  color: var(--pp-teal);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--pp-radius);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  font-size: 1.05rem;
}

.btn-hero:hover {
  background: var(--pp-teal-bg);
  color: var(--pp-teal-dark);
  box-shadow: var(--pp-shadow);
}

.btn-hero--primary {
  background: #fff;
  color: var(--pp-teal);
  border-color: #fff;
}

.btn-hero--outline {
  background: #f1f5f9;
  color: var(--pp-teal);
  border: 2px solid var(--pp-teal);
}

.btn-hero--outline:hover {
  background: var(--pp-teal-bg);
  color: var(--pp-teal-dark);
  border-color: var(--pp-teal-dark);
}

/* Sections */
.section {
  padding: 4rem 0;
  background: var(--pp-card);
}

/* Trust intro + partner logos */
.section--trust-intro {
  padding: 3rem 0;
  background: var(--pp-card);
}

.trust-intro__text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--pp-text-muted);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
}

.partner-logos__item {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pp-teal);
  padding: 0.6rem 1.5rem;
  background: var(--pp-teal-bg);
  border-radius: var(--pp-radius);
  border: 2px solid var(--pp-teal);
}

.section--why {
  background: var(--pp-gradient-soft);
  padding: 5rem 0;
}

.section--steps {
  padding: 5rem 0;
}

.section--rewards {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--pp-gradient-soft) 50%, rgba(255,255,255,0) 100%);
}

/* Social proof / quote strip */
.section--proof {
  padding: 3rem 0;
  background: var(--pp-card);
}

.proof-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pp-teal);
  margin: 0 auto 1rem;
  text-align: center;
  width: 100%;
}

.proof-quote {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem;
}

.proof-quote__text {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--pp-text);
  margin: 0 0 0.5rem;
  line-height: 1.45;
}

.proof-quote__sub {
  font-size: 1rem;
  color: var(--pp-text-muted);
  margin: 0;
}

.section--benefits {
  background: var(--pp-gradient-soft);
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-teal);
  margin-bottom: 0.5rem;
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--pp-text);
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.section-head .section__title {
  margin-bottom: 0.75rem;
}

.section__lead {
  text-align: center;
  color: var(--pp-text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.section-head .section__lead {
  margin-bottom: 0;
}

/* Feature cards (Why PointPeak) */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--pp-card);
  padding: 2.5rem 2rem;
  border-radius: var(--pp-radius-lg);
  text-align: center;
  box-shadow: 0 4px 24px rgba(13, 148, 136, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  border: 1px solid rgba(13, 148, 136, 0.08);
}

.feature-card:hover {
  box-shadow: var(--pp-shadow-hover);
  transform: translateY(-4px);
}

.feature-card__icon-wrap {
  margin-bottom: 1.25rem;
}

.feature-card__icon {
  max-width: 72px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pp-text);
  margin-bottom: 0.5rem;
}

.feature-card__text {
  color: var(--pp-text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

/* Steps (How it Works) */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

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

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--pp-card);
  border-radius: var(--pp-radius-lg);
  box-shadow: var(--pp-shadow);
  border-top: 4px solid transparent;
  border-image: var(--pp-gradient) 1;
  transition: box-shadow 0.25s, transform 0.2s;
  position: relative;
}

.step-card:hover {
  box-shadow: var(--pp-shadow-hover);
  transform: translateY(-2px);
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--pp-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1.35rem;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.step-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pp-teal);
  margin-bottom: 0.5rem;
}

.step-card__text {
  color: var(--pp-text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

/* Rewards strip */
.rewards-strip {
  text-align: center;
  padding: 1.5rem;
}

.rewards-strip__title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pp-text-muted);
  margin-bottom: 1rem;
}

.rewards-strip__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.rewards-strip__item {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--pp-card);
  border-radius: 999px;
  font-weight: 600;
  color: var(--pp-teal);
  box-shadow: 0 2px 12px rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.15);
}

.rewards-strip__note {
  font-size: 0.9rem;
  color: var(--pp-text-muted);
  margin: 0;
}

/* Choose from 3+ rewards (card layout) */
.rewards-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 768px) {
  .rewards-cards {
    grid-template-columns: 1fr;
  }
}

.rewards-cards__main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rewards-card {
  background: var(--pp-card);
  padding: 2rem;
  border-radius: var(--pp-radius-lg);
  box-shadow: 0 4px 24px rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.1);
  flex: 1;
}

.rewards-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.rewards-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pp-text);
  margin-bottom: 0.5rem;
}

.rewards-card__text {
  font-size: 0.95rem;
  color: var(--pp-text-muted);
  margin: 0;
  line-height: 1.5;
}

.rewards-cards__values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rewards-value-card {
  background: var(--pp-card);
  padding: 2rem;
  border-radius: var(--pp-radius-lg);
  box-shadow: 0 4px 24px rgba(13, 148, 136, 0.08);
  border: 2px solid rgba(13, 148, 136, 0.15);
  text-align: center;
}

.rewards-value-card__brand {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pp-teal);
  margin-bottom: 0.25rem;
}

.rewards-value-card__range {
  font-size: 0.9rem;
  color: var(--pp-text-muted);
}

/* Keep section--alt for any other views */
.section--alt {
  background: var(--pp-gradient-soft);
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.benefits {
  margin-top: 0;
}

.benefits-timing {
  text-align: center;
  font-size: 1rem;
  color: var(--pp-teal);
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.benefit-card {
  background: var(--pp-card);
  padding: 2.25rem;
  border-radius: var(--pp-radius-lg);
  text-align: center;
  box-shadow: var(--pp-shadow);
  transition: box-shadow 0.25s, transform 0.2s;
  border: 1px solid rgba(13, 148, 136, 0.06);
}

.benefit-card:hover {
  box-shadow: var(--pp-shadow-hover);
  transform: translateY(-2px);
}

.benefit-card__icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 0.75rem;
}

.benefit-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pp-text);
  margin-bottom: 0.5rem;
}

.benefit-card__text {
  color: var(--pp-text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

/* CTA */
.cta {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

/* Bottom reward option cards (Learn more) */
.section--reward-options {
  padding: 4rem 0;
  background: var(--pp-card);
}

.reward-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .reward-options {
    grid-template-columns: 1fr;
  }
}

.reward-option-card {
  display: block;
  background: var(--pp-card);
  padding: 2rem;
  border-radius: var(--pp-radius-lg);
  box-shadow: 0 4px 24px rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
}

.reward-option-card:hover {
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.12);
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.2);
  color: inherit;
}

.reward-option-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.reward-option-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pp-text);
  margin-bottom: 0.5rem;
}

.reward-option-card__text {
  font-size: 0.95rem;
  color: var(--pp-text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.reward-option-card__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pp-teal);
}

.reward-option-card:hover .reward-option-card__link {
  color: var(--pp-blue);
}

.cta--home {
  padding: 5rem 0;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: var(--pp-teal);
  z-index: 0;
}

.cta__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, #fff 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.cta__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta__lead {
  font-size: 1.1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-cta {
  display: inline-block;
  background: #fff !important;
  color: var(--pp-teal) !important;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--pp-radius);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  border: 2px solid var(--pp-teal);
  font-size: 1.05rem;
}

.btn-cta:hover {
  background: var(--pp-teal-bg) !important;
  color: var(--pp-teal-dark) !important;
  box-shadow: var(--pp-shadow);
}

.btn-cta--outline {
  background: #fff !important;
  color: var(--pp-teal) !important;
  border: 2px solid #fff;
}

.cta .btn-cta--outline {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--pp-teal) !important;
  border: 2px solid #fff;
}

.cta .btn-cta--outline:hover {
  background: #fff !important;
  color: var(--pp-teal-dark) !important;
}

.btn-cta--outline:hover {
  background: var(--pp-teal-bg) !important;
  color: var(--pp-teal-dark) !important;
  border-color: var(--pp-teal);
}

/* ========== Inner pages: title, card, alerts ========== */
.page-title-pp {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pp-text);
}

.card-pp {
  border: none;
  border-radius: var(--pp-radius-lg);
  box-shadow: var(--pp-shadow);
  overflow: hidden;
}

.alert-pp {
  border-radius: var(--pp-radius);
  border: none;
}

.page-content-pp {
  line-height: 1.7;
  color: var(--pp-text);
}

.page-content-pp p { margin-bottom: 1rem; }
.page-content-pp h2, .page-content-pp h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; }

/* ========== Surveys (post-login) ========== */
.site-main--with-sidebar {
  padding-top: 0;
}

.min-vh-survey {
  min-height: 70vh;
}

.survey-tabs.card-pp .card-body {
  padding: 0;
}

.nav-tabs-pp {
  border-bottom: none;
  padding: 0 1rem;
  gap: 0;
}

.nav-tabs-pp .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--pp-text-muted);
  font-weight: 600;
  padding: 1rem 1.25rem;
  border-radius: 0;
}

.nav-tabs-pp .nav-link:hover {
  color: var(--pp-teal);
}

.nav-tabs-pp .nav-link.active {
  color: var(--pp-teal);
  background: transparent;
  border-bottom-color: var(--pp-teal);
}

.reward-sidebar {
  position: sticky;
  top: 5rem;
}

.reward-sidebar__welcome {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pp-text);
  margin-bottom: 1rem;
}

.reward-sidebar__points {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.reward-sidebar__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pp-text-muted);
}

.reward-sidebar__value {
  font-size: 2rem;
  font-weight: 700;
  background: var(--pp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reward-sidebar__code {
  font-weight: 700;
  color: var(--pp-blue);
  font-family: monospace;
}

.reward-sidebar__meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.reward-sidebar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* ========== Buttons: classic solid primary, solid secondary ========== */
.btn-pp {
  background: var(--pp-teal) !important;
  color: #fff !important;
  font-weight: 600;
  border: 2px solid var(--pp-teal) !important;
  border-radius: var(--pp-radius);
  padding: 0.6rem 1.25rem;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.btn-pp:hover {
  background: var(--pp-teal-dark) !important;
  border-color: var(--pp-teal-dark) !important;
  color: #fff !important;
  box-shadow: var(--pp-shadow);
}

.btn-pp--block {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.btn-pp--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
}

.btn-pp-outline {
  background: var(--pp-teal-bg) !important;
  color: var(--pp-teal) !important;
  border: 2px solid var(--pp-teal) !important;
  font-weight: 600;
  border-radius: var(--pp-radius);
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-pp-outline:hover {
  background: var(--pp-teal) !important;
  color: #fff !important;
  border-color: var(--pp-teal) !important;
}

.tab-buttons-pp {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tab-buttons-pp .tab-btn.active {
  background: var(--pp-gradient);
  color: #fff;
  border-color: transparent;
}

.table-pp {
  margin-bottom: 0;
}

.table-pp thead th {
  font-weight: 600;
  color: var(--pp-text);
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  padding: 1rem;
}

.table-pp tbody td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
}

.global-loader-pp {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1055;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========== My Account page ========== */
.account-page {
  padding-top: 0;
  background: var(--pp-gradient-soft);
  min-height: 60vh;
}

.account-header {
  margin-bottom: 1.5rem;
}

.account-header__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pp-text);
  margin-bottom: 0.25rem;
}

.account-header__subtitle {
  font-size: 1rem;
  color: var(--pp-text-muted);
  margin: 0;
}

.account-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.account-card {
  background: var(--pp-card);
  border-radius: var(--pp-radius-lg);
  box-shadow: var(--pp-shadow);
  border: 1px solid rgba(13, 148, 136, 0.06);
  overflow: hidden;
}

.account-card--points {
  background: var(--pp-card);
  border-color: rgba(0, 0, 0, 0.08);
}

.account-card--points .account-card__row {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account-card--points .account-card__row--points {
  padding-top: 0;
}

.account-card--points .account-card__row .account-card__label {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--pp-text-muted);
}

.account-card--points .account-card__value--available {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--pp-primary, #0d9488);
}

.account-card__body {
  padding: 1.5rem;
}

.account-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pp-text-muted);
  margin: 0 0 0.25rem;
}

.account-card__points {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pp-text);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.account-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
}

.account-card__row:last-child {
  border-bottom: none;
}

.account-card__value {
  font-weight: 600;
  color: var(--pp-text);
  margin: 0;
}

.account-card__code {
  font-weight: 700;
  color: var(--pp-blue);
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
}

.account-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.account-tabs__btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pp-text-muted);
  background: var(--pp-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--pp-radius);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.account-tabs__btn:hover {
  color: var(--pp-teal);
  border-color: rgba(13, 148, 136, 0.3);
}

.account-tabs__btn.active {
  background: var(--pp-gradient);
  color: #fff;
  border-color: transparent;
}

.account-content {
  margin-bottom: 0;
}

.account-table-wrap {
  overflow-x: auto;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.9rem;
}

.account-table thead {
  background: var(--pp-gradient-soft);
}

.account-table th {
  text-align: left;
  font-weight: 600;
  color: var(--pp-text);
  padding: 0.85rem 1rem;
  border-bottom: 2px solid rgba(13, 148, 136, 0.12);
}

.account-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--pp-text);
  vertical-align: middle;
}

.account-table tbody tr:hover {
  background: rgba(13, 148, 136, 0.03);
}

.account-table__empty {
  text-align: center;
  color: var(--pp-text-muted);
  padding: 2rem !important;
  font-style: italic;
}

.account-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.account-badge--success {
  background: rgba(13, 148, 136, 0.12);
  color: var(--pp-teal);
}

.account-badge--warning {
  background: rgba(234, 179, 8, 0.15);
  color: #b45309;
}

.account-badge--danger {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.account-modal .modal-content {
  border-radius: var(--pp-radius-lg);
  border: none;
  box-shadow: var(--pp-shadow-hover);
}

.account-modal__header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1rem 1.25rem;
}

.account-modal .modal-title {
  font-weight: 600;
  color: var(--pp-text);
}

/* ========== Redeem page ========== */
.redeem-card .card-body {
  max-width: 100%;
}

.redeem-available {
  text-align: center;
  padding: 1.25rem;
  background: var(--pp-gradient-soft);
  border-radius: var(--pp-radius);
  margin-bottom: 1.5rem;
}

.redeem-available__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.redeem-available__value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--pp-teal);
}

.redeem-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.redeem-option {
  flex: 1;
  min-width: 140px;
  cursor: pointer;
  margin: 0;
}

.redeem-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.redeem-option__box {
  display: block;
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--pp-radius);
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.redeem-option input:checked + .redeem-option__box {
  border-color: var(--pp-teal);
  background: var(--pp-gradient-soft);
}

.redeem-option__pts {
  display: block;
  font-weight: 600;
  color: var(--pp-text);
}

.redeem-option__cash {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pp-teal);
}

.form-control-pp {
  border-radius: var(--pp-radius);
  border: 1px solid #e2e8f0;
  padding: 0.65rem 1rem;
  font-family: var(--pp-font);
}

.form-control-pp:focus {
  border-color: var(--pp-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

/* ========== Blog ========== */
.blog-card {
  transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover {
  box-shadow: var(--pp-shadow-hover);
  transform: translateY(-2px);
}

.blog-card__img-wrap {
  overflow: hidden;
}

.blog-card .card-img-top,
.blog-card__img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-card__date {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.blog-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card__title a {
  color: var(--pp-text);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--pp-teal);
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--pp-text-muted);
  margin-bottom: 0;
  flex-grow: 1;
}

.single-post__img-wrap {
  overflow: hidden;
  max-height: 400px;
}

.single-post__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.single-post__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pp-text);
  margin-bottom: 0.5rem;
}

.single-post__meta {
  font-size: 0.9rem;
}

.single-post__content {
  line-height: 1.75;
  color: var(--pp-text);
}

.single-post__content img {
  max-width: 100%;
  height: auto;
}

/* ========== FAQ ========== */
.faqaccordion {
  background: var(--pp-card);
  color: var(--pp-text);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: var(--pp-radius);
  font-weight: 600;
  padding: 1rem 1.25rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.faqaccordion:hover,
.faqaccordion.active {
  background: var(--pp-gradient);
  color: #fff;
  border-color: transparent;
}

.faqpanel {
  border: 1px solid rgba(13, 148, 136, 0.15);
  border-top: none;
  border-radius: 0 0 var(--pp-radius) var(--pp-radius);
  background: var(--pp-gradient-soft);
  padding: 1rem 1.25rem;
  color: var(--pp-text);
  line-height: 1.6;
}

.package-title {
  color: var(--pp-text);
  font-weight: 700;
}

.title_line {
  background: var(--pp-gradient);
  height: 4px;
  width: 80px;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Pagination */
.pagination .page-link {
  border-radius: var(--pp-radius);
  margin: 0 2px;
  color: var(--pp-teal);
  font-weight: 500;
}

.pagination .page-item.active .page-link {
  background: var(--pp-gradient);
  border-color: transparent;
}

.pagination .page-link:hover {
  background: var(--pp-gradient-soft);
  color: var(--pp-teal);
  border-color: transparent;
}

/* ========== Footer ========== */
.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer__heading {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.site-footer__text {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

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

.site-footer__links li {
  margin-bottom: 0.5rem;
}

.site-footer__links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--pp-teal-light);
}

.site-footer__social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-footer__social img {
  width: 28px;
  height: 28px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.site-footer__social a:hover img {
  opacity: 1;
}

.site-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ========== Shared: Login, Register, Cards ========== */
.card.loginFromClass,
.loginFromClass {
  border: none;
  border-radius: var(--pp-radius-lg);
  box-shadow: var(--pp-shadow);
  overflow: hidden;
}

.loginFromClass .card-header {
  background: var(--pp-gradient-soft);
  color: var(--pp-text);
  font-weight: 600;
  font-size: 1.25rem;
  padding: 1.25rem;
}

.loginFromClass .card-body {
  padding: 1.5rem 2rem;
}

.loginFromClass .form-control,
.loginform input[type="email"],
.loginform input[type="password"] {
  border-radius: var(--pp-radius);
  border: 1px solid #e2e8f0;
  padding: 0.65rem 1rem;
  font-family: var(--pp-font);
}

.loginFromClass .form-control:focus,
.loginform input:focus {
  border-color: var(--pp-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

/* ========== Buttons: classic solid backgrounds site-wide ========== */
.btn-pp,
.btn-primary,
.btn-success,
#confirmBtn,
.confirmbtn input,
.btnLogin {
  background: var(--pp-teal) !important;
  border: 2px solid var(--pp-teal) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: var(--pp-radius);
  padding: 0.65rem 1.5rem;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-pp:hover,
.btn-primary:hover,
.btn-success:hover,
#confirmBtn:hover,
.btnLogin:hover {
  background: var(--pp-teal-dark) !important;
  border-color: var(--pp-teal-dark) !important;
  color: #fff !important;
  box-shadow: var(--pp-shadow);
}

.btn-pp.btn-sm,
.btn-primary.btn-sm,
.btn-success.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
}

.btn-pp-outline {
  background: var(--pp-teal-bg) !important;
  color: var(--pp-teal) !important;
  border: 2px solid var(--pp-teal) !important;
  font-weight: 600;
  border-radius: var(--pp-radius);
  padding: 0.5rem 1.25rem;
}

.btn-pp-outline:hover {
  background: var(--pp-teal) !important;
  color: #fff !important;
  border-color: var(--pp-teal) !important;
}

.btn-pp-outline.btn-sm {
  padding: 0.35rem 0.9rem;
  font-size: 0.875rem;
}

.btn-warning {
  background: #eab308 !important;
  border: none !important;
  color: #1e293b !important;
  font-weight: 600;
  border-radius: var(--pp-radius);
}

.btn-warning:hover {
  background: #ca8a04 !important;
  color: #1e293b !important;
}

.btn-link {
  background: none !important;
  border: none !important;
  color: var(--pp-teal) !important;
  font-weight: 500;
  text-decoration: underline;
  padding: 0;
}

.btn-link:hover {
  color: var(--pp-blue) !important;
}

.forgotpassword .card-header,
.card.forgotpassword {
  border-radius: var(--pp-radius-lg);
  box-shadow: var(--pp-shadow);
  border: none;
}

/* Form inputs site-wide */
input[type="text"],
input[type="email"],
input[type="password"],
input.form-control {
  border-radius: var(--pp-radius);
  border: 1px solid #e2e8f0;
  padding: 0.65rem 1rem;
  font-family: var(--pp-font);
  background: var(--pp-card);
  color: var(--pp-text);
}

input:focus,
input.form-control:focus {
  border-color: var(--pp-teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

/* Surveys / Redeem / My Account cards */
.card.shadow-sm,
.card {
  border-radius: var(--pp-radius-lg);
  border: none;
  box-shadow: var(--pp-shadow);
}

.card-header {
  background: var(--pp-gradient-soft);
  font-weight: 600;
  color: var(--pp-text);
  border-radius: var(--pp-radius-lg) var(--pp-radius-lg) 0 0;
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

/* .btn-primary already in block above */

.text-success {
  color: var(--pp-teal) !important;
}

.text-primary {
  color: var(--pp-blue) !important;
}

/* Legacy nav compatibility (if any partial still uses old classes) */
.navbar-custom {
  background: var(--pp-card);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1rem;
}

.btn-outline-gradient,
.nav-btn-group .btn {
  background: var(--pp-teal-bg);
  border: 2px solid var(--pp-teal);
  color: var(--pp-teal);
  font-weight: 600;
  border-radius: var(--pp-radius);
  padding: 0.5rem 1.25rem;
}

.btn-outline-gradient:hover,
.nav-btn-group .btn:hover {
  background: var(--pp-teal);
  color: #fff;
  border-color: var(--pp-teal);
}

/* Base .btn: classic solid when no modifier (user-facing pages) */
.site-main .btn:not([class*="btn-pp"]):not([class*="btn-hero"]):not([class*="btn-cta"]):not(.btn-link):not(.btn-close) {
  background: var(--pp-teal) !important;
  border: 2px solid var(--pp-teal) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: var(--pp-radius);
  padding: 0.6rem 1.25rem;
}

.site-main .btn:not([class*="btn-pp"]):not([class*="btn-hero"]):not([class*="btn-cta"]):not(.btn-link):not(.btn-close):hover {
  background: var(--pp-teal-dark) !important;
  border-color: var(--pp-teal-dark) !important;
  color: #fff !important;
  box-shadow: var(--pp-shadow);
}

.earned-points {
  color: var(--pp-teal);
  font-weight: 700;
}

.redeem-btn {
  background: var(--pp-teal);
  color: #fff;
  font-weight: 600;
  border: 2px solid var(--pp-teal);
  border-radius: var(--pp-radius);
  padding: 0.65rem 1.5rem;
}

/* Blog list */
.section-title .fw-bold,
.blogList h2 {
  color: var(--pp-text);
  font-weight: 700;
}

.blogList .btn-primary,
a.btn.btn-sm.btn-primary {
  background: var(--pp-teal) !important;
  border: 2px solid var(--pp-teal);
  border-radius: var(--pp-radius);
  color: #fff !important;
}

/* Back to top */
.back-to-top {
  background: var(--pp-teal) !important;
  border: 2px solid var(--pp-teal);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.back-to-top:hover {
  opacity: 0.95;
  color: #fff;
}

/* Registration page */
.businessBanner_section {
  background: var(--pp-gradient-soft);
  padding: 2.5rem 0 1rem;
}

.regbanner_text h2 {
  color: var(--pp-text);
  font-family: var(--pp-font);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0;
}

.businessfirstfrm {
  background: var(--pp-card);
  padding: 2rem 1rem 3rem;
  border-radius: 0 0 var(--pp-radius-lg) var(--pp-radius-lg);
  box-shadow: var(--pp-shadow);
}
