/* ════════════════════════════════════════════════════════
   PetCare — Pricing section + final CTA
   (Pricing sits between #press and the final CTA, so its
   styles live alongside the CTA styles.)
   ════════════════════════════════════════════════════════ */

/* ── PRICING ── */
.pricing {
  padding: 100px 6%;
  background: var(--bg);
  transition: background .35s;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  margin-top: 52px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 36px 28px 30px;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform .25s, box-shadow .25s, border-color .25s, background .35s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* Highlighted "Most Popular" tier */
.price-card--popular {
  border: 2px solid var(--orange);
  box-shadow: var(--shadow);
}
.price-card--popular:hover { transform: translateY(-6px); }
.price-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange-d), var(--orange));
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255,140,66,.4);
}

.price-tier {
  margin-bottom: 6px;
  font-size: 1.05rem; font-weight: 700;
  color: var(--text);
  transition: color .35s;
}
.price-amount {
  margin-bottom: 22px;
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--text);
  transition: color .35s;
}
.price-period { font-size: .9rem; font-family: 'DM Sans', sans-serif; color: var(--text-muted); }

.price-features {
  flex: 1;
  display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 28px;
  list-style: none;
}
.price-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .88rem; line-height: 1.5;
  color: var(--text-m);
  transition: color .35s;
}
.price-check {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}
.price-card .btn { justify-content: center; }

/* ── FINAL CTA ── */
.final-cta {
  padding: 80px 6% 90px;
  background: var(--bg-3);
  text-align: center;
  transition: background .35s;
}
.final-cta .section-h2 { max-width: 500px; margin: 0 auto 18px; }
.final-cta .section-sub { max-width: 440px; margin: 0 auto 36px; text-align: center; }
.final-cta .store-btns { justify-content: center; margin-top: 20px; }

/* ── Pricing: tagline, best-for, tier badges ── */
.price-tagline {
  margin: -2px 0 18px;
  font-size: .82rem; line-height: 1.45;
  color: var(--text-muted);
  min-height: 2.6em;
  transition: color .35s;
}
.price-bestfor {
  padding: 12px 0 16px;
  border-top: 1px solid var(--border);
  font-size: .74rem; line-height: 1.4;
  color: var(--text-muted);
  transition: color .35s, border-color .35s;
}
.price-card--soon   { border: 2px solid #7c6fd6; }
.price-card--farmer { border-color: var(--green); }
.price-badge--soon {
  background: linear-gradient(135deg, #5b4fbf, #7c6fd6);
  box-shadow: 0 4px 14px rgba(124,111,214,.4);
}
.price-badge--farmer {
  background: linear-gradient(135deg, var(--green-d), var(--green));
  box-shadow: 0 4px 14px rgba(76,175,112,.4);
}

/* ── Referral banner ── */
.referral {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin: 40px auto 0; max-width: 880px;
  padding: 24px 30px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: background .35s, border-color .35s;
}
.referral-icon {
  flex-shrink: 0; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: var(--sand); color: var(--orange-d);
}
.referral-icon svg { width: 26px; height: 26px; }
.referral-text { flex: 1; min-width: 220px; }
.referral-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; transition: color .35s; }
.referral-sub { font-size: .9rem; line-height: 1.55; color: var(--text-m); transition: color .35s; }
.referral-sub strong { color: var(--text); font-weight: 600; }
.referral .btn { flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 940px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .price-tagline { min-height: 0; }
}
@media (max-width: 600px) {
  .referral { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .pricing, .final-cta { padding: 70px 5%; }
}
