/* ── Heart Campaign Platform — shared stylesheet v3 ───────────────────────
   Edit here → Dashboard "Deploy" pushes to all campaigns.
   ──────────────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #c0392b;
  --red-dark:  #a93226;
  --red-hover: #96281b;
  --red-light: #fff5f5;
  --red-mid:   #fee2e2;
  --teal:      #0f766e;
  --green:     #15803d;
  --amber:     #b45309;
  --blue:      #1d4ed8;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-300:  #cbd5e1;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --gray-600:  #475569;
  --gray-700:  #334155;
  --gray-900:  #0f172a;
  --font:      'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display:   'Outfit', 'DM Sans', sans-serif;
  --radius:    10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:    0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--gray-900); background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }
strong { font-weight: 600; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.page { display: flex; flex-direction: column; min-height: 100vh; }
.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.wrap--narrow { max-width: 700px; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
  border-radius: var(--radius); font-family: var(--font); font-size: 15px; font-weight: 600;
  line-height: 1.2; cursor: pointer; border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
  text-decoration: none; white-space: nowrap; letter-spacing: 0.01em;
}
.btn:focus-visible { outline: 3px solid #fbbf24; outline-offset: 2px; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn--primary { background: var(--red); color: #fff !important; border-color: var(--red); }
.btn--primary:hover:not(:disabled) { background: var(--red-dark); border-color: var(--red-dark); color: #fff !important; }
.btn--ghost { background: transparent; color: var(--gray-700) !important; border-color: var(--gray-300); }
.btn--ghost:hover:not(:disabled) { background: var(--gray-100); border-color: var(--gray-400); color: var(--gray-900) !important; }
.btn--white { background: #fff; color: var(--red) !important; border-color: #fff; }
.btn--white:hover:not(:disabled) { background: var(--red-light); color: var(--red-dark) !important; border-color: var(--red-light); }
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ── Site header ────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--gray-200); padding: 10px 0; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--gray-900); font-weight: 700; font-size: 14px; }
.brand:hover { text-decoration: none; }
.brand__logo { border-radius: 6px; flex-shrink: 0; }
.brand__name { display: none; }
@media (min-width: 480px) { .brand__name { display: block; } }
.header-cta { padding: 9px 20px; background: var(--red); color: #fff !important; border-radius: var(--radius); font-size: 14px; font-weight: 700; white-space: nowrap; border: 2px solid var(--red); transition: background 0.18s, transform 0.12s; display: inline-block; }
.header-cta:hover { background: var(--red-dark); border-color: var(--red-dark); text-decoration: none; transform: translateY(-1px); color: #fff !important; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 72px 0 64px; background: #fff; border-bottom: 1px solid var(--gray-100); text-align: center; }

/* Continuous heartbeat background (replaces one-time ECG draw) */
.hero__heartbeat { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero__heartbeat::before,
.hero__heartbeat::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(140vw, 900px);
  height: min(140vw, 900px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.14) 0%, rgba(192,57,43,0.04) 42%, transparent 68%);
  animation: heroHeartPulse 1.15s ease-in-out infinite;
}
.hero__heartbeat::after {
  animation-delay: 0.35s;
  opacity: 0.75;
}
@keyframes heroHeartPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.82); opacity: 0.25; }
  12%      { transform: translate(-50%, -50%) scale(1);    opacity: 0.5; }
  24%      { transform: translate(-50%, -50%) scale(0.88); opacity: 0.35; }
  36%      { transform: translate(-50%, -50%) scale(1.04); opacity: 0.45; }
  48%      { transform: translate(-50%, -50%) scale(0.86); opacity: 0.3; }
}

.hero__bg-pattern { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% -10%, #fee2e2 0%, transparent 70%); pointer-events: none; z-index: 0; }

/* Hero: full-bleed stage (wider than main .wrap), content + side portraits */
.hero__stage {
  position: relative;
  z-index: 1;
  width: min(96vw, 1520px);
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(12px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
}
.hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4px;
}
/* Mobile / small screens: show hero dogs when side portraits are hidden */
.hero__mobile-dogs {
  display: none;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 18px;
  gap: 10px;
  justify-content: center;
  align-items: stretch;
}
.hero__mobile-dogs img {
  flex: 1;
  min-width: 0;
  width: calc(50% - 5px);
  height: 128px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 14px;
  border: 2px solid #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}
@media (max-width: 639px) {
  .hero__mobile-dogs { display: flex; }
}
.hero__flank {
  display: none;
  position: relative;
  align-self: stretch;
  min-height: 380px;
  pointer-events: none;
}
.hero__portrait {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: clamp(200px, 22vw, 300px);
  height: clamp(320px, 52vh, 480px);
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}
.hero__flank--left .hero__portrait {
  right: 0;
  border-radius: 20px 6px 6px 20px;
}
.hero__flank--right .hero__portrait {
  left: 0;
  border-radius: 6px 20px 20px 6px;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.hero__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__flank--left .hero__portrait::after {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0.92) 88%, #fff 100%);
}
.hero__flank--right .hero__portrait::after {
  background: linear-gradient(270deg, transparent 0%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0.92) 88%, #fff 100%);
}
/* Tablet: compact side portraits */
@media (min-width: 640px) and (max-width: 899px) {
  .hero__stage {
    grid-template-columns: minmax(72px, 0.75fr) minmax(240px, 1.5fr) minmax(72px, 0.75fr);
    min-height: 360px;
    width: min(98vw, 1200px);
  }
  .hero__flank { display: block; min-height: 300px; }
  .hero__portrait {
    width: clamp(100px, 16vw, 160px);
    height: clamp(200px, 36vh, 300px);
  }
  .hero__flank--left .hero__portrait { right: -12px; }
  .hero__flank--right .hero__portrait { left: -12px; }
  .hero__center {
    padding: 4px 8px;
    background: radial-gradient(ellipse 100% 80% at 50% 45%, #fff 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
  }
}
@media (min-width: 900px) {
  .hero__stage {
    grid-template-columns: minmax(150px, 1fr) minmax(320px, 640px) minmax(150px, 1fr);
    gap: 0;
    min-height: 420px;
    width: min(96vw, 1520px);
  }
  .hero__flank { display: block; }
  .hero__flank--left .hero__portrait { right: -28px; }
  .hero__flank--right .hero__portrait { left: -28px; }
  .hero__center {
    padding: 8px 20px;
    background: radial-gradient(ellipse 100% 85% at 50% 42%, #fff 0%, rgba(255,255,255,0.94) 42%, rgba(255,255,255,0.72) 68%, transparent 100%);
  }
}
@media (min-width: 1100px) {
  .hero__stage {
    width: min(94vw, 1600px);
    grid-template-columns: minmax(180px, 1.1fr) minmax(360px, 620px) minmax(180px, 1.1fr);
  }
}

/* "heart" / "Heart" — colour + italics only */
.hero__heart-word {
  color: #b91c1c;
  font-style: italic;
  font-weight: 700;
}
.hero__title .hero__heart-word {
  font-weight: 800;
}
.hero__badge { display: inline-flex; align-items: center; gap: 7px; flex-wrap: wrap; justify-content: center; padding: 5px 14px; background: var(--red-mid); color: var(--red); border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 22px; max-width: 100%; line-height: 1.4; }
.hero__title { font-family: var(--display); font-size: clamp(34px, 7.5vw, 64px); font-weight: 800; line-height: 1.1; color: var(--gray-900); margin-bottom: 18px; letter-spacing: -0.02em; }
.hero__sub { font-size: clamp(15px, 2.4vw, 18px); color: var(--gray-600); max-width: 560px; line-height: 1.7; margin-bottom: 36px; }

/* Date cards */
.event-dates { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 18px; }
.event-date-card { display: flex; flex-direction: column; align-items: center; padding: 14px 24px; background: #fff; border: 2px solid var(--red-mid); border-radius: var(--radius); min-width: 88px; box-shadow: var(--shadow-sm); }
.event-date-card__day   { font-family: var(--display); font-size: 40px; font-weight: 800; color: var(--red); line-height: 1; }
.event-date-card__month { font-size: 13px; font-weight: 600; color: var(--gray-700); margin-top: 3px; }
.event-date-card__year  { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.event-date-sep { font-size: 22px; font-weight: 700; color: var(--gray-300); }
.event-location { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 500; color: var(--gray-600); margin-bottom: 28px; }
.event-location i { color: var(--red); }

/* Price chips */
.hero__price-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: stretch; margin-bottom: 32px; }
.price-chip { display: flex; flex-direction: column; align-items: center; padding: 16px 24px; border-radius: var(--radius); text-align: center; min-width: 130px; }
.price-chip--main { background: var(--red); color: #fff; }
.price-chip--off  { background: #fff; border: 2px solid var(--red-mid); }
/* Scoped so white text is only on red background */
.price-chip--main .price-chip__was { font-size: 12px; color: rgba(255,255,255,0.7); text-decoration: line-through; margin-bottom: 4px; display: block; }
.price-chip--main .price-chip__now { font-family: var(--display); font-size: 44px; font-weight: 900; color: #fff; line-height: 1; display: block; margin-bottom: 4px; }
.price-chip--off  .price-chip__pct { font-family: var(--display); font-size: 36px; font-weight: 900; color: var(--red); line-height: 1; display: block; margin-bottom: 4px; }
.price-chip__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 5px; }
.price-chip--main .price-chip__label { color: rgba(255,255,255,0.85); }
.price-chip--off  .price-chip__label { color: var(--gray-600); }
.price-chip__items { font-size: 11px; color: var(--gray-400); margin-top: 4px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 18px; }
.hero__urgency { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--amber); font-weight: 600; }

/* ── Sections ───────────────────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section--alt  { background: var(--gray-50); }
.section--form { background: var(--red-light); }
.section--stats { background: var(--gray-900); }
.section--india { background: #fffbeb; border-top: 1px solid #fde68a; border-bottom: 1px solid #fde68a; padding: 36px 0; }
.section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); margin-bottom: 12px; }
.section--stats .section-label { color: #f87171; }
.section--stats .section-title { color: #fff; }
.section-title { font-family: var(--display); font-size: clamp(22px, 4vw, 36px); font-weight: 700; color: var(--gray-900); line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.01em; }
.section-lead  { font-size: 16px; color: var(--gray-500); max-width: 640px; line-height: 1.7; margin-bottom: 40px; }

/* ── Animated stat cards ────────────────────────────────────────────────── */
.stat-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
@media (min-width: 800px) { .stat-cards { grid-template-columns: repeat(4, 1fr); } }
.stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 24px 20px; text-align: center; }
.stat-card--accent { background: rgba(192,57,43,0.25); border-color: rgba(192,57,43,0.4); }
.stat-card__num { font-family: var(--display); font-size: clamp(32px, 5vw, 48px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 10px; min-height: 58px; display: flex; align-items: center; justify-content: center; }
.stat-card__label { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.5; }
.stat-card__label em { font-style: normal; color: #fca5a5; font-weight: 600; }
.stat-card__src { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 10px; }
.stat-footnote { text-align: center; font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 28px; }

/* ── Risk cards ─────────────────────────────────────────────────────────── */
.risk-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 760px) { .risk-grid { grid-template-columns: 1fr 1fr; } }
.risk-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.risk-card--breeds .risk-card__header { background: #fff5f5; border-bottom: 1px solid var(--red-mid); }
.risk-card--senior .risk-card__header { background: #f0fdf4; border-bottom: 1px solid #bbf7d0; }
.risk-card__header { display: flex; align-items: flex-start; gap: 14px; padding: 22px 22px 18px; }
.risk-card__icon  { font-size: 24px; color: var(--red); flex-shrink: 0; padding-top: 2px; }
.risk-card--senior .risk-card__icon { color: var(--teal); }
.risk-card__header h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin: 0 0 4px; }
.risk-card__header p  { font-size: 13px; color: var(--gray-500); margin: 0; }
.risk-card__body { padding: 20px 22px; }
.risk-card__body > p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.risk-card__photo { margin: 0 0 16px; border-radius: var(--radius); overflow: hidden; line-height: 0; }
.risk-card__photo img { width: 100%; height: auto; max-height: 200px; object-fit: cover; display: block; }
/* Senior lab — face sits upper-right; fixed crop box keeps it visible on all breakpoints */
.risk-card__photo--senior {
  position: relative;
  width: 100%;
  height: clamp(168px, 32vw, 220px);
  margin: 0 0 16px;
}
.risk-card__photo--senior img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 58% 24%;
}
@media (min-width: 480px) {
  .risk-card__photo--senior img { object-position: 62% 26%; }
}
@media (min-width: 760px) {
  .risk-card__photo--senior { height: clamp(180px, 22vw, 210px); }
  .risk-card__photo--senior img { object-position: 65% 28%; }
}
/* Clinical evidence — text-only symptom slider (per chart tab) */
.chart-symptom-panel {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
  border: 1px solid var(--gray-200);
}
.chart-slider__stage {
  position: relative;
  min-height: 220px;
  padding: 28px 44px 24px;
  background: linear-gradient(160deg, #fff5f5 0%, #fff 55%, #f8fafc 100%);
  border-bottom: 1px solid var(--gray-200);
}
.chart-slider__track {
  position: relative;
  min-height: 168px;
}
.chart-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  justify-content: center;
}
.chart-slider__slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.chart-slider__pct {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 10vw, 52px);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.chart-slider__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
}
.chart-slider__caption {
  margin: 0;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}
.chart-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  background: #fff;
  color: var(--gray-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.chart-slider__arrow:hover { background: var(--red-light); color: var(--red); border-color: var(--red-mid); }
.chart-slider__arrow--prev { left: 10px; }
.chart-slider__arrow--next { right: 10px; }
.chart-slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px 14px;
  background: #fff;
}
.chart-slider__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.chart-slider__dot.is-active { background: var(--red); transform: scale(1.25); }
.chart-slider__dot:hover:not(.is-active) { background: var(--gray-500); }
@media (prefers-reduced-motion: reduce) {
  .chart-slider__slide { transition: none; }
}
.risk-card__photo--breeds {
  position: relative;
  width: 100%;
  height: clamp(168px, 32vw, 200px);
}
.risk-card__photo--breeds img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 35%;
}
.chart-layout { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 900px) { .chart-layout { grid-template-columns: 1fr minmax(220px, 280px); } }
.section-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); line-height: 0; }
.section-photo img { width: 100%; height: auto; min-height: 200px; object-fit: cover; display: block; }
.section-photo--clinical img { max-height: 280px; object-position: center 35%; }
.section-photo--clinical figcaption { font-size: 11px; color: var(--gray-600); padding: 10px 12px; background: var(--gray-50); line-height: 1.45; font-weight: 500; }
.section-photo figcaption { font-size: 11px; color: var(--gray-500); padding: 8px 12px; background: #fff; line-height: 1.4; font-weight: 500; }
.breed-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.breed-tags span { padding: 4px 10px; background: var(--red-light); color: var(--red); border-radius: 100px; font-size: 12px; font-weight: 600; }
.senior-split { display: flex; flex-direction: column; gap: 14px; }
.senior-split > div { display: flex; flex-direction: column; gap: 4px; padding: 12px 14px; background: var(--gray-50); border-radius: var(--radius); }
.senior-split strong { font-size: 14px; color: var(--gray-800); display: flex; align-items: center; gap: 7px; }
.senior-split span { font-size: 13px; color: var(--gray-500); }

/* Survival bars */
.survival-stat { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px 18px; }
.survival-stat__title { font-size: 13px; font-weight: 700; color: var(--gray-800); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.survival-stat__title i { color: var(--amber); }
.survival-bars { display: flex; flex-direction: column; gap: 14px; }
.survival-bar-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: center;
}
.survival-bar-row__label { font-size: 12px; font-weight: 600; color: var(--gray-600); line-height: 1.35; }
.survival-bar-row__chart {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.survival-bar-wrap {
  flex: 1;
  min-width: 0;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  height: 12px;
}
@media (min-width: 520px) {
  .survival-bar-row {
    grid-template-columns: minmax(0, 148px) 1fr;
    gap: 10px 12px;
  }
  .survival-bar-row__chart { grid-column: 2; }
  .survival-bar-wrap { height: 28px; }
}
.survival-bar {
  height: 100%;
  border-radius: 4px;
  min-width: 6px;
  transition: width 1.2s ease-out;
}
.survival-bar--good { background: linear-gradient(90deg, #15803d, #22c55e); }
.survival-bar--bad  { background: linear-gradient(90deg, #c0392b, #ef4444); }
.survival-bar-row__value {
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-800);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 4.5rem;
  text-align: right;
}
.survival-bar-row__value--good { color: #15803d; }
.survival-bar-row__value--bad  { color: #c0392b; }
.survival-stat__src { font-size: 10px; color: var(--gray-400); margin-top: 10px; line-height: 1.45; }

/* ── Symptom cards ──────────────────────────────────────────────────────── */
.symptom-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 760px) { .symptom-grid { grid-template-columns: 1fr 1fr; } }
.symptom-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.symptom-card--cat { border-color: #fde68a; }
.symptom-card__header { padding: 22px 22px 14px; border-bottom: 1px solid var(--gray-100); }
.symptom-card--cat .symptom-card__header { background: #fffbeb; border-bottom-color: #fde68a; }
.symptom-card__header i { font-size: 22px; color: var(--red); margin-bottom: 10px; display: block; }
.symptom-card--cat .symptom-card__header i { color: var(--amber); }
.symptom-card__header h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.symptom-card__header p  { font-size: 13px; color: var(--gray-500); }
.symptom-list { list-style: none; padding: 18px 22px; display: flex; flex-direction: column; gap: 10px; }
.symptom-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-700); line-height: 1.5; }
.symptom-list li i { color: var(--amber); font-size: 13px; margin-top: 3px; flex-shrink: 0; }

/* Silent progression bar — stacked rows (mobile-friendly) */
.silent-progress { padding: 18px 22px; border-bottom: 1px solid #fde68a; }
.silent-progress__label { font-size: 12px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.silent-progress__stack { display: flex; flex-direction: column; gap: 12px; margin-bottom: 10px; }
.silent-progress__row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.silent-progress__row-name { font-size: 12px; font-weight: 600; color: var(--gray-700); line-height: 1.35; }
.silent-progress__row-pct { font-size: 13px; font-weight: 800; flex-shrink: 0; }
.silent-progress__row--silent .silent-progress__row-pct { color: #0f766e; }
.silent-progress__row--crisis .silent-progress__row-pct { color: #c0392b; }
.silent-progress__row-track {
  background: var(--gray-100);
  border-radius: 6px;
  overflow: hidden;
  height: 14px;
}
.silent-progress__row-fill {
  height: 100%;
  border-radius: 6px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.silent-progress__stack.animated .silent-progress__row--silent .silent-progress__row-fill { width: 90%; }
.silent-progress__stack.animated .silent-progress__row--crisis .silent-progress__row-fill { width: 100%; }
.silent-progress__row--silent .silent-progress__row-fill { background: linear-gradient(90deg, #0f766e, #14b8a6); }
.silent-progress__row--crisis .silent-progress__row-fill { background: linear-gradient(90deg, #c0392b, #ef4444); }
.silent-progress__legend {
  font-size: 11px;
  color: var(--gray-500);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 520px) {
  .silent-progress__legend { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 6px 16px; }
}
.silent-progress__legend-item { display: flex; align-items: flex-start; gap: 6px; line-height: 1.45; }
.silent-progress__dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
.silent-progress__dot--silent { background: #14b8a6; }
.silent-progress__dot--crisis { background: var(--red); }
/* Legacy inline bar (hidden if present) */
.silent-progress__track { display: none; }

.cat-warning { display: flex; align-items: flex-start; gap: 12px; padding: 16px 22px; background: #fffbeb; border-bottom: 1px solid #fde68a; }
.cat-warning i { color: var(--amber); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.cat-warning p { font-size: 14px; color: var(--gray-700); line-height: 1.65; margin: 0; }
.symptom-card__verdict { padding: 14px 22px 20px; font-size: 14px; color: var(--gray-700); line-height: 1.65; }
.symptom-card__verdict p { display: flex; gap: 9px; align-items: flex-start; background: var(--gray-50); border-radius: var(--radius); padding: 12px 14px; margin: 0; }
.symptom-card__verdict i { color: var(--teal); margin-top: 3px; flex-shrink: 0; font-size: 16px; }

/* ── India credibility strip ────────────────────────────────────────────── */
.india-strip { display: flex; align-items: flex-start; gap: 18px; }
.india-strip__icon { font-size: 28px; color: var(--amber); flex-shrink: 0; padding-top: 2px; }
.india-strip__body strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--amber); margin-bottom: 6px; }
.india-strip__body p { font-size: 15px; color: var(--gray-800); line-height: 1.65; margin-bottom: 6px; }
.india-strip__src { font-size: 11px; color: var(--gray-400); font-style: italic; }

/* ── Offer summary ──────────────────────────────────────────────────────── */
.offer-summary { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
@media (min-width: 600px) { .offer-summary { grid-template-columns: auto 1fr; } }
.offer-item { padding: 22px 24px; border-radius: var(--radius); border: 2px solid var(--gray-200); background: #fff; }
.offer-item--main { background: var(--red); border-color: var(--red); }
.offer-item__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.offer-item__badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 3px 9px; border-radius: 100px; background: rgba(255,255,255,0.25); color: #fff; }
.offer-item--discount .offer-item__badge { background: var(--red-mid); color: var(--red); }
.offer-item__badge--off { background: #fef3c7; color: var(--amber); }
.offer-item__was { font-size: 12px; color: rgba(255,255,255,0.65); text-decoration: line-through; }
.offer-item--discount .offer-item__was { color: var(--gray-400); text-decoration: none; font-size: 12px; }
.offer-item__price { font-family: var(--display); font-size: 48px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.offer-item__desc { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.offer-investigations { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.offer-investigations span { display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 14px; font-weight: 600; color: var(--gray-800); }
.offer-investigations i { color: var(--red); }

/* ── Feature cards ──────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.feature-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; transition: border-color 0.18s, transform 0.18s; }
.feature-card:hover { border-color: var(--red-mid); transform: translateY(-2px); }
.feature-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 10px; background: var(--red-mid); color: var(--red); font-size: 20px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ── SKS stats row ──────────────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 40px; }
@media (min-width: 600px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px 16px; text-align: center; }
.stat__value { font-family: var(--display); font-size: 36px; font-weight: 800; color: var(--red); line-height: 1.1; }
.stat__label { font-size: 13px; color: var(--gray-500); margin-top: 6px; }

/* ── Founder quote ──────────────────────────────────────────────────────── */
.founder-quote { padding: 30px 32px; background: var(--red-light); border-left: 4px solid var(--red); border-radius: 0 var(--radius) var(--radius) 0; }
.founder-quote p { font-size: 16px; color: var(--gray-700); line-height: 1.8; font-style: italic; margin: 0 0 14px; }
.founder-quote footer { font-size: 13px; font-weight: 600; color: var(--gray-600); font-style: normal; }

/* ── Visiting specialists ─────────────────────────────────────────────── */
.specialists-card { margin-bottom: 36px; padding: 22px 24px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.specialists-card__label { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red); margin: 0 0 14px; }
.specialists-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
@media (min-width: 600px) { .specialists-list { grid-template-columns: 1fr 1fr; gap: 16px; } }
.specialists-list li { font-size: 15px; color: var(--gray-700); padding: 12px 14px; background: var(--gray-50); border-radius: var(--radius); border: 1px solid var(--gray-200); }
.specialists-list__deg { display: block; font-size: 13px; font-weight: 500; color: var(--gray-500); margin-top: 2px; }

/* ── YouTube Shorts ───────────────────────────────────────────────────── */
.shorts-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 560px; margin: 0 auto; }
@media (max-width: 520px) { .shorts-grid { grid-template-columns: 1fr; max-width: 280px; } }
.shorts-embed { position: relative; width: 100%; aspect-ratio: 9 / 16; background: var(--gray-900); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.shorts-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── Booking form ───────────────────────────────────────────────────────── */
.form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; margin-top: 32px; box-shadow: var(--shadow); }
.form-row { display: flex; gap: 16px; }
.form-row--2 > * { flex: 1 1 0; min-width: 0; }
@media (max-width: 520px) { .form-row--2 { flex-direction: column; } }
.form-row--3 { display: flex; flex-wrap: wrap; gap: 12px; }
.form-row--3 > * { flex: 1 1 120px; min-width: 0; }
.form-row--3 .form-group { margin-bottom: 12px; }
@media (max-width: 520px) { .form-row--3 { flex-direction: column; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
label { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.req  { color: var(--red); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font); font-size: 15px; color: var(--gray-900); background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s; outline: none; appearance: none; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
input::placeholder, textarea::placeholder { color: var(--gray-400); }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.form-divider { display: flex; align-items: center; gap: 10px; margin: 4px 0 20px; color: var(--gray-400); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.date-option-row { display: flex; gap: 12px; flex-wrap: wrap; }
.date-option { flex: 1; min-width: 130px; cursor: pointer; }
.date-option input[type="radio"] { display: none; }
.date-option__label { display: flex; flex-direction: column; align-items: center; padding: 14px 12px; border: 2px solid var(--gray-200); border-radius: var(--radius); text-align: center; transition: border-color 0.15s, background 0.15s; user-select: none; }
.date-option__label strong { font-size: 16px; font-weight: 700; color: var(--gray-800); display: block; }
.date-option__label span   { font-size: 12px; color: var(--gray-400); margin-top: 3px; display: block; }
.date-option input:checked + .date-option__label { border-color: var(--red); background: var(--red-light); }
.date-option input:checked + .date-option__label strong { color: var(--red); }
.field-error { display: none; font-size: 12px; color: var(--red); font-weight: 500; margin-top: 2px; }
/* ── Payment info box (replaces fee-note) ────────────────────────────────── */
/* ── Payment box ─────────────────────────────────────────────────────────── */
.pay-info-box { border: 1.5px solid #e2e8f0; border-radius: var(--radius); overflow: hidden; margin-bottom: 22px; }
.pay-info-box__top { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: #f8fafc; border-bottom: 1px solid #e2e8f0; }
.pay-info-box__icon { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.pay-info-box__title { font-size: 14px; font-weight: 700; color: var(--gray-900); line-height: 1.25; }
.pay-info-box__title strong { font-size: 20px; color: var(--red); }
.pay-info-box__sub { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.pay-info-box__methods { display: flex; gap: 6px; align-items: center; padding: 9px 18px; background: #fff; flex-wrap: wrap; border-bottom: 1px solid #e2e8f0; }
.pay-method-pill { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border: 1px solid #e2e8f0; border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--gray-500); }
/* 3-step flow strip */
.pay-flow { display: flex; align-items: stretch; background: #f8fafc; }
.pay-flow__step { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 12px 10px; gap: 5px; position: relative; }
.pay-flow__step + .pay-flow__step::before { content: '→'; position: absolute; left: -1px; top: 50%; transform: translateY(-50%); font-size: 13px; color: var(--gray-300); }
.pay-flow__icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.pay-flow__icon--blue   { background: #dbeafe; color: #2563eb; }
.pay-flow__icon--amber  { background: #fef3c7; color: #d97706; }
.pay-flow__icon--green  { background: #dcfce7; color: #16a34a; }
.pay-flow__label { font-size: 11px; font-weight: 700; color: var(--gray-700); line-height: 1.2; }
.pay-flow__sub   { font-size: 10px; color: var(--gray-400); line-height: 1.3; }
/* Hold timer — shown while Razorpay modal is open */
.hold-timer-bar { display: none; align-items: center; gap: 10px; padding: 9px 16px; background: #fffbeb; border-top: 1px solid #fde68a; font-size: 12px; color: #92400e; font-weight: 600; }
.hold-timer-bar.visible { display: flex; }
.hold-timer-bar i { color: #d97706; flex-shrink: 0; }
#hold-timer-countdown { font-variant-numeric: tabular-nums; font-weight: 800; color: #dc2626; letter-spacing: 0.03em; }
.hold-timer-bar__track { flex: 1; height: 4px; background: #fde68a; border-radius: 3px; overflow: hidden; min-width: 60px; }
.hold-timer-bar__fill { height: 100%; background: #f59e0b; border-radius: 3px; transition: width 1s linear; }
.hold-timer-bar__msg { font-size: 11px; color: #b45309; font-weight: 500; white-space: nowrap; }
.form-fee-note { display: none; }
.form-error-global { padding: 12px 16px; background: #fee2e2; border: 1px solid #fca5a5; border-radius: var(--radius); font-size: 14px; color: #991b1b; margin-bottom: 18px; line-height: 1.5; }
.form-terms { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 14px; }
.rc-notice { font-size: 11px; color: var(--gray-400); text-align: center; margin-top: 8px; }
.rc-notice a { color: var(--gray-400); text-decoration: underline; }
.grecaptcha-badge { visibility: hidden !important; }

/* ── Success card ───────────────────────────────────────────────────────── */
.success-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 48px 36px; margin-top: 32px; text-align: center; }
.success-card__icon { font-size: 58px; color: var(--green); margin-bottom: 18px; }
.success-card h2 { font-family: var(--display); font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.success-card p  { font-size: 15px; color: var(--gray-500); margin-bottom: 16px; }
.success-card__ref { display: inline-block; padding: 8px 22px; background: var(--gray-100); border-radius: var(--radius); font-size: 16px; font-weight: 700; font-family: monospace; color: var(--gray-900); margin-bottom: 20px; letter-spacing: 0.03em; }
.success-card__details { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px 20px; text-align: left; margin-bottom: 20px; font-size: 14px; color: var(--gray-700); }
.success-card__details p { margin-bottom: 7px; }
.success-card__details p:last-child { margin-bottom: 0; }
.success-card__details .success-pet-line { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--gray-200); }
.venue-block { margin: 10px 0 4px; padding: 12px 14px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); }
.venue-block__name { margin: 0 0 6px; font-size: 14px; color: var(--gray-900); }
.venue-block__addr { margin: 0 0 8px; font-size: 13px; color: var(--gray-600); line-height: 1.55; }
.venue-block__map { margin: 0; font-size: 13px; }
.venue-block__map a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
}
.venue-block__map a:hover { color: var(--red-dark); text-decoration: underline; }
.success-card__support { font-size: 14px; color: var(--gray-500); }
.success-card__support a { color: var(--red); font-weight: 600; }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq__item { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq__q { list-style: none; padding: 16px 20px; font-size: 15px; font-weight: 600; color: var(--gray-900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; background: #fff; transition: background 0.15s; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--gray-400); flex-shrink: 0; margin-left: 12px; }
details[open] .faq__q::after { content: '−'; }
.faq__item:hover .faq__q { background: var(--gray-50); }
.faq__a { padding: 0 20px 18px; font-size: 14px; color: var(--gray-500); line-height: 1.7; background: #fff; }

/* ── CTA strip ──────────────────────────────────────────────────────────── */
.cta-strip { background: var(--red); padding: 56px 0; text-align: center; }
.cta-strip .wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
@media (min-width: 600px) { .cta-strip .wrap { flex-direction: row; justify-content: center; gap: 36px; } }
.cta-strip__text { font-family: var(--display); font-size: 22px; font-weight: 700; color: #fff; }

/* ── Site footer ────────────────────────────────────────────────────────── */
.site-footer { background: var(--gray-900); color: var(--gray-500); padding: 36px 0 28px; margin-top: auto; }
.site-footer__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; justify-content: space-between; margin-bottom: 20px; }
.site-footer__brand { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #fff; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.site-footer__links a { color: var(--gray-500); font-size: 14px; transition: color 0.15s; }
.site-footer__links a:hover { color: #fff; text-decoration: none; }
.site-footer__venue {
  padding: 16px 18px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}
.site-footer__venue-name { margin: 0 0 6px; font-size: 14px; color: #f1f5f9; }
.site-footer__venue-addr { margin: 0 0 10px; font-size: 13px; line-height: 1.55; color: var(--gray-500); max-width: 52em; }
.site-footer__venue-map {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #fca5a5;
}
.site-footer__venue-map:hover { color: #fff; text-decoration: none; }
.site-footer__copy { font-size: 12px; width: 100%; color: var(--gray-600); margin: 0; }

/* ── Scroll-reveal animation ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: 44px 0 40px; }
  .hero__stage { width: 100%; padding: 0 16px; }
  .hero__center { max-width: 100%; }
  .hero__title { font-size: clamp(30px, 8.5vw, 40px); }
  .hero__sub { font-size: 15px; margin-bottom: 28px; }
  .hero__flank { display: none; }
  .section { padding: 52px 0; }
  .form-card { padding: 22px 16px; }
  .success-card { padding: 32px 20px; }
  .event-date-card { padding: 12px 18px; }
  .event-date-card__day { font-size: 34px; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .survival-bar-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .survival-bar-row__label { width: auto; }
}

/* ── Multi-pet form ──────────────────────────────────────────────────────── */
.form-step-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600); padding: 10px 0 6px; margin-top: 12px; border-top: 1px solid var(--gray-100); display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.form-step-sub { font-size: 11px; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--gray-400); }
.form-step-label:first-child { border-top: none; margin-top: 0; }

.pet-card { background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 16px; margin-bottom: 12px; }
.pet-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.pet-card__title { font-size: 14px; font-weight: 700; color: var(--gray-700); display: flex; align-items: center; gap: 7px; }
.pet-card__title i { color: var(--red); }
.pet-card__remove { background: none; border: 1px solid var(--gray-200); border-radius: 50%; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; font-size: 18px; line-height: 1; color: var(--gray-400); cursor: pointer; transition: background 0.15s, color 0.15s; padding: 0; }
.pet-card__remove:hover { background: #fee2e2; color: var(--red); border-color: var(--red-mid); }

.symptom-label { font-size: 14px; font-weight: 600; color: var(--gray-700); display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.symptom-hint { font-size: 12px; font-weight: 400; color: var(--gray-400); }
.symptom-details {
  margin-bottom: 0;
  border: 1.5px solid #f5c4be;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(192, 57, 43, 0.06);
}
.symptom-details__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--red-dark);
  background: linear-gradient(135deg, #fff5f4 0%, #fde8e5 42%, #fad4cf 100%);
  border-bottom: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.symptom-details__toggle:hover { background: linear-gradient(135deg, #fdeae7 0%, #f9d0cb 55%, #f5c0b9 100%); }
.symptom-details[open] .symptom-details__toggle {
  background: linear-gradient(135deg, #f9d0cb 0%, #f0b5ad 100%);
  border-bottom-color: #f5c4be;
}
.symptom-details__toggle::-webkit-details-marker { display: none; }
.symptom-details__toggle::marker { content: ''; }
.symptom-details__label .symptom-hint { color: #a04038; font-weight: 600; }
.symptom-details__icon { font-size: 12px; color: var(--red); transition: transform 0.2s ease; flex-shrink: 0; }
.symptom-details[open] .symptom-details__icon { transform: rotate(180deg); }
.symptom-details .symptom-checklist { padding: 8px 10px 10px; gap: 5px; border-top: none; background: #fffcfc; }
.symptom-details .symptom-check { padding: 7px 10px; }
.symptom-details .symptom-check span { font-size: 13px; }
.symptom-checklist { display: flex; flex-direction: column; gap: 7px; }
.symptom-check { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 8px 12px; background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); transition: border-color 0.14s, background 0.14s; }
.symptom-check:hover { border-color: var(--gray-300); }
.symptom-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--red); flex-shrink: 0; cursor: pointer; }
.symptom-check input:checked ~ span { color: var(--gray-900); font-weight: 500; }
.symptom-check:has(input:checked) { border-color: var(--red-mid); background: var(--red-light); }
.symptom-check span { font-size: 14px; color: var(--gray-600); }

/* Info tooltip (pets / multi-slot help) */
.hc-tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: #2563eb;
  font-size: 16px;
  line-height: 1;
  cursor: help;
  border-radius: 50%;
  flex-shrink: 0;
}
.hc-tooltip-trigger:hover,
.hc-tooltip-trigger:focus {
  color: #1d4ed8;
  outline: none;
  background: #eff6ff;
}
.hc-tooltip-trigger[data-tooltip] {
  position: relative;
}
.hc-tooltip-trigger[data-tooltip]:hover::after,
.hc-tooltip-trigger[data-tooltip]:focus::after,
.hc-tooltip-trigger[data-tooltip]:focus-visible::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 50;
  right: 0;
  bottom: calc(100% + 8px);
  width: min(280px, 85vw);
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
  color: #fff;
  background: #1e293b;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.25);
  pointer-events: none;
  white-space: normal;
}
.hc-tooltip-trigger[data-tooltip]:hover::before,
.hc-tooltip-trigger[data-tooltip]:focus::before,
.hc-tooltip-trigger[data-tooltip]:focus-visible::before {
  content: '';
  position: absolute;
  right: 6px;
  bottom: calc(100% + 2px);
  border: 6px solid transparent;
  border-top-color: #1e293b;
  pointer-events: none;
}
@media (max-width: 520px) {
  .hc-tooltip-trigger[data-tooltip]:hover::after,
  .hc-tooltip-trigger[data-tooltip]:focus::after,
  .hc-tooltip-trigger[data-tooltip]:focus-visible::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .hc-tooltip-trigger[data-tooltip]:hover::before,
  .hc-tooltip-trigger[data-tooltip]:focus::before,
  .hc-tooltip-trigger[data-tooltip]:focus-visible::before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.pets-limit-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  margin-bottom: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  text-align: left;
}
.pets-limit-note[hidden] { display: none !important; }
.pets-limit-note__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dbeafe;
  color: #2563eb;
  font-size: 14px;
  flex-shrink: 0;
}
.pets-limit-note__body { min-width: 0; }
.pets-limit-note__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: #1e40af;
  line-height: 1.35;
}
.pets-limit-note__desc {
  margin: 0;
  font-size: 13px;
  color: #475569;
  line-height: 1.55;
}
.pets-limit-note__desc strong { color: #1e3a8a; font-weight: 700; }
.btn-add-pet { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: #fff; border: 1.5px dashed var(--gray-300); border-radius: var(--radius); font-size: 14px; font-weight: 600; color: var(--red); cursor: pointer; transition: border-color 0.15s, background 0.15s; margin-bottom: 20px; width: 100%; justify-content: center; }
.btn-add-pet:hover:not(:disabled) { border-color: var(--red); background: var(--red-light); }
.btn-add-pet--disabled,
.btn-add-pet:disabled { opacity: 0.45; cursor: not-allowed; color: var(--gray-500); border-color: var(--gray-200); background: var(--gray-50); }

/* ── Slot picker ─────────────────────────────────────────────────────────── */
.slot-tz { font-size: 11px; font-weight: 400; color: var(--gray-400); }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 8px; }
.slot-option { cursor: pointer; }
.slot-option input[type="radio"] { display: none; }
.slot-option__label { display: flex; flex-direction: column; align-items: center; padding: 10px 8px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); text-align: center; transition: border-color 0.14s, background 0.14s; background: #fff; user-select: none; }
.slot-option__label strong { font-size: 14px; font-weight: 700; color: var(--gray-800); }
.slot-option__label small { font-size: 10px; color: var(--gray-400); }
.slot-option input:checked + .slot-option__label { border-color: var(--red); background: var(--red-light); }
.slot-option input:checked + .slot-option__label strong { color: var(--red); }
.slot-option--full .slot-option__label { background: var(--gray-50); border-color: var(--gray-100); cursor: not-allowed; opacity: 0.55; }

.slot-loading { display: none; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-500); padding: 12px 0; }
.slot-loading i { color: var(--red); }
.slot-unavailable { display: none; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-500); padding: 12px 16px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 16px; }
.slot-unavailable i { color: var(--gray-400); }
.slot-unavailable a { color: var(--red); }

/* ── Dog symptoms chart section ──────────────────────────────────────────── */
.symptoms-chart-section { padding: 56px 0; background: var(--gray-50); }
.chart-container { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 28px 20px; max-width: 700px; margin: 32px auto 0; box-shadow: var(--shadow-sm); }
.chart-header { text-align: center; margin-bottom: 22px; }
.chart-header h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 5px; }
.chart-header p { font-size: 12px; color: var(--gray-400); }
.chart-tabs { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; padding: 0 4px; }
.chart-tab { padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; cursor: pointer; border: 2px solid var(--gray-200); background: #fff; color: var(--gray-500); transition: all 0.15s; line-height: 1.3; text-align: center; }
@media (min-width: 480px) { .chart-tab { font-size: 13px; padding: 6px 16px; } }
.chart-tab.active { background: var(--red); border-color: var(--red); color: #fff; }
.chart-tab:hover:not(.active) { border-color: var(--gray-400); color: var(--gray-700); }
.chart-bars { display: flex; flex-direction: column; gap: 12px; }
.chart-bar-row { display: flex; align-items: center; gap: 12px; }
.chart-bar-lbl { font-size: 13px; color: var(--gray-700); width: 180px; flex-shrink: 0; text-align: right; }
.chart-bar-wrap { flex: 1; height: 32px; background: var(--gray-100); border-radius: 6px; overflow: hidden; position: relative; }
.chart-bar-fill { height: 100%; border-radius: 6px; display: flex; align-items: center; justify-content: flex-end; padding-right: 10px; font-size: 12px; font-weight: 700; color: #fff; transition: width 1.2s cubic-bezier(0.22,1,0.36,1); white-space: nowrap; min-width: 40px; }
.chart-bar-fill--high   { background: linear-gradient(90deg, #c0392b, #e74c3c); }
.chart-bar-fill--medium { background: linear-gradient(90deg, #d35400, #e67e22); }
.chart-bar-fill--low    { background: linear-gradient(90deg, #2980b9, #3498db); }
.chart-src { text-align: center; font-size: 10px; color: var(--gray-400); margin-top: 18px; font-style: italic; }
.chart-bar-row .chart-bar-fill[style*="width: 0"] { min-width: 0; }
@media (max-width: 599px) {
  .chart-container { padding: 20px 16px 16px; margin-top: 24px; }
  .chart-bar-row {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .chart-bar-lbl {
    width: 100%;
    text-align: left;
    font-size: 12px;
    line-height: 1.35;
  }
  .chart-bar-wrap { height: 28px; }
  .chart-bar-fill {
    justify-content: flex-start;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 3rem;
  }
}
