/* ══════════════════════════════════════════════════════
   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;
  }
}

/* ════════════════════════════════════════════════════════════════
   PRICING REDESIGN FIXES v2 — accessibility + visual polish
   Audit findings: contrasts, z-index, brand consistency, mobile
   ════════════════════════════════════════════════════════════════ */

/* 1) Popular-tag: z-index + spazio sopra header per non tagliare */
.prc-plan-popular-tag {
  z-index: 10 !important;
  top: -14px !important;
  padding: 5px 16px !important;
  box-shadow: 0 4px 14px rgba(0, 122, 255, 0.35) !important;
}
.prc-plan-card--popular {
  position: relative;
  padding-top: 14px !important;
  z-index: 2;
  border: 1px solid rgba(0, 122, 255, 0.32) !important;
  box-shadow: 0 14px 36px rgba(0, 122, 255, 0.18) !important;
}
.prc-section--light-purple .prc-plan-card--popular {
  border-color: rgba(191, 90, 242, 0.4) !important;
  box-shadow: 0 14px 36px rgba(191, 90, 242, 0.18) !important;
}

/* 2) Contrasts WCAG-AA fixes */
.prc-hero-stat span,
.prc-hero-stat-label {
  color: rgba(220, 230, 245, 0.78) !important;  /* was 0.35 → 0.78 (5.8:1) */
  font-size: 0.82rem !important;
  font-weight: 500 !important;
}
.prc-hero-stat strong {
  color: #f0f4ff !important;
  font-weight: 800 !important;
}
.prc-section--light .prc-always-card-desc {
  color: rgba(45, 55, 75, 0.78) !important;  /* was 0.5 → 0.78 (6.1:1 on #f5f5f7) */
}
.prc-section--light-purple .prc-plan-price-cur {
  color: rgba(45, 55, 75, 0.85) !important;  /* was 0.4 */
  font-weight: 600 !important;
}
.prc-cta-section,
.prc-cta-section h2,
.prc-cta-section .rd-h2 {
  color: #f0f4ff !important;
  font-weight: 700 !important;
}
.prc-cta-section p,
.prc-cta-section .rd-lead {
  color: rgba(200, 220, 245, 0.78) !important;
}

/* 3) How-section arrows più visibili */
.prc-section--light .prc-how-arrow,
.prc-how-arrow {
  opacity: 0.55 !important;
  color: rgba(0, 122, 255, 0.65) !important;
}

/* 4) Accent color unification: tutti i bottoni primary uguali */
.prc-section--light-purple .prc-plan-card--popular .prc-plan-cta,
.prc-section--dark .prc-plan-card--popular .prc-plan-cta {
  background: linear-gradient(135deg, #007AFF 0%, #5ac8fa 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 122, 255, 0.35);
}

/* 5) Link "Contacter l'équipe" — coerente con accent blu */
.prc-section--dark .prc-plan-cta--link,
.prc-plan-cta--ghost,
a.prc-plan-cta--text {
  color: #5ac8fa !important;
  background: rgba(0, 122, 255, 0.08) !important;
  border: 1px solid rgba(0, 122, 255, 0.32) !important;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.prc-section--dark .prc-plan-cta--link:hover,
.prc-plan-cta--ghost:hover {
  background: rgba(0, 122, 255, 0.18) !important;
  border-color: rgba(0, 122, 255, 0.55) !important;
  color: #8cf5d0 !important;
}

/* 6) Plan card hover migliorato (mint glow) */
.prc-plan-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}
.prc-plan-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25), 0 0 30px rgba(140, 245, 208, 0.08) !important;
}

/* 7) Section dividers più dolci tra sezioni dark/light */
.prc-section--dark { padding-top: 80px !important; padding-bottom: 96px !important; }
.prc-section--light, .prc-section--light-purple { padding-top: 80px !important; padding-bottom: 96px !important; }
.prc-section + .prc-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* 8) Mobile: popular-tag riserva spazio extra */
@media (max-width: 560px) {
  .prc-plan-card--popular { padding-top: 22px !important; }
  .prc-plan-popular-tag { font-size: 0.58rem !important; padding: 4px 12px !important; }
}

/* ════════════════════════════════════════════════════════════════
   PRICING — annulla section{height:100vh} ereditata da styles.css
   ════════════════════════════════════════════════════════════════ */
.pricing-page,
body.pricing-page {
  scroll-snap-type: none !important;
}
.pricing-page section,
.pricing-page .prc-hero,
.pricing-page .prc-section,
.pricing-page .rd-section,
.pricing-page .rd-cta-section {
  height: auto !important;
  min-height: 0 !important;
  display: block !important;
  scroll-snap-align: none !important;
  text-align: center;
}
/* La hero rimane centrata verticalmente con un min-height ragionevole */
.pricing-page .prc-hero {
  min-height: 78vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}
.pricing-page .prc-section--dark,
.pricing-page .prc-section--light,
.pricing-page .prc-section--light-purple {
  padding-top: 72px !important;
  padding-bottom: 80px !important;
}
.pricing-page .prc-trust-section {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}
.pricing-page .rd-cta-section {
  padding: 72px 24px !important;
}

/* ════════════════════════════════════════════════════════════════
   PRICING v3 — full viewport sections + visible hero badge
   ════════════════════════════════════════════════════════════════ */

/* Hero eyebrow badge ("Tarifs"/"Pricing") — was nearly invisible */
.pricing-page .prc-hero-eyebrow,
.pricing-page .rd-eyebrow {
  color: rgba(140, 245, 208, 0.95) !important;
  background: rgba(140, 245, 208, 0.10) !important;
  border: 1px solid rgba(140, 245, 208, 0.32) !important;
  padding: 5px 14px !important;
  border-radius: 999px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  margin-bottom: 18px !important;
}

/* Each major section = 1 viewport tall, content vertically centered */
.pricing-page .prc-hero,
.pricing-page .prc-how-section,
.pricing-page .prc-section--dark,
.pricing-page .prc-section--light,
.pricing-page .prc-section--light-purple,
.pricing-page .prc-trust-section,
.pricing-page .rd-cta-section {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding-top: 90px !important;       /* leaves room under fixed navbar */
  padding-bottom: 40px !important;
  box-sizing: border-box;
}
.pricing-page .prc-hero { padding-top: 110px !important; }
.pricing-page .rd-cta-section { min-height: 60vh !important; padding-top: 60px !important; }
.pricing-page .prc-trust-section { min-height: 70vh !important; }

/* Container width consistency */
.pricing-page .prc-hero-content,
.pricing-page .rd-section-inner,
.pricing-page .prc-how-inner,
.pricing-page .prc-trust-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* Plan cards: a touch more compact so 4 cards + header fit in 100vh */
.pricing-page .prc-plans-grid {
  gap: 16px !important;
}
.pricing-page .prc-plan-card {
  padding: 22px 18px !important;
}
.pricing-page .prc-plan-features {
  gap: 6px !important;
}
.pricing-page .prc-plan-feature {
  font-size: 0.84rem !important;
}
.pricing-page .prc-plan-price {
  margin: 10px 0 !important;
}
.pricing-page .rd-h2 {
  margin-bottom: 14px !important;
}
.pricing-page .rd-lead {
  margin-bottom: 28px !important;
}

/* Always-cards (3 chip row): more compact */
.pricing-page .prc-always-cards {
  gap: 14px !important;
}
.pricing-page .prc-always-card {
  padding: 14px 18px !important;
}

/* ════════════════════════════════════════════════════════════════
   PRICING v4 — hero richer + agency metrics centered + contrasts
   ════════════════════════════════════════════════════════════════ */

/* Agency metrics: rimuovi il break-out 100vw che si rompe con la
   sezione flex-centered. Diventa una normale grid 4-col centrata. */
.pricing-page .prc-agency-metrics-wrapper {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto 40px !important;
  left: auto !important;
  right: auto !important;
  position: static !important;
}
.pricing-page .prc-agency-metrics {
  border-radius: 16px !important;
  background: rgba(255, 149, 0, 0.04);
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr) !important;
}
.pricing-page .prc-agency-metric-label {
  color: rgba(255, 255, 255, 0.78) !important;   /* was 0.4 — WCAG fail */
  font-size: 0.82rem !important;
  font-weight: 500 !important;
}

/* Hero più imponente: titolo +20%, lead più spaziato, padding ridotto */
.pricing-page .prc-hero { padding-top: 90px !important; padding-bottom: 40px !important; }
.pricing-page .prc-h1 {
  font-size: clamp(2.6rem, 6vw, 5rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 22px !important;
}
.pricing-page .prc-hero-lead {
  font-size: clamp(1rem, 1.3vw, 1.2rem) !important;
  max-width: 580px;
  margin: 0 auto 36px !important;
  color: rgba(220, 230, 245, 0.82) !important;
}
.pricing-page .prc-hero-stats {
  margin-bottom: 28px;
}
.pricing-page .prc-audience-nav {
  margin-top: 8px;
  gap: 10px;
}
.pricing-page .prc-hero-scroll {
  margin-top: 60px;
}

/* Contrast sweep: tutti i testi grigio chiaro debole su dark → 0.78 */
.pricing-page .prc-section--dark .rd-eyebrow,
.pricing-page .prc-section--dark .prc-eyebrow--agency,
.pricing-page .prc-section--dark .prc-eyebrow--owner {
  color: #8cf5d0 !important;
  background: rgba(140, 245, 208, 0.10) !important;
  border-color: rgba(140, 245, 208, 0.32) !important;
}
.pricing-page .prc-section--dark .prc-eyebrow--owner {
  color: #d08af7 !important;
  background: rgba(208, 138, 247, 0.10) !important;
  border-color: rgba(208, 138, 247, 0.32) !important;
}
.pricing-page .prc-section--dark .prc-eyebrow--agency {
  color: #ffcf6b !important;
  background: rgba(255, 207, 107, 0.10) !important;
  border-color: rgba(255, 207, 107, 0.32) !important;
}
.pricing-page .prc-section--dark .rd-lead,
.pricing-page .prc-section--dark p,
.pricing-page .prc-section--dark .prc-plan-desc {
  color: rgba(220, 230, 245, 0.78) !important;
}

/* Trust section: anche light text bump */
.pricing-page .prc-trust-section .prc-trust-title { color: #f0f4ff !important; }
.pricing-page .prc-trust-section .prc-always-card-title { color: #f0f4ff !important; }
.pricing-page .prc-trust-section .prc-always-card-desc { color: rgba(220, 230, 245, 0.78) !important; }

/* Plan cards in dark sections: text contrast bump */
.pricing-page .prc-section--dark .prc-plan-name,
.pricing-page .prc-section--dark .prc-plan-price {
  color: #f0f4ff !important;
}
.pricing-page .prc-section--dark .prc-plan-feature,
.pricing-page .prc-section--dark .prc-plan-features li {
  color: rgba(220, 230, 245, 0.78) !important;
}
.pricing-page .prc-section--dark .prc-plan-period,
.pricing-page .prc-section--dark .prc-plan-price-period {
  color: rgba(220, 230, 245, 0.6) !important;
}

/* CTA section: ensure visible */
.pricing-page .rd-cta-section h2,
.pricing-page .rd-cta-section .rd-h2 {
  color: #f0f4ff !important;
  font-weight: 800 !important;
}
.pricing-page .rd-cta-section p,
.pricing-page .rd-cta-section .rd-lead {
  color: rgba(220, 230, 245, 0.82) !important;
}

/* Mobile: metrics 2-col grid */
@media (max-width: 768px) {
  .pricing-page .prc-agency-metrics {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   PRICING v5 — sezioni height=100vh STRICT + content compacted
   ════════════════════════════════════════════════════════════════ */

/* Ogni sezione = esattamente 1 viewport, niente overflow */
.pricing-page .prc-hero,
.pricing-page .prc-how-section,
.pricing-page .prc-section--dark,
.pricing-page .prc-section--light,
.pricing-page .prc-section--light-purple,
.pricing-page .prc-trust-section,
.pricing-page .rd-cta-section {
  /* PASS 15: was height/max-height:100vh which clipped tall sections (pricing
     cards, 3% card) at the bottom. Let sections fill the viewport when content
     is short and GROW when it is taller, so nothing is ever cut. overflow:hidden
     stays only to contain the decorative orbs (content never overflows now). */
  height: auto !important;
  min-height: 100vh !important;
  max-height: none !important;
  overflow: hidden !important;
  padding-top: clamp(92px, 11vh, 120px) !important;
  padding-bottom: clamp(56px, 8vh, 88px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

/* Plan cards super compacti */
.pricing-page .prc-section .rd-container,
.pricing-page .prc-section .rd-section-inner {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}
.pricing-page .prc-section-header {
  margin-bottom: 18px !important;
}
.pricing-page .prc-section-header .rd-h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem) !important;
  margin: 0 0 8px !important;
  line-height: 1.1 !important;
}
.pricing-page .prc-section-header .rd-lead {
  font-size: 0.92rem !important;
  margin: 0 auto 0 !important;
  max-width: 600px;
}
.pricing-page .prc-section-header .rd-eyebrow {
  margin-bottom: 12px !important;
  display: inline-block !important;
}
.pricing-page .prc-always-cards {
  margin-top: 16px !important;
  gap: 10px !important;
}
.pricing-page .prc-always-card {
  padding: 10px 14px !important;
  font-size: 0.84rem;
}

/* Plan grid 4-col compatto */
.pricing-page .prc-plans-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  width: 100%;
  max-width: 1200px;
}
.pricing-page .prc-plan-card {
  padding: 18px 14px !important;
  border-radius: 14px !important;
}
.pricing-page .prc-plan-badge,
.pricing-page .prc-plan-popular-tag {
  font-size: 0.6rem !important;
  padding: 3px 10px !important;
}
.pricing-page .prc-plan-name {
  font-size: 0.78rem !important;
  margin-bottom: 6px !important;
}
.pricing-page .prc-plan-price {
  font-size: 1.7rem !important;
  margin: 6px 0 !important;
  line-height: 1.05 !important;
}
.pricing-page .prc-plan-price-cur {
  font-size: 0.8rem !important;
}
.pricing-page .prc-plan-price-period {
  font-size: 0.72rem !important;
  margin-top: 2px !important;
}
.pricing-page .prc-plan-features {
  gap: 4px !important;
  margin: 8px 0 !important;
}
.pricing-page .prc-plan-features li,
.pricing-page .prc-plan-feature {
  font-size: 0.76rem !important;
  line-height: 1.25 !important;
}
.pricing-page .prc-plan-cta {
  padding: 8px 12px !important;
  font-size: 0.8rem !important;
  margin-top: 10px !important;
}

/* How section 4 steps: orizzontali compatti */
.pricing-page .prc-how-flow {
  gap: 12px !important;
}
.pricing-page .prc-how-step {
  padding: 18px 14px !important;
  min-height: 0 !important;
}
.pricing-page .prc-how-step-title {
  font-size: 0.95rem !important;
  margin: 8px 0 4px !important;
}
.pricing-page .prc-how-step-desc {
  font-size: 0.78rem !important;
  line-height: 1.4 !important;
}

/* Agency metrics compatti */
.pricing-page .prc-agency-metric { padding: 18px 12px !important; }
.pricing-page .prc-agency-metric-num { font-size: clamp(1.4rem, 3vw, 2.2rem) !important; }

/* Hero: leave room ma compatto verticalmente */
.pricing-page .prc-hero .prc-h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem) !important;
}

/* Mobile: una colonna stack ok */
@media (max-width: 900px) {
  .pricing-page .prc-plans-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 560px) {
  .pricing-page .prc-plans-grid {
    grid-template-columns: 1fr !important;
  }
  .pricing-page .prc-hero,
  .pricing-page .prc-section--dark,
  .pricing-page .prc-section--light,
  .pricing-page .prc-section--light-purple,
  .pricing-page .prc-how-section,
  .pricing-page .prc-trust-section,
  .pricing-page .rd-cta-section {
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    overflow: visible !important;
  }
}
