/**
 * Только страница pet accidents — блок цен за пятно (add-on).
 */
.pet-pricing {
  border-top: 1px solid rgba(26, 61, 58, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, transparent 100%);
}

.pet-pricing .pet-lp-section-h2 {
  text-align: center;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

.pet-pricing-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 38rem;
}

.pet-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 0 auto 22px;
}

.pet-pricing-card {
  background: linear-gradient(165deg, #fff 0%, #faf8f5 100%);
  border: 1px solid rgba(26, 61, 58, 0.12);
  border-radius: 22px;
  padding: 26px 16px 24px;
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 32px rgba(42, 36, 32, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pet-pricing-card:hover {
  border-color: rgba(194, 84, 58, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 40px rgba(42, 36, 32, 0.08);
}

.pet-pricing-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(194, 84, 58, 0.12);
  color: var(--pet-rust);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.pet-pricing-label {
  font-weight: 800;
  font-size: 15px;
  color: var(--pet-forest);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pet-pricing-range {
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 800;
  color: var(--pet-rust);
  letter-spacing: -0.02em;
}

.pet-pricing-range .sep {
  font-weight: 600;
  opacity: 0.65;
  margin: 0 0.15em;
}

.pet-pricing-sublabel {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pet-muted);
}

.pet-pricing-range .pet-pricing-per {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pet-muted);
  letter-spacing: 0;
}

.pet-pricing-addon {
  max-width: 560px;
  margin: 0 auto 18px;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(26, 61, 58, 0.06);
  border: 1px solid rgba(26, 61, 58, 0.12);
  border-radius: 16px;
}

.pet-pricing-addon-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(194, 84, 58, 0.14);
  color: var(--pet-rust);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.pet-pricing-addon-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--pet-ink);
}

.pet-pricing-addon-body strong {
  color: var(--pet-forest);
}

.pet-pricing-footnote {
  text-align: center;
  font-size: 14px;
  color: var(--pet-muted);
  max-width: 34rem;
  margin: 0 auto;
  line-height: 1.55;
}

.pet-pricing-footnote a {
  color: var(--pet-rust);
  font-weight: 700;
  text-decoration: none;
}

.pet-pricing-footnote a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .pet-pricing-grid {
    grid-template-columns: 1fr;
  }
}
