/* Pet accident / urine landing — distinct from main site & commercial page */
.page-pet-accidents {
  --pet-rust: #c2543a;
  --pet-rust-soft: #e8a090;
  --pet-forest: #1a3d3a;
  --pet-cream: #faf6f0;
  --pet-ink: #2a2420;
  --pet-muted: #6b5e56;
  --pet-sand: #efe6dc;
  background: var(--pet-cream);
  color: var(--pet-ink);
}

.pet-lp-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(194, 84, 58, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 0% 100%, rgba(26, 61, 58, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #fffefb 0%, var(--pet-cream) 35%, #f3ebe3 100%);
}

.pet-lp-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%231a3d3a' d='M20 38c-3 0-6-3-6-7s3-7 6-7 6 3 6 7-3 7-6 7zm40 0c-3 0-6-3-6-7s3-7 6-7 6 3 6 7-3 7-6 7zM28 52c-2 0-4-2-4-5s2-5 4-5 4 2 4 5-2 5-4 5zm24 0c-2 0-4-2-4-5s2-5 4-5 4 2 4 5-2 5-4 5zM40 58c-4 0-7-4-7-9s3-9 7-9 7 4 7 9-3 9-7 9z'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.pet-lp-main {
  overflow-x: clip;
}

.pet-lp-hero {
  padding: 48px 0 56px;
}

@media (min-width: 960px) {
  .pet-lp-hero {
    padding: 64px 0 72px;
  }
}

.pet-lp-hero-inner {
  max-width: 44rem;
}

.pet-lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pet-rust);
}

.pet-lp-eyebrow i {
  font-size: 14px;
  opacity: 0.85;
}

.pet-lp-h1 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 3.4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--pet-forest);
}

.pet-lp-tagline {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 3.2vw, 1.95rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--pet-forest);
  max-width: 36em;
}

.pet-lp-tagline-em {
  font-style: normal;
  color: var(--pet-rust);
}

.pet-lp-lead {
  margin: 0 0 28px;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--pet-muted);
  max-width: 36em;
}

.pet-lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.pet-lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.pet-lp-btn--primary {
  background: linear-gradient(135deg, var(--pet-rust) 0%, #a84330 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(194, 84, 58, 0.35);
}

.pet-lp-btn--primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 16px 40px rgba(194, 84, 58, 0.4);
}

.pet-lp-btn--ghost {
  background: #fff;
  color: var(--pet-forest);
  border: 2px solid rgba(26, 61, 58, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.pet-lp-btn--ghost:hover {
  border-color: var(--pet-rust-soft);
  color: var(--pet-rust);
}

.pet-lp-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pet-lp-trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--pet-muted);
}

.pet-lp-trust i {
  color: var(--pet-forest);
  margin-top: 3px;
  flex-shrink: 0;
}

.pet-lp-section {
  padding: 56px 0;
}

.pet-lp-section--sand {
  background: linear-gradient(180deg, rgba(239, 230, 220, 0.65) 0%, transparent 100%);
}

.pet-lp-section-h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--pet-forest);
  letter-spacing: -0.02em;
}

.pet-lp-section-lead {
  margin: 0 0 36px;
  max-width: 42em;
  color: var(--pet-muted);
  line-height: 1.65;
}

.pet-lp-cards {
  display: grid;
  gap: 24px;
}

@media (min-width: 720px) {
  .pet-lp-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.pet-lp-card {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: 22px;
  background: linear-gradient(165deg, #fff 0%, #faf8f5 100%);
  border: 1px solid rgba(26, 61, 58, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 40px rgba(42, 36, 32, 0.07);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pet-lp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 84, 58, 0.25);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 56px rgba(42, 36, 32, 0.11);
}

.pet-lp-card-icon {
  width: 108px;
  height: 108px;
  margin: 0 auto 22px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.65rem;
  line-height: 1;
  color: #fff;
  position: relative;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.pet-lp-card-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.pet-lp-card-icon--urine {
  background: linear-gradient(145deg, #5b9bd5 0%, #2e6fad 45%, #1a5080 100%);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pet-lp-card-icon--mud {
  background: linear-gradient(145deg, #c2543a 0%, #9a3d2a 50%, #6d2c1e 100%);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pet-lp-card-icon--rug {
  background: linear-gradient(145deg, #2d6a5c 0%, #1a3d3a 55%, #0f2926 100%);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pet-lp-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--pet-forest);
  letter-spacing: -0.02em;
}

.pet-lp-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--pet-muted);
}

.pet-lp-steps {
  counter-reset: petstep;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.pet-lp-steps li {
  position: relative;
  padding: 20px 20px 20px 64px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(26, 61, 58, 0.08);
}

.pet-lp-steps li::before {
  counter-increment: petstep;
  content: counter(petstep);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pet-forest);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pet-lp-steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--pet-forest);
}

.pet-lp-steps span {
  font-size: 0.95rem;
  color: var(--pet-muted);
  line-height: 1.5;
}

/* Before / after */
.pet-lp-ba {
  max-width: 920px;
  margin: 0 auto;
}

.pet-lp-ba-note {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(194, 84, 58, 0.08);
  border: 1px solid rgba(194, 84, 58, 0.2);
  font-size: 14px;
  line-height: 1.5;
  color: var(--pet-forest);
}

.pet-lp-ba .ba-slider {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(42, 36, 32, 0.12);
  border: 3px solid #fff;
}

.pet-lp-ba-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .pet-lp-ba-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.pet-lp-ba-item h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--pet-forest);
}

/* Booking */
.pet-lp-book {
  padding: 56px 0 80px;
}

.pet-lp-book-inner {
  border-radius: 24px;
  padding: 36px 28px 40px;
  background: linear-gradient(165deg, #fff 0%, #f5ebe4 100%);
  border: 1px solid rgba(26, 61, 58, 0.1);
  box-shadow: 0 24px 64px rgba(42, 36, 32, 0.1);
}

@media (min-width: 768px) {
  .pet-lp-book-inner {
    padding: 44px 40px 48px;
  }
}

.pet-lp-book .booking-form label span {
  color: var(--pet-forest);
}

.pet-lp-book .booking-form input,
.pet-lp-book .booking-form select,
.pet-lp-book .booking-form textarea {
  border-color: rgba(26, 61, 58, 0.15);
}

.pet-lp-book .booking-form input:focus,
.pet-lp-book .booking-form select:focus,
.pet-lp-book .booking-form textarea:focus {
  border-color: var(--pet-rust);
  box-shadow: 0 0 0 3px rgba(194, 84, 58, 0.15);
}

.pet-lp-book .btn-book,
.pet-lp-book button[type="submit"] {
  background: linear-gradient(135deg, var(--pet-rust) 0%, #a84330 100%) !important;
  border: none !important;
  box-shadow: 0 10px 28px rgba(194, 84, 58, 0.3);
}

.page-pet-accidents .header {
  background: rgba(255, 255, 255, 0.94);
}

.page-pet-accidents .nav-list > li > a {
  color: var(--pet-ink);
}

.page-pet-accidents .btn-book {
  background: linear-gradient(135deg, var(--pet-rust) 0%, #a84330 100%);
  color: #fff !important;
}

/* FAQ (видимый блок + FAQPage JSON-LD в футере) */
.page-pet-accidents .pet-lp-faq.faq {
  background: transparent;
  border-top: none;
}
.pet-lp-faq.pet-lp-section {
  padding-top: 48px;
  padding-bottom: 52px;
}
.pet-lp-faq .pet-lp-section-h2 {
  text-align: center;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  line-height: 1.2;
}
.pet-lp-faq .faq-list {
  max-width: 42rem;
}
.pet-lp-faq .faq-item {
  border-bottom-color: rgba(26, 61, 58, 0.12);
}
.pet-lp-faq .faq-item summary {
  color: var(--pet-forest);
}
.pet-lp-faq .faq-item summary::before {
  color: var(--pet-rust);
}
.pet-lp-faq .faq-item p {
  color: var(--pet-muted);
}
.pet-lp-faq .faq-item p a {
  color: var(--pet-rust);
}
.pet-lp-faq .faq-item p a:hover {
  color: #a84330;
}
