/* ============================================
   ETHICAL STANDARDS PAGE
   ============================================ */

/* ---- Hero ---- */
.es-hero {
  position: relative;
  padding: var(--space-20) 0;
  background: var(--color-surface);
  overflow: hidden;
}
.es-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

/* Left column */
.es-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  background: linear-gradient(to right, rgba(37, 99, 235, 0.1), rgba(147, 51, 234, 0.1));
  color: #2563eb;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-5);
}
.es-hero__badge svg {
  width: 16px;
  height: 16px;
}
.es-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-text);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}
.es-hero__title .es-gradient-blue {
  background: linear-gradient(to right, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.es-hero__title .es-gradient-pink {
  background: linear-gradient(to right, #e087a9, #aaa0df);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.es-hero__title .es-text-muted {
  color: #6b7280;
  -webkit-text-fill-color: #6b7280;
}
.es-hero__desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 520px;
}
.es-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  background: linear-gradient(to right, #2563eb, #9333ea);
  color: #fff;
  font-weight: var(--weight-semibold);
  font-size: var(--text-body);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.es-hero__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.es-hero__btn svg {
  width: 18px;
  height: 18px;
}

/* Right column — image card */
.es-hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}
.es-hero__image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 480px;
  width: 100%;
}
.es-hero__image-card img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Decorative blobs */
.es-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}
.es-hero__blob--pink {
  width: 200px;
  height: 200px;
  top: -40px;
  right: -40px;
  background: linear-gradient(to bottom right, #f472b6, #c084fc);
}
.es-hero__blob--blue {
  width: 180px;
  height: 180px;
  bottom: -30px;
  left: -30px;
  background: linear-gradient(to bottom right, #9333ea, #2563eb);
}

/* ---- Breeder Vetting ---- */
.es-vetting {
  padding: var(--space-20) 0;
  background: var(--color-background);
}
.es-vetting__header {
  text-align: center;
  margin-bottom: var(--space-16);
}
.es-vetting__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  background: linear-gradient(to right, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.08));
  color: #2563eb;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-4);
}
.es-vetting__badge svg {
  width: 16px;
  height: 16px;
}
.es-vetting__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}
.es-vetting__title span {
  background: linear-gradient(to right, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.es-vetting__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  max-width: 640px;
  margin: 0 auto;
}

/* Vetting grid */
.es-vetting__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

/* Left — image with overlay */
.es-vetting__media {
  position: relative;
}
.es-vetting__image {
  display: block;
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  max-height: 480px;
}
.es-vetting__overlay-card {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.es-vetting__overlay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #2563eb, #9333ea);
  flex-shrink: 0;
}
.es-vetting__overlay-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.es-vetting__overlay-text {
  font-size: 1.1rem;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  line-height: 1.3;
}

/* Right — feature cards + quote */
.es-vetting__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Feature card */
.es-feature-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: #fff;
  border-radius: var(--radius-md);
  border-left: 4px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.es-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.es-feature-card--blue {
  border-left-color: #2563eb;
}
.es-feature-card--pink {
  border-left-color: #e087a9;
}
.es-feature-card--purple {
  border-left-color: #9333ea;
}
.es-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.es-feature-card--blue .es-feature-card__icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}
.es-feature-card--pink .es-feature-card__icon {
  background: rgba(224, 135, 169, 0.15);
  color: #e087a9;
}
.es-feature-card--purple .es-feature-card__icon {
  background: rgba(147, 51, 234, 0.1);
  color: #9333ea;
}
.es-feature-card__icon svg {
  width: 22px;
  height: 22px;
}
.es-feature-card__content {
  flex: 1;
}
.es-feature-card__title {
  font-size: 1.1rem;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.es-feature-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* Quote box */
.es-vetting__quote {
  margin-top: var(--space-3);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(147, 51, 234, 0.06));
  border: 1px solid rgba(37, 99, 235, 0.12);
}
.es-vetting__quote p {
  font-size: 1rem;
  font-style: italic;
  color: #374151;
  line-height: var(--leading-relaxed);
}

/* ---- Vet Section ---- */
.es-vet {
  padding: var(--space-12) var(--space-6);
  background: linear-gradient(135deg, rgba(170, 160, 223, 0.05), rgba(236, 235, 243, 0.95), rgba(224, 135, 169, 0.05));
}
.es-vet__header {
  text-align: center;
  margin-bottom: var(--space-16);
}
.es-vet__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  background: rgba(224, 135, 169, 0.2);
  color: #155f85;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-6);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.es-vet__badge svg {
  width: 16px;
  height: 16px;
}
.es-vet__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
}
.es-vet__title span {
  background: linear-gradient(to right, #155f85, #aaa0df);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.es-vet__subtitle {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.625;
  max-width: 768px;
  margin: 0 auto;
}

/* Vet grid: 3 columns (2-col cards + 1-col image/microchip) */
.es-vet__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-8);
}

/* Left: 2x2 cards grid */
.es-vet__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

/* Vet card */
.es-vet-card {
  padding: var(--space-6);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.es-vet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.12), 0 12px 12px -5px rgba(0, 0, 0, 0.06);
}
.es-vet-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}
.es-vet-card__icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.es-vet-card__icon--blue-purple {
  background: linear-gradient(to right bottom, #155f85, #aaa0df);
}
.es-vet-card__icon--pink-purple {
  background: linear-gradient(to right bottom, #e087a9, #aaa0df);
}
.es-vet-card__icon--purple-pink {
  background: linear-gradient(to right bottom, #aaa0df, #e087a9);
}
.es-vet-card__icon--blue-pink {
  background: linear-gradient(to right bottom, #155f85, #e087a9);
}
.es-vet-card__title {
  font-size: var(--text-body);
  font-weight: var(--weight-bold);
  color: #111827;
  margin-bottom: var(--space-3);
}
.es-vet-card__desc {
  font-size: var(--text-body);
  color: #666;
  line-height: 1.575;
}

/* Right column: image + microchip card */
.es-vet__side {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.es-vet__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.es-vet__image-wrap img {
  display: block;
  width: 100%;
  height: 256px;
  object-fit: cover;
}
.es-vet__image-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}

/* Microchip card */
.es-vet__microchip {
  padding: var(--space-6);
  border-radius: var(--radius-md);
  background: linear-gradient(to right bottom, #155f85, #aaa0df);
  color: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.es-vet__microchip-title {
  font-size: var(--text-body);
  font-weight: var(--weight-bold);
  color: #fff;
  margin-bottom: var(--space-3);
}
.es-vet__microchip-desc {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.575;
}

/* ---- Trust CTA ---- */
.es-trust-cta {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #2563eb, #9333ea, #e087a9);
  text-align: center;
}
.es-trust-cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  color: #fff;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}
.es-trust-cta__desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  max-width: 560px;
  margin: 0 auto var(--space-8);
}
.es-trust-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.es-trust-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  font-weight: var(--weight-semibold);
  font-size: var(--text-body);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.es-trust-cta__btn:hover {
  transform: translateY(-2px);
}
.es-trust-cta__btn--primary {
  background: #fff;
  color: #2563eb;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.es-trust-cta__btn--primary:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.es-trust-cta__btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.es-trust-cta__btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.es-trust-cta__btn svg {
  width: 18px;
  height: 18px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .es-hero__title {
    font-size: var(--text-h1);
  }
  .es-vetting__title {
    font-size: var(--text-h3);
  }
  .es-trust-cta__title {
    font-size: var(--text-h3);
  }
  .es-vet__title {
    font-size: var(--text-h3);
  }
}

@media (max-width: 768px) {
  .es-hero {
    padding: var(--space-14) 0;
  }
  .es-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .es-hero__title {
    font-size: var(--text-h2);
  }
  .es-hero__desc {
    font-size: var(--text-body);
  }
  .es-hero__media {
    order: -1;
  }
  .es-hero__image-card img {
    height: 280px;
  }
  .es-vetting__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .es-trust-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  .es-vet__grid {
    grid-template-columns: 1fr;
  }
  .es-vet__cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .es-hero__title {
    font-size: var(--text-h3);
  }
  .es-vetting__overlay-card {
    left: var(--space-3);
    bottom: var(--space-3);
    padding: var(--space-3);
  }
  .es-vet__cards {
    grid-template-columns: 1fr;
  }
}
