.properayle-home-conversion {
  --phc-cream: #fbf5ea;
  --phc-cream-2: #f3e8d7;
  --phc-ink: #241c16;
  --phc-muted: #71665c;
  --phc-gold: #b89455;
  --phc-border: rgba(184, 148, 85, 0.22);
  color: var(--phc-ink);
  background: linear-gradient(180deg, #fff 0%, var(--phc-cream) 100%);
}

.phc-inner {
  padding-top: 56px;
  padding-bottom: 58px;
}

.phc-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.phc-eyebrow {
  margin: 0 0 10px;
  color: var(--phc-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phc-head h2 {
  margin: 0;
  color: var(--phc-ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.phc-head p {
  margin: 16px auto 0;
  color: var(--phc-muted);
  line-height: 1.7;
}

.phc-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.phc-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--phc-border);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(36, 28, 22, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.phc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(36, 28, 22, 0.11);
}

.phc-card span {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  color: #6b4b25;
  font-size: 12px;
  font-weight: 700;
  background: #f2e4ce;
  border-radius: 999px;
}

.phc-card strong {
  margin-top: auto;
  color: var(--phc-ink);
  font-size: 22px;
  line-height: 1.12;
}

.phc-card em {
  margin-top: 9px;
  color: var(--phc-muted);
  font-style: normal;
  line-height: 1.55;
}

.phc-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.phc-proof-row div {
  padding: 18px;
  text-align: center;
  background: #2f261f;
  border-radius: 18px;
}

.phc-proof-row strong,
.phc-proof-row span {
  display: block;
}

.phc-proof-row strong {
  color: #fff;
}

.phc-proof-row span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

@media (max-width: 959px) {
  .phc-inner {
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .phc-card-grid,
  .phc-proof-row {
    grid-template-columns: 1fr;
  }

  .phc-card {
    min-height: 170px;
  }
}
