@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

.prp-landing {
  --gold: #DEC178;
  --gold-light: #EAD9A8;
  --gold-dark: #967743;
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(222, 197, 120, 0.78);
  --bg: #0a0a0a;
  --card: #141414;
  --card-inner: rgba(10, 10, 10, 0.5);
  --border: rgba(150, 119, 67, 0.35);
  --border-gold: rgba(222, 197, 120, 0.32);
  --radius: 14px;
  --max: 1400px;
  --wide: 1200px;
  --narrow: 920px;
  font-family: Montserrat, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.prp-landing *,
.prp-landing *::before,
.prp-landing *::after {
  box-sizing: border-box;
}

.prp-container {
  width: min(100%, var(--max));
  margin: 0 auto;
}

/* Animations */
.prp-landing .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.prp-landing.is-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.prp-landing .hero-content .reveal:nth-child(1) { --reveal-delay: 0ms; }
.prp-landing .hero-content .reveal:nth-child(2) { --reveal-delay: 60ms; }
.prp-landing .hero-content .reveal:nth-child(3) { --reveal-delay: 120ms; }
.prp-landing .hero-content .reveal:nth-child(4) { --reveal-delay: 180ms; }
.prp-landing .hero-content .reveal:nth-child(5) { --reveal-delay: 260ms; }
.prp-landing .hero-content .reveal:nth-child(6) { --reveal-delay: 340ms; }

@media (prefers-reduced-motion: reduce) {
  .prp-landing .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.prp-landing .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.prp-landing .icon svg { width: 1.15rem; height: 1.15rem; }
.prp-landing .icon-sm svg { width: 1rem; height: 1rem; }
.prp-landing .icon-xs svg { width: 0.8rem; height: 0.8rem; }

.prp-landing .icon-wa { color: #ffffff; }
.prp-landing .icon-wa svg,
.prp-landing .icon-wa .wa-logo { width: 1.1rem; height: 1.1rem; }

.prp-landing h1, .prp-landing h2, .prp-landing h3,
.prp-landing h4, .prp-landing p, .prp-landing ul, .prp-landing ol {
  margin: 0;
}

.prp-landing ul, .prp-landing ol { list-style: none; padding: 0; }

/* Titles gold, body white */
.prp-landing h1, .prp-landing h2, .prp-landing h3,
.prp-landing .section-title, .prp-landing .session-group-title,
.prp-landing .plan-header h3, .prp-landing .loose-card h3,
.prp-landing .price-summary h3, .prp-landing .hero-trio-item strong,
.prp-landing .step-title, .prp-landing .member-extras-label,
.prp-landing .plan-includes-label, .prp-landing .plans-badge {
  color: var(--gold-light);
}

.prp-landing p, .prp-landing li, .prp-landing span,
.prp-landing .section-lead, .prp-landing .step-desc,
.prp-landing .plan-subtitle, .prp-landing .session-info p,
.prp-landing .price-label, .prp-landing .price-year,
.prp-landing .plan-treatment-freq, .prp-landing .hero-trio-item span {
  color: var(--text-dim);
}

/* Hero */
.prp-landing .hero {
  position: relative;
  min-height: clamp(520px, 72vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3rem 1.5rem;
}

.prp-landing .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.03);
}

.prp-landing .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.82) 45%,
    rgba(10, 10, 10, 0.94) 100%
  );
}

.prp-landing .hero-content {
  position: relative;
  z-index: 1;
  max-width: min(56rem, 100%);
  text-align: center;
  overflow: visible;
}

.prp-landing .hero h1 {
  font-size: clamp(2.25rem, 7vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.05;
  background: linear-gradient(135deg, #DEC178, #967743);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.prp-landing .hero-divider {
  width: min(14rem, 50%);
  height: 2px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #DEC178, #967743);
}

.prp-landing .hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.prp-landing .hero-trio {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto 2rem;
}

.prp-landing .hero-trio-item {
  flex: 1 1 0;
  min-width: 0;
  padding: 1.25rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(20, 20, 20, 0.82);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prp-landing .hero-trio-item strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.15;
}

.prp-landing .hero-trio-item span {
  font-size: 0.78rem;
  line-height: 1.35;
}

.prp-landing .hero-trio-plus strong {
  font-size: 1.6rem;
}

/* Sections */
.prp-landing .section {
  padding: 3rem 1.5rem;
}

.prp-landing .section-how {
  background: #141414;
}

.prp-landing .section-narrow {
  max-width: var(--narrow);
  margin: 0 auto;
}

.prp-landing .section-wide {
  max-width: var(--wide);
  margin: 0 auto;
}

/* Plans grid */
.prp-landing .plans-wrap {
  margin-bottom: 2rem;
  width: 100%;
}

.prp-landing .annual-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  width: 100%;
}

.prp-landing .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.prp-landing .section-lead {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.prp-landing .center { text-align: center; }

/* Steps */
.prp-landing .steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.prp-landing .step-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
}

.prp-landing .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(222, 197, 120, 0.2);
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.prp-landing .step-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.prp-landing .step-desc {
  font-size: 0.85rem;
  line-height: 1.5;
}

.prp-landing .member-extras {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  background: rgba(222, 197, 120, 0.05);
}

.prp-landing .member-extras-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.prp-landing .member-extras li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

/* Annual plans */
.prp-landing .plans-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(222, 197, 120, 0.1);
  border: 1px solid var(--border-gold);
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.prp-landing .section-plans {
  text-align: center;
}

.prp-landing .section-plans .section-title,
.prp-landing .section-plans .section-lead {
  display: block;
}

.prp-landing .annual-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  min-width: 0;
}

.prp-landing .annual-plan.plan-featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px -8px rgba(222, 197, 120, 0.4);
  background: linear-gradient(180deg, #141414, #0a0a0a);
}

.prp-landing .annual-plan.plan-featured .plan-header {
  padding-top: 2.25rem;
}

.prp-landing .plan-recommended {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, #DEC178, #967743);
  color: #0a0a0a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.prp-landing .plan-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.prp-landing .plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(222, 197, 120, 0.1);
  color: var(--gold);
  flex-shrink: 0;
}

.prp-landing .plan-icon svg { width: 1.25rem; height: 1.25rem; }

.prp-landing .plan-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.prp-landing .plan-subtitle {
  font-size: 0.78rem;
}

.prp-landing .plan-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.85rem 1.5rem 0;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(222, 197, 120, 0.1);
  border: 1px solid var(--border-gold);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

.prp-landing .plan-includes-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 1.35rem 1.5rem 0.85rem;
}

.prp-landing .plan-treatments {
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.prp-landing .plan-treatment {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: var(--card-inner);
}

.prp-landing .plan-treatment-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}

.prp-landing .plan-treatment-freq {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
}

.prp-landing .plan-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.15rem 1.5rem 0;
  padding: 0.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  background: rgba(222, 197, 120, 0.05);
  font-size: 0.9rem;
  margin-top: auto;
}

.prp-landing .plan-total strong {
  color: var(--gold-light);
}

.prp-landing .plan-pricing {
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.3);
  border-top: 1px solid var(--border);
}

.prp-landing .plan-price-block {
  margin-bottom: 1rem;
}

.prp-landing .plan-price-block:last-of-type {
  margin-bottom: 1.25rem;
}

.prp-landing .plan-price-normal {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(150, 119, 67, 0.3);
}

.prp-landing .price-label {
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.prp-landing .price-month {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-muted);
}

.prp-landing .price-month span {
  font-size: 0.9rem;
  font-weight: 400;
}

.prp-landing .price-month.price-gold {
  font-size: 1.75rem;
  color: var(--gold);
}

.prp-landing .price-year {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.prp-landing .plan-price-member {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  background: rgba(222, 197, 120, 0.05);
}

.prp-landing .plan-price-member .price-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.prp-landing .price-save {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.5rem;
}

.prp-landing .annual-plan .btn {
  margin: 0 1.5rem 1.5rem;
  width: calc(100% - 3rem);
  align-self: center;
}

/* Price summary */
.prp-landing .price-summary {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}

.prp-landing .price-summary h3 {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.prp-landing .price-table-head,
.prp-landing .price-table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.5rem;
  font-size: 0.82rem;
  padding: 0.5rem 0;
}

.prp-landing .price-table-head {
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.65rem;
  margin-bottom: 0.25rem;
}

.prp-landing .price-table-head span:nth-child(2),
.prp-landing .price-table-head span:nth-child(3),
.prp-landing .price-table-row span:nth-child(2),
.prp-landing .price-table-row span:nth-child(3) {
  text-align: center;
}

.prp-landing .price-table-row span:first-child {
  color: var(--gold-light);
  font-weight: 500;
}

.prp-landing .price-table-row span:nth-child(2) {
  color: var(--text-muted);
}

.prp-landing .price-table-row .gold {
  color: var(--gold);
  font-weight: 600;
}

.prp-landing .price-table-highlight {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

.prp-landing .price-table-highlight span:first-child {
  font-weight: 700;
}

/* Sessions */
.prp-landing .section-sessions {
  background: #141414;
}

.prp-landing .session-group {
  margin-bottom: 2rem;
}

.prp-landing .session-group-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.prp-landing .session-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.prp-landing .session-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
}

.prp-landing .session-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(222, 197, 120, 0.1);
  color: var(--gold);
  flex-shrink: 0;
}

.prp-landing .session-icon svg { width: 1.15rem; height: 1.15rem; }

.prp-landing .session-info {
  flex: 1;
  min-width: 0;
}

.prp-landing .session-info h4 {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.15rem;
}

.prp-landing .session-info p {
  font-size: 0.75rem;
}

.prp-landing .session-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.prp-landing .loose-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  margin-bottom: 2rem;
}

.prp-landing .loose-card h3 {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.prp-landing .loose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.prp-landing .loose-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  background: var(--card);
  font-size: 0.82rem;
}

.prp-landing .loose-item span {
  color: var(--gold-light);
}

.prp-landing .loose-item strong {
  color: var(--gold);
  font-weight: 600;
}

.prp-landing .cta-block {
  text-align: center;
}

.prp-landing .cta-block p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* Buttons */
.prp-landing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.prp-landing .btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.prp-landing .btn-gold {
  background: linear-gradient(135deg, #DEC178, #967743);
  color: #0a0a0a;
  box-shadow: 0 4px 20px -4px rgba(222, 197, 120, 0.35);
}

.prp-landing .btn-block { width: 100%; }

.prp-landing .btn-hero {
  font-size: 1rem;
  padding: 1rem 2rem;
}

/* Responsive */
@media (max-width: 899px) {
  .prp-landing .annual-plans {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
  }

  .prp-landing .hero {
    min-height: auto;
    padding: 2.6rem 1.25rem 2.15rem;
  }

  .prp-landing .hero-trio {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .prp-landing .hero-trio-item {
    padding: 0.95rem 0.85rem;
  }

  .prp-landing .hero-trio-item strong {
    font-size: 1.15rem;
  }

  .prp-landing .hero-trio-plus strong {
    font-size: 1.35rem;
  }
}

@media (max-width: 767px) {
  .prp-landing .hero {
    min-height: auto;
    padding: 2.75rem 1.15rem 2.35rem;
  }

  .prp-landing .hero-bg {
    transform: none;
  }

  .prp-landing .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
    letter-spacing: 0.02em;
    margin-bottom: 0.65rem;
  }

  .prp-landing .hero-divider {
    margin-bottom: 1.1rem;
  }

  .prp-landing .hero-tagline {
    flex-wrap: wrap;
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 1.4rem;
    gap: 0.35rem;
  }

  .prp-landing .hero-tagline .icon:last-child {
    display: none;
  }

  .prp-landing .hero-trio {
    flex-direction: column;
    max-width: none;
    width: 100%;
    gap: 0.65rem;
    margin-bottom: 1.65rem;
  }

  .prp-landing .hero-trio-item {
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.95rem 1rem;
  }

  .prp-landing .hero-trio-item strong {
    margin-bottom: 0;
    min-width: 0;
    text-align: center;
    font-size: 1.2rem;
  }

  .prp-landing .hero-trio-item span {
    text-align: center;
  }

  .prp-landing .hero-trio-plus {
    padding: 0.15rem;
    background: transparent;
    border: 0;
    min-height: 0;
  }

  .prp-landing .hero-trio-plus span {
    display: none;
  }

  .prp-landing .hero-trio-plus strong {
    min-width: 0;
    font-size: 1.35rem;
    line-height: 1;
  }

  .prp-landing .btn-hero {
    width: 100%;
    max-width: 22rem;
  }

  .prp-landing .section {
    padding: 2.25rem 1.15rem;
  }

  .prp-landing .section-title {
    font-size: 1.3rem;
  }

  .prp-landing .section-lead {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .prp-landing .annual-plans {
    max-width: none;
  }

  .prp-landing .plan-header {
    padding: 1.15rem 1rem 0.65rem;
  }

  .prp-landing .annual-plan.plan-featured .plan-header {
    padding-top: 2rem;
  }

  .prp-landing .plan-save-badge {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .prp-landing .plan-includes-label {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .prp-landing .plan-treatments {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .prp-landing .plan-total {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .prp-landing .plan-pricing {
    padding: 1rem;
  }

  .prp-landing .annual-plan .btn {
    margin-left: 1rem;
    margin-right: 1rem;
    width: calc(100% - 2rem);
  }

  .prp-landing .session-row {
    flex-wrap: wrap;
  }

  .prp-landing .session-price {
    width: 100%;
    text-align: right;
    margin-top: 0.25rem;
  }

  .prp-landing .loose-grid {
    grid-template-columns: 1fr;
  }

  .prp-landing .price-table-head,
  .prp-landing .price-table-row {
    grid-template-columns: 1.35fr 0.85fr 0.95fr;
    font-size: 0.72rem;
    gap: 0.35rem;
  }

  .prp-landing .section-sessions,
  .prp-landing .cta-block {
    padding-bottom: 5.25rem;
  }
}

@media (min-width: 1400px) {
  .prp-landing {
    --max: 1480px;
    --wide: 1280px;
    --narrow: 980px;
  }

  .prp-landing .annual-plans {
    gap: 1.75rem;
  }
}
