.cats-page-body {
  background:
    radial-gradient(circle at top right, rgba(229, 241, 255, 0.65), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 24%, #f8fbff 100%);
  color: #162033;
}

.cats-page-wrap {
  padding-top: 116px;
  padding-bottom: 150px;
}

.cats-main {
  display: grid;
  gap: 0;
}

.cats-hero {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  align-items: stretch;
  gap: 28px;
}

.cats-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 28px 0 8px;
}

.cats-hero-title {
  margin: 0;
  color: #372e2d;
  font-size: clamp(40px, 3.8vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.cats-hero-text {
  max-width: 290px;
  margin: 0;
  color: #71829c;
  font-size: 18px;
  line-height: 1.5;
}

.cats-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 252px);
  min-height: 58px;
  padding: 0 22px 0 24px;
  border-radius: 18px;
  background: #372e2d;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 22px 40px rgba(55, 46, 45, 0.18);
}

.cats-hero-cta:hover,
.cats-hero-cta:focus-visible {
  color: #ffffff;
}

.cats-hero-cta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cats-hero-media {
  aspect-ratio: 2.22 / 1;
  overflow: hidden;
  border: 1px solid rgba(224, 232, 241, 0.95);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 26px 56px rgba(80, 100, 129, 0.1);
}

.cats-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cats-section {
  display: grid;
  gap: 22px;
}

.cats-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cats-section-title {
  margin: 0;
  color: #372e2d;
  font-family: inherit;
  font-size: 45px;
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.cats-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cats-service-card {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 18px;
  min-height: 126px;
  padding: 10px;
  border: 1px solid #e3eaf2;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(43, 60, 82, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cats-service-card:hover,
.cats-service-card:focus-visible {
  transform: translateY(-3px);
  border-color: #d5e1ec;
  box-shadow: 0 22px 42px rgba(43, 60, 82, 0.1);
}

.cats-service-card.is-collapsed {
  display: none;
}

.cats-service-card-media {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 123 / 104;
}

.cats-service-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cats-service-card-copy {
  min-width: 0;
}

.cats-service-card-copy h3 {
  margin: 0;
  color: #1c2a42;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.cats-service-card-copy p {
  margin: 10px 0 0;
  color: #71829a;
  font-size: 16px;
  line-height: 1.45;
}

.cats-service-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f4f7fb;
  color: #55657a;
  font-size: 22px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cats-service-card:hover .cats-service-card-arrow,
.cats-service-card:focus-visible .cats-service-card-arrow {
  background: #372e2d;
  color: #ffffff;
  transform: translateX(2px);
}

.cats-services-more {
  display: flex;
  justify-content: center;
}

.cats-services-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid #dbe6f0;
  border-radius: 16px;
  background: #ffffff;
  color: #42546d;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(43, 60, 82, 0.05);
}

.cats-services-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  line-height: 0;
  transition: transform 0.2s ease;
  color: #55657a;
}

.cats-services-more-icon svg {
  width: 18px;
  height: 18px;
}

.cats-services-more-button.is-expanded .cats-services-more-icon {
  transform: rotate(180deg);
}

@media (max-width: 1199px) {
  .cats-hero {
    grid-template-columns: 1fr;
  }

  .cats-hero-copy {
    max-width: 620px;
    padding-top: 4px;
  }

  .cats-hero-text {
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .cats-page-wrap {
    padding-top: 24px;
    padding-bottom: 124px;
  }

  .cats-main {
    gap: 0;
  }

  .cats-hero {
    gap: 20px;
  }

  .cats-hero-copy {
    gap: 18px;
    padding: 0;
  }

  .cats-hero-title {
    font-size: 34px;
  }

  .cats-section-title {
    font-size: 24px;
  }

  .cats-hero-text {
    max-width: none;
    font-size: 17px;
  }

  .cats-hero-cta {
    width: 100%;
  }

  .cats-hero-media {
    aspect-ratio: 1.45 / 1;
    border-radius: 24px;
  }

  .cats-service-card {
    grid-template-columns: 92px minmax(0, 1fr) 42px;
    gap: 14px;
    min-height: 108px;
    padding: 8px;
    border-radius: 18px;
  }

  .cats-service-card-media {
    border-radius: 14px;
  }

  .cats-service-card-copy h3 {
    font-size: 16px;
  }

  .cats-service-card-copy p {
    margin-top: 8px;
    font-size: 14px;
  }

  .cats-service-card-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Unified cats page overrides */
.cats-page-body {
  background:
    radial-gradient(circle at top right, rgba(21, 152, 168, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  color: var(--color-text);
}

.cats-page-wrap {
  padding-top: 24px;
}

.cats-main {
  gap: 40px;
}

.cats-hero {
  gap: 32px;
  align-items: center;
}

.cats-hero-title {
  color: var(--color-primary);
  font-family: var(--font-family-base);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
}

.cats-hero-text {
  max-width: 420px;
  color: var(--color-text-muted);
  font-size: var(--font-size-md);
  line-height: 1.55;
}

.cats-hero-media {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
  box-shadow: var(--shadow-card);
}

.cats-section {
  gap: 28px;
}

.cats-services-grid {
  gap: 16px;
}

.cats-service-card {
  min-height: 142px;
  padding: 12px;
  border-radius: var(--radius-md);
}

.cats-service-card-copy h3 {
  color: var(--color-primary);
  font-size: var(--font-size-md);
  line-height: 1.35;
  font-weight: 600;
}

.cats-service-card-copy p {
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
  line-height: 1.5;
}

.cats-service-card-arrow {
  width: 48px;
  height: 48px;
  background: #7b8646;
  color: #ffffff;
}

.cats-services-more-button {
  min-height: 56px;
  border-radius: var(--radius-sm);
  border-color: var(--color-border);
  color: var(--color-primary);
  font-size: var(--font-size-base);
  font-weight: 600;
}



@media (max-width: 767px) {
  .cats-main {
    gap: 0;
  }

  .cats-hero {
    grid-template-columns: 1fr;
  }

  .cats-services-grid,
  .cats-clinics-grid {
    grid-template-columns: 1fr;
  }
}
