/* ══════════════════════════════════════════════════════
   PRICING PAGE — Cinematic redesign
   v3.1 — Trust grid, !important overrides, bigger cards
   ══════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────── */

.prc-hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #06090f;
  padding: clamp(120px, 18vw, 200px) 24px clamp(80px, 10vw, 120px);
  text-align: center;
}

.prc-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  will-change: transform;
}
.prc-hero-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #007AFF 0%, transparent 70%);
  top: -180px; left: 50%;
  transform: translateX(-55%);
  animation: prc-orb-drift 18s ease-in-out infinite alternate;
}
.prc-hero-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #bf5af2 0%, transparent 70%);
  top: 80px; right: 4%;
  animation: prc-orb-drift 14s ease-in-out infinite alternate-reverse;
}
.prc-hero-orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #34C759 0%, transparent 70%);
  bottom: -60px; left: 8%;
  opacity: 0.08;
  animation: prc-orb-drift 22s ease-in-out infinite alternate;
}

@keyframes prc-orb-drift {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(30px) scale(1.04); }
}

.prc-hero-orb--1 { transform-origin: center; }

.prc-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.prc-hero-content {
  animation: prc-hero-fade 0.9s ease both;
}

@keyframes prc-hero-fade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.prc-hero-eyebrow {
  animation: prc-hero-fade 0.9s 0.1s ease both;
}

.prc-h1 {
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 18px 0 22px;
  color: #fff;
  animation: prc-hero-fade 0.9s 0.15s ease both;
}

.prc-hero-lead {
  animation: prc-hero-fade 0.9s 0.25s ease both;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats bar */
.prc-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 36px auto 0;
  max-width: 680px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 16px 40px;
  backdrop-filter: blur(16px);
  animation: prc-hero-fade 0.9s 0.35s ease both;
}

.prc-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  animation: prc-hero-fade 0.9s ease both;
}

.prc-hero-stat strong {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 60%, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.prc-hero-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.01em;
  line-height: 1;
}

.prc-hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 20px;
}

/* Audience nav */
.prc-audience-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  animation: prc-hero-fade 0.9s ease both;
}

.prc-aud-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid;
  backdrop-filter: blur(12px);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, opacity 0.2s;
}
.prc-aud-pill:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.prc-aud-pill--tenant {
  background: rgba(0,122,255,0.1);
  border-color: rgba(90,200,250,0.28);
  color: #5ac8fa;
}
.prc-aud-pill--owner {
  background: rgba(191,90,242,0.1);
  border-color: rgba(191,90,242,0.28);
  color: #bf5af2;
}
.prc-aud-pill--agency {
  background: rgba(255,149,0,0.1);
  border-color: rgba(255,149,0,0.28);
  color: #ff9500;
}

/* Scroll cue */
.prc-hero-scroll {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  animation: prc-hero-fade 1s 0.6s ease both;
}
.prc-scroll-dot {
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 13px;
  position: relative;
}
.prc-scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255,255,255,0.45);
  animation: prc-scroll-bounce 2s ease infinite;
}
@keyframes prc-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 0.2; }
}

/* ── Section shared ────────────────────────────────────── */

.prc-section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.prc-section--dark {
  background: #06090f;
}

.prc-section--panel {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ── Light section variants ─────────────────────────────── */

.prc-section--light {
  background: #f5f5f7;
}
.prc-section--light-purple {
  background: #faf9ff;
}

/* Dark text in light sections — !important to override global white defaults */
.prc-section--light .rd-h2,
.prc-section--light-purple .rd-h2 { color: #1d1d1f !important; }
.prc-section--light .rd-lead,
.prc-section--light-purple .rd-lead { color: rgba(29,29,31,0.65) !important; }
.prc-section--light .prc-how-title { color: #1d1d1f !important; }
.prc-section--light .prc-how-desc { color: rgba(29,29,31,0.55) !important; }
.prc-section--light .prc-always-card-title { color: #1d1d1f !important; }
.prc-section--light .prc-always-card-desc { color: rgba(29,29,31,0.5) !important; }
.prc-section--light .prc-how-num { color: rgba(0,122,255,0.7) !important; }
.prc-section--light-purple .prc-plan-price-num { color: #1d1d1f !important; }
.prc-section--light-purple .prc-plan-list li { color: rgba(29,29,31,0.6) !important; }
.prc-section--light-purple .prc-plan-price-cur { color: rgba(29,29,31,0.4) !important; }
.prc-section--light-purple .prc-plan-price-period { color: rgba(29,29,31,0.35) !important; }
.prc-section--light-purple .prc-plan-card .prc-plan-badge { color: rgba(29,29,31,0.5) !important; }
/* Icon backgrounds stay vibrant in light sections */
.prc-section--light .prc-aci--gray { color: rgba(29,29,31,0.4) !important; border-color: rgba(0,0,0,0.1) !important; background: rgba(0,0,0,0.04) !important; }
/* Owner benefit text */
.prc-section--light-purple .prc-owner-benefit strong { color: #1d1d1f !important; }
.prc-section--light-purple .prc-owner-benefit span { color: rgba(29,29,31,0.5) !important; }

.prc-section--light .rd-eyebrow,
.prc-section--light-purple .rd-eyebrow {
  color: inherit;
}

/* Cards in light sections */
.prc-section--light .prc-how-step,
.prc-section--light-purple .prc-plan-card,
.prc-section--light .prc-always-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.prc-section--light .prc-how-step:hover,
.prc-section--light-purple .prc-plan-card:hover,
.prc-section--light .prc-always-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.12);
}

/* How-section arrow in light */
.prc-section--light .prc-how-arrow {
  color: rgba(29,29,31,0.2);
}

/* Owner benefits bar in light-purple */
.prc-section--light-purple .prc-owner-benefits {
  background: rgba(191,90,242,0.05);
  border-color: rgba(191,90,242,0.12);
}
.prc-section--light-purple .prc-owner-benefit-sep {
  background: rgba(0,0,0,0.08);
}
.prc-section--light-purple .prc-plan-card .prc-plan-divider {
  background: rgba(0,0,0,0.07);
}
.prc-section--light-purple .prc-plan-card .prc-plan-badge {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
}
.prc-section--light-purple .prc-plan-card--popular {
  border-color: rgba(191,90,242,0.4);
  box-shadow: 0 8px 40px rgba(191,90,242,0.15);
}

/* Agency section dark — metric label text */
.prc-section--dark .prc-agency-metric-label {
  color: rgba(255,255,255,0.4);
}

/* Section divider */
.prc-section-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

/* ── Container widths — full-width redesign ─────────────── */

/* Global rd-container override for pricing page */
.pricing-page .rd-container {
  max-width: 1440px;
  width: 100%;
  padding-left: clamp(16px, 4vw, 80px);
  padding-right: clamp(16px, 4vw, 80px);
  margin: 0 auto;
  box-sizing: border-box;
}

/* Remove max-width constraints on card grids */
.prc-cards-grid {
  display: grid;
  gap: 20px;
  width: 100%;
}
.prc-cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

/* Always-cards: full width, no max-width */
.prc-always-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

/* How flow: full width */
.prc-how-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: space-between;
  width: 100%;
}

.prc-how-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 20px;
  flex: 1;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.prc-how-step:hover {
  border-color: rgba(0,122,255,0.2);
  transform: translateY(-4px);
}

.prc-how-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(0,122,255,0.5);
  margin-bottom: 16px;
}

.prc-how-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,122,255,0.08);
  border: 1px solid rgba(0,122,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #5ac8fa;
}

.prc-how-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.prc-how-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

.prc-how-arrow {
  color: rgba(255,255,255,0.15);
  font-size: 1.4rem;
  padding: 60px 12px 0;
  flex-shrink: 0;
  align-self: flex-start;
}

/* ── Section header ─────────────────────────────────────── */

.prc-section-header {
  margin-bottom: 56px;
}

.prc-eyebrow--tenant {
  background: rgba(0,122,255,0.08) !important;
  color: #5ac8fa !important;
  border-color: rgba(90,200,250,0.22) !important;
}
.prc-eyebrow--owner {
  background: rgba(191,90,242,0.08) !important;
  color: #bf5af2 !important;
  border-color: rgba(191,90,242,0.22) !important;
}
.prc-eyebrow--agency {
  background: rgba(255,149,0,0.08) !important;
  color: #ff9500 !important;
  border-color: rgba(255,149,0,0.22) !important;
}

/* ── Tenant layout + visual (§1) ─────────────────────────── */

.prc-tenant-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.prc-tenant-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 44px 48px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset,
              0 32px 64px rgba(0,0,0,0.4);
  animation: prc-tenant-glow 4s ease-in-out infinite alternate;
}

@keyframes prc-tenant-glow {
  from { border-color: rgba(255,255,255,0.08); box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 32px 64px rgba(0,0,0,0.4), 0 0 40px rgba(0,122,255,0.04); }
  to   { border-color: rgba(90,200,250,0.18);  box-shadow: 0 0 0 1px rgba(90,200,250,0.06) inset, 0 32px 64px rgba(0,0,0,0.4), 0 0 60px rgba(0,122,255,0.10); }
}

.prc-tenant-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007AFF, #5ac8fa, #007AFF);
  background-size: 200% auto;
  animation: ai-shimmer 4s linear infinite;
}

@keyframes ai-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.prc-tenant-fee-wrap {
  text-align: center;
  margin: 20px 0 8px;
}

.prc-tenant-fee {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.prc-fee-num {
  font-size: clamp(4.5rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #5ac8fa 20%, #007AFF 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.prc-fee-unit {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: rgba(90,200,250,0.6);
  padding-top: 0.55em;
}

.prc-tenant-fee-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  letter-spacing: 0.01em;
}

.prc-tenant-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 32px 0 28px;
}

/* Check list */
.prc-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prc-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.prc-check-list li strong {
  color: rgba(255,255,255,0.92);
}

.prc-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.prc-check-icon--blue {
  background: rgba(0,122,255,0.15);
  color: #5ac8fa;
  border: 1px solid rgba(90,200,250,0.2);
}

.prc-cta-btn {
  width: 100%;
  justify-content: center;
}

.prc-tenant-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  text-align: left;
  padding: 0 4px;
}

/* Tenant visual / dossier mock */
.prc-tenant-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prc-dossier-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(0,122,255,0.08);
  width: 100%;
  max-width: 320px;
}

.prc-mock-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.prc-mock-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007AFF, #5ac8fa);
  flex-shrink: 0;
}

.prc-mock-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.prc-mock-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.prc-mock-score {
  margin-left: auto;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #34C759, #5ac8fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.prc-mock-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 18px;
}

.prc-mock-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.prc-mock-chip {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 8px;
  width: fit-content;
}

.prc-mock-chip--ok {
  background: rgba(52,199,89,0.1);
  border: 1px solid rgba(52,199,89,0.2);
  color: #34C759;
}

.prc-mock-fee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0,122,255,0.08);
  border: 1px solid rgba(0,122,255,0.15);
  border-radius: 10px;
}

.prc-mock-fee-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.prc-mock-fee-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #5ac8fa;
}

/* ── Owner benefits bar (§2) ────────────────────────────── */

.prc-owner-benefits {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 48px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.prc-owner-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.prc-owner-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(191,90,242,0.1);
  border: 1px solid rgba(191,90,242,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bf5af2;
  flex-shrink: 0;
}

.prc-owner-benefit strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.prc-owner-benefit span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

.prc-owner-benefit-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.07);
  margin: 0 24px;
  flex-shrink: 0;
}

/* ── Agency metrics row (§3) — full-bleed ──────────────── */

.prc-agency-metrics-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 48px;
}

.prc-agency-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-top: 1px solid rgba(255,149,0,0.1);
  border-bottom: 1px solid rgba(255,149,0,0.1);
}

.prc-agency-metric {
  text-align: center;
  padding: 40px 16px;
  background: rgba(255,149,0,0.04);
  border-right: 1px solid rgba(255,149,0,0.08);
}

.prc-agency-metric:last-child {
  border-right: none;
}

.prc-agency-metric-num {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ff9500, #ffd60a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}

.prc-agency-metric-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* ── Plans grid ──────────────────────────────────────────── */

@media (max-width: 1100px) {
  .prc-cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .prc-cards-grid--4 { grid-template-columns: 1fr; }
}

.prc-plan-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.prc-plan-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

/* Popular highlight (dark default) */
.prc-plan-card--popular {
  border-color: rgba(0,122,255,0.35);
  box-shadow: 0 0 40px rgba(0,122,255,0.12);
}
.prc-plan-card--popular:hover {
  border-color: rgba(0,122,255,0.55);
  box-shadow: 0 0 56px rgba(0,122,255,0.18), 0 20px 48px rgba(0,0,0,0.35);
}

.prc-plan-popular-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #007AFF, #5ac8fa);
}

/* For owner section (light-purple), the popular bar uses purple */
.prc-section--light-purple .prc-plan-card--popular .prc-plan-popular-bar {
  background: linear-gradient(90deg, #bf5af2, #d08af7);
}

.prc-plan-popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #007AFF, #5ac8fa);
  color: #fff;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.prc-section--light-purple .prc-plan-card--popular .prc-plan-popular-tag {
  background: linear-gradient(135deg, #bf5af2, #d08af7);
}

.prc-plan-header {
  margin-bottom: 4px;
}

.prc-plan-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 14px;
}
.prc-plan-badge--base {
  background: rgba(90,200,250,0.08);
  color: #5ac8fa;
  border-color: rgba(90,200,250,0.2);
}
.prc-plan-badge--pro {
  background: rgba(0,122,255,0.1);
  color: #007AFF;
  border-color: rgba(0,122,255,0.25);
}
.prc-plan-badge--plus {
  background: rgba(191,90,242,0.1);
  color: #bf5af2;
  border-color: rgba(191,90,242,0.25);
}

/* Keep badge colors in light-purple section */
.prc-section--light-purple .prc-plan-card .prc-plan-badge--base {
  background: rgba(90,200,250,0.1);
  color: #007AFF;
  border-color: rgba(90,200,250,0.25);
}
.prc-section--light-purple .prc-plan-card .prc-plan-badge--pro {
  background: rgba(0,122,255,0.08);
  color: #007AFF;
  border-color: rgba(0,122,255,0.2);
}
.prc-section--light-purple .prc-plan-card .prc-plan-badge--plus {
  background: rgba(191,90,242,0.08);
  color: #bf5af2;
  border-color: rgba(191,90,242,0.2);
}

.prc-plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
  margin: 8px 0 2px;
}
.prc-plan-price-num {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}
.prc-plan-price-cur {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  padding-top: 0.5em;
}
.prc-plan-price-period {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}

.prc-plan-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 14px 0 18px;
}

.prc-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.prc-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.45;
}

.prc-plan-check {
  color: rgba(255,255,255,0.28);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.prc-plan-check--base { color: #5ac8fa; }
.prc-plan-check--pro  { color: #007AFF; }
.prc-plan-check--plus { color: #bf5af2; }

.prc-plan-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  margin-top: auto;
}

.prc-plan-btn--plus {
  background: linear-gradient(135deg, rgba(191,90,242,0.12), rgba(255,159,10,0.08));
  border-color: rgba(191,90,242,0.28);
  color: #bf5af2;
}
.prc-plan-btn--plus:hover {
  border-color: rgba(191,90,242,0.5);
  color: #d08af7;
}

/* ── Always-included cards (§4) ─────────────────────────── */

.prc-always-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.prc-always-card:hover {
  border-color: rgba(255,255,255,0.13);
  transform: translateY(-3px);
}

.prc-always-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.prc-aci--blue {
  background: rgba(0,122,255,0.1);
  border: 1px solid rgba(0,122,255,0.18);
  color: #5ac8fa;
}
.prc-aci--teal {
  background: rgba(90,200,250,0.1);
  border: 1px solid rgba(90,200,250,0.18);
  color: #5ac8fa;
}
.prc-aci--green {
  background: rgba(52,199,89,0.1);
  border: 1px solid rgba(52,199,89,0.18);
  color: #34C759;
}
.prc-aci--purple {
  background: rgba(191,90,242,0.1);
  border: 1px solid rgba(191,90,242,0.18);
  color: #bf5af2;
}
.prc-aci--gold {
  background: rgba(255,214,10,0.1);
  border: 1px solid rgba(255,214,10,0.18);
  color: #ffd60a;
}
.prc-aci--gray {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}

.prc-always-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 0;
}

.prc-always-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}

/* ── Trust grid (§5) — redesigned ──────────────────────── */

.prc-trust-section {
  /* inherits prc-section prc-section--dark */
}

.prc-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.prc-trust-col {
  padding: 48px 40px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
}
.prc-trust-col:hover { background: rgba(255,255,255,0.05); }
.prc-trust-col--accent {
  background: rgba(255,255,255,0.05);
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.prc-trust-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.prc-trust-icon--green { background: rgba(52,199,89,0.1); border: 1px solid rgba(52,199,89,0.2); color: #34C759; }
.prc-trust-icon--blue  { background: rgba(0,122,255,0.1); border: 1px solid rgba(0,122,255,0.2); color: #5ac8fa; }
.prc-trust-icon--purple{ background: rgba(191,90,242,0.1); border: 1px solid rgba(191,90,242,0.2); color: #bf5af2; }
.prc-trust-stat {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.prc-trust-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.prc-trust-col-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 960px) {
  .prc-tenant-layout {
    grid-template-columns: 1fr;
  }
  .prc-tenant-visual {
    display: none;
  }
  .prc-tenant-wrap {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .prc-how-flow {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .prc-how-arrow {
    display: none;
  }
  .prc-how-step {
    flex: 0 0 auto;
    width: calc(50% - 8px);
  }
}

@media (max-width: 768px) {
  .prc-tenant-card {
    padding: 32px 28px 28px;
  }
  .prc-section-header {
    margin-bottom: 40px;
  }
  .prc-owner-benefits {
    flex-direction: column;
    gap: 20px;
    padding: 20px 24px;
  }
  .prc-owner-benefit-sep {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .prc-agency-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .prc-agency-metric {
    border-right: none;
    border-bottom: 1px solid rgba(255,149,0,0.08);
  }
  .prc-agency-metric:nth-child(2n) {
    border-left: 1px solid rgba(255,149,0,0.08);
  }
  .prc-agency-metric:nth-child(3),
  .prc-agency-metric:nth-child(4) {
    border-bottom: none;
  }
  .prc-hero-stats {
    flex-direction: column;
    gap: 12px;
    border-radius: 16px;
    padding: 16px 20px;
    max-width: 280px;
  }
  .prc-hero-stat-sep {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .prc-agency-metrics-wrapper {
    margin-bottom: 36px;
  }
}

@media (max-width: 768px) {
  .prc-trust-grid { grid-template-columns: 1fr; }
  .prc-trust-col--accent { border: none; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .prc-trust-col { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .prc-always-cards {
    grid-template-columns: 1fr;
  }
  .prc-audience-nav {
    flex-direction: column;
    gap: 8px;
  }
  .prc-how-step {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .prc-tenant-card {
    padding: 28px 20px 24px;
  }
}

/* ── Hero ──────────────────────────────────────────────── */

.prc-hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #06090f;
  padding: clamp(120px, 18vw, 200px) 24px clamp(80px, 10vw, 120px);
  text-align: center;
}

.prc-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  will-change: transform;
}
.prc-hero-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #007AFF 0%, transparent 70%);
  top: -180px; left: 50%;
  transform: translateX(-55%);
  animation: prc-orb-drift 18s ease-in-out infinite alternate;
}
.prc-hero-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #bf5af2 0%, transparent 70%);
  top: 80px; right: 4%;
  animation: prc-orb-drift 14s ease-in-out infinite alternate-reverse;
}

@keyframes prc-orb-drift {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(30px) scale(1.04); }
}

.prc-hero-orb--1 { transform-origin: center; }

.prc-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.prc-hero-content {
  animation: prc-hero-fade 0.9s ease both;
}

@keyframes prc-hero-fade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.prc-hero-eyebrow {
  animation: prc-hero-fade 0.9s 0.1s ease both;
}

.prc-h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 18px 0 22px;
  color: #fff;
  animation: prc-hero-fade 0.9s 0.15s ease both;
}

.prc-hero-lead {
  animation: prc-hero-fade 0.9s 0.25s ease both;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats bar */
.prc-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 36px auto 0;
  max-width: 480px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 12px 24px;
  backdrop-filter: blur(16px);
  animation: prc-hero-fade 0.9s 0.35s ease both;
}

.prc-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  animation: prc-hero-fade 0.9s ease both;
}

.prc-hero-stat strong {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 60%, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.prc-hero-stat span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.01em;
  line-height: 1;
}

.prc-hero-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 12px;
}

/* Audience nav */
.prc-audience-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  animation: prc-hero-fade 0.9s ease both;
}

.prc-aud-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid;
  backdrop-filter: blur(12px);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, opacity 0.2s;
}
.prc-aud-pill:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.prc-aud-pill--tenant {
  background: rgba(0,122,255,0.1);
  border-color: rgba(90,200,250,0.28);
  color: #5ac8fa;
}
.prc-aud-pill--owner {
  background: rgba(191,90,242,0.1);
  border-color: rgba(191,90,242,0.28);
  color: #bf5af2;
}
.prc-aud-pill--agency {
  background: rgba(255,149,0,0.1);
  border-color: rgba(255,149,0,0.28);
  color: #ff9500;
}

/* Scroll cue */
.prc-hero-scroll {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  animation: prc-hero-fade 1s 0.6s ease both;
}
.prc-scroll-dot {
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 13px;
  position: relative;
}
.prc-scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255,255,255,0.45);
  animation: prc-scroll-bounce 2s ease infinite;
}
@keyframes prc-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 0.2; }
}

/* ── Section shared ────────────────────────────────────── */

.prc-section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.prc-section--dark {
  background: #06090f;
}

.prc-section--panel {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.prc-section-header {
  margin-bottom: 56px;
}

.prc-eyebrow--tenant {
  background: rgba(0,122,255,0.08) !important;
  color: #5ac8fa !important;
  border-color: rgba(90,200,250,0.22) !important;
}
.prc-eyebrow--owner {
  background: rgba(191,90,242,0.08) !important;
  color: #bf5af2 !important;
  border-color: rgba(191,90,242,0.22) !important;
}
.prc-eyebrow--agency {
  background: rgba(255,149,0,0.08) !important;
  color: #ff9500 !important;
  border-color: rgba(255,149,0,0.22) !important;
}

/* ── How it works flow (§0) ─────────────────────────────── */

.prc-how-section {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.prc-how-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.prc-how-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 20px;
  flex: 1;
  max-width: 220px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.prc-how-step:hover {
  border-color: rgba(0,122,255,0.2);
  transform: translateY(-4px);
}

.prc-how-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(0,122,255,0.5);
  margin-bottom: 16px;
}

.prc-how-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,122,255,0.08);
  border: 1px solid rgba(0,122,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #5ac8fa;
}

.prc-how-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.prc-how-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

.prc-how-arrow {
  color: rgba(255,255,255,0.15);
  font-size: 1.4rem;
  padding: 60px 8px 0;
  flex-shrink: 0;
  align-self: flex-start;
}

/* ── Tenant layout + visual (§1) ─────────────────────────── */

.prc-tenant-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.prc-tenant-wrap {
  /* inherits from layout */
}

.prc-tenant-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 44px 48px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset,
              0 32px 64px rgba(0,0,0,0.4);
  animation: prc-tenant-glow 4s ease-in-out infinite alternate;
}

@keyframes prc-tenant-glow {
  from { border-color: rgba(255,255,255,0.08); box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 32px 64px rgba(0,0,0,0.4), 0 0 40px rgba(0,122,255,0.04); }
  to   { border-color: rgba(90,200,250,0.18);  box-shadow: 0 0 0 1px rgba(90,200,250,0.06) inset, 0 32px 64px rgba(0,0,0,0.4), 0 0 60px rgba(0,122,255,0.10); }
}

.prc-tenant-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007AFF, #5ac8fa, #007AFF);
  background-size: 200% auto;
  animation: ai-shimmer 4s linear infinite;
}

@keyframes ai-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.prc-tenant-fee-wrap {
  text-align: center;
  margin: 20px 0 8px;
}

.prc-tenant-fee {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.prc-fee-num {
  font-size: clamp(4.5rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #5ac8fa 20%, #007AFF 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.prc-fee-unit {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: rgba(90,200,250,0.6);
  padding-top: 0.55em;
}

.prc-tenant-fee-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  letter-spacing: 0.01em;
}

.prc-tenant-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 32px 0 28px;
}

/* Check list */
.prc-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prc-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.prc-check-list li strong {
  color: rgba(255,255,255,0.92);
}

.prc-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.prc-check-icon--blue {
  background: rgba(0,122,255,0.15);
  color: #5ac8fa;
  border: 1px solid rgba(90,200,250,0.2);
}

.prc-cta-btn {
  width: 100%;
  justify-content: center;
}

.prc-tenant-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  text-align: left;
  padding: 0 4px;
}

/* Tenant visual / dossier mock */
.prc-tenant-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prc-dossier-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(0,122,255,0.08);
  width: 100%;
  max-width: 320px;
}

.prc-mock-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.prc-mock-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007AFF, #5ac8fa);
  flex-shrink: 0;
}

.prc-mock-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.prc-mock-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.prc-mock-score {
  margin-left: auto;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #34C759, #5ac8fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.prc-mock-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 18px;
}

.prc-mock-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.prc-mock-chip {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 8px;
  width: fit-content;
}

.prc-mock-chip--ok {
  background: rgba(52,199,89,0.1);
  border: 1px solid rgba(52,199,89,0.2);
  color: #34C759;
}

.prc-mock-fee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0,122,255,0.08);
  border: 1px solid rgba(0,122,255,0.15);
  border-radius: 10px;
}

.prc-mock-fee-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.prc-mock-fee-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #5ac8fa;
}

/* ── Owner benefits bar (§2) ────────────────────────────── */

.prc-owner-benefits {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 48px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.prc-owner-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.prc-owner-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(191,90,242,0.1);
  border: 1px solid rgba(191,90,242,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bf5af2;
  flex-shrink: 0;
}

.prc-owner-benefit strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.prc-owner-benefit span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

.prc-owner-benefit-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.07);
  margin: 0 24px;
  flex-shrink: 0;
}

/* ── Agency metrics row (§3) ────────────────────────────── */

.prc-agency-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,149,0,0.1);
}

.prc-agency-metric {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,149,0,0.04);
  border-right: 1px solid rgba(255,149,0,0.08);
}

.prc-agency-metric:last-child {
  border-right: none;
}

.prc-agency-metric-num {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ff9500, #ffd60a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}

.prc-agency-metric-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* ── Plans grid ──────────────────────────────────────────── */

.prc-cards-grid {
  display: grid;
  gap: 20px;
}
.prc-cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

@media (max-width: 1100px) {
  .prc-cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .prc-cards-grid--4 { grid-template-columns: 1fr; }
}

.prc-plan-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.prc-plan-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

/* Popular highlight */
.prc-plan-card--popular {
  border-color: rgba(0,122,255,0.35);
  box-shadow: 0 0 40px rgba(0,122,255,0.12);
}
.prc-plan-card--popular:hover {
  border-color: rgba(0,122,255,0.55);
  box-shadow: 0 0 56px rgba(0,122,255,0.18), 0 20px 48px rgba(0,0,0,0.35);
}

.prc-plan-popular-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #007AFF, #5ac8fa);
}

.prc-plan-popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #007AFF, #5ac8fa);
  color: #fff;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.prc-plan-header {
  margin-bottom: 4px;
}

.prc-plan-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 14px;
}
.prc-plan-badge--base {
  background: rgba(90,200,250,0.08);
  color: #5ac8fa;
  border-color: rgba(90,200,250,0.2);
}
.prc-plan-badge--pro {
  background: rgba(0,122,255,0.1);
  color: #007AFF;
  border-color: rgba(0,122,255,0.25);
}
.prc-plan-badge--plus {
  background: rgba(191,90,242,0.1);
  color: #bf5af2;
  border-color: rgba(191,90,242,0.25);
}

.prc-plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
  margin: 8px 0 2px;
}
.prc-plan-price-num {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}
.prc-plan-price-cur {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  padding-top: 0.5em;
}
.prc-plan-price-period {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}

.prc-plan-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 14px 0 18px;
}

.prc-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.prc-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.45;
}

.prc-plan-check {
  color: rgba(255,255,255,0.28);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.prc-plan-check--base { color: #5ac8fa; }
.prc-plan-check--pro  { color: #007AFF; }
.prc-plan-check--plus { color: #bf5af2; }

.prc-plan-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  margin-top: auto;
}

.prc-plan-btn--plus {
  background: linear-gradient(135deg, rgba(191,90,242,0.12), rgba(255,159,10,0.08));
  border-color: rgba(191,90,242,0.28);
  color: #bf5af2;
}
.prc-plan-btn--plus:hover {
  border-color: rgba(191,90,242,0.5);
  color: #d08af7;
}

/* ── Always-included cards (§4) ─────────────────────────── */

.prc-always-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.prc-always-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.prc-always-card:hover {
  border-color: rgba(255,255,255,0.13);
  transform: translateY(-3px);
}

.prc-always-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.prc-aci--blue {
  background: rgba(0,122,255,0.1);
  border: 1px solid rgba(0,122,255,0.18);
  color: #5ac8fa;
}
.prc-aci--teal {
  background: rgba(90,200,250,0.1);
  border: 1px solid rgba(90,200,250,0.18);
  color: #5ac8fa;
}
.prc-aci--green {
  background: rgba(52,199,89,0.1);
  border: 1px solid rgba(52,199,89,0.18);
  color: #34C759;
}
.prc-aci--purple {
  background: rgba(191,90,242,0.1);
  border: 1px solid rgba(191,90,242,0.18);
  color: #bf5af2;
}
.prc-aci--gold {
  background: rgba(255,214,10,0.1);
  border: 1px solid rgba(255,214,10,0.18);
  color: #ffd60a;
}
.prc-aci--gray {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}

.prc-always-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 0;
}

.prc-always-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}

/* ── Trust grid (§5) — inherits from first block ─────────── */

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 960px) {
  .prc-tenant-layout {
    grid-template-columns: 1fr;
  }
  .prc-tenant-visual {
    display: none;
  }
  .prc-tenant-wrap {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .prc-how-flow {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .prc-how-arrow {
    display: none;
  }
  .prc-how-step {
    max-width: 200px;
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .prc-tenant-card {
    padding: 32px 28px 28px;
  }
  .prc-section-header {
    margin-bottom: 40px;
  }
  .prc-owner-benefits {
    flex-direction: column;
    gap: 20px;
    padding: 20px 24px;
  }
  .prc-owner-benefit-sep {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .prc-agency-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .prc-agency-metric {
    border-right: none;
    border-bottom: 1px solid rgba(255,149,0,0.08);
  }
  .prc-agency-metric:nth-child(2n) {
    border-left: 1px solid rgba(255,149,0,0.08);
  }
  .prc-agency-metric:nth-child(3),
  .prc-agency-metric:nth-child(4) {
    border-bottom: none;
  }
  .prc-hero-stats {
    flex-direction: column;
    gap: 12px;
    border-radius: 16px;
    padding: 16px 20px;
    max-width: 240px;
  }
  .prc-hero-stat-sep {
    width: 100%;
    height: 1px;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .prc-always-cards {
    grid-template-columns: 1fr;
  }
  .prc-audience-nav {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .prc-tenant-card {
    padding: 28px 20px 24px;
  }
}
