/* ─── VARIABLES ─── */
:root {
  --bg: #FAFAF7;
  --bg-warm: #F4EFE6;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --green: #1A3A2A;
  --green-light: #2D4A3E;
  --green-accent: #4D7C5F;
  --amber: #D4956A;
  --amber-light: #E8B78A;
  --sand: #E8D5B7;
  --border: #D4C9B5;
  --radius: 10px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 42px; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  background: rgba(250, 250, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--green); }
.nav-btn-primary {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--green);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-btn-primary:hover { background: var(--green-light); }
.nav-btn-secondary {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green);
  background: transparent;
  border: 1.5px solid var(--border);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: border-color 0.15s;
}
.nav-btn-secondary:hover { border-color: var(--green); }

/* ─── HERO ─── */
.hero {
  padding-top: 112px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 80px 80px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1.25;
}
.hero-subtitle {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ─── ROLE CARDS ─── */
.role-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}
.role-card {
  background: white;
  border-radius: 16px;
  padding: 0 28px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transition: transform 0.25s cubic-bezier(.25,.46,.45,.94), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  /* Border accent on left side for visual distinction */
  border-left: 4px solid var(--green);
}
.role-card--vet {
  border-left-color: var(--amber);
}
.role-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.role-card-image {
  width: calc(100% + 56px);
  margin-left: -28px;
  height: 280px;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 24px;
}
.role-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.role-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.role-card--owner .role-card-icon { background: var(--green); }
.role-card--vet .role-card-icon { background: var(--amber); }
.role-card-title {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.role-card-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.role-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: opacity 0.15s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.role-card-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.role-card-cta--teal { background: var(--green); color: white; }
.role-card-cta--amber { background: var(--amber); color: white; }
.role-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.role-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ─── SYNC DIAGRAM ─── */
.sync-diagram {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 660px;
}
.sync-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 230px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.owner-panel { border-top: 3px solid var(--green-accent); }
.vet-panel { border-top: 3px solid var(--amber); }
.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.owner-icon { background: var(--green); }
.vet-icon { background: var(--amber); }
.panel-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pet-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-warm);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
}
.pet-avatar { flex-shrink: 0; }
.pet-name { font-weight: 600; font-size: 0.95rem; }
.pet-meta { font-size: 0.78rem; color: var(--fg-muted); }
.rx-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.rx-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: var(--bg);
  border: 1px solid transparent;
}
.rx-item.rx-new {
  border-color: var(--green-accent);
  background: rgba(77, 124, 95, 0.05);
}
.rx-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.rx-content { flex: 1; }
.rx-name { font-size: 0.85rem; font-weight: 600; }
.rx-schedule { font-size: 0.75rem; color: var(--fg-muted); }
.rx-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green-accent);
  background: rgba(77, 124, 95, 0.12);
  border-radius: 100px;
  padding: 2px 8px;
  white-space: nowrap;
}
.vet-patient-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.vet-form { }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.form-field { background: var(--bg); border-radius: 6px; padding: 8px 10px; }
.field-label { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 3px; }
.field-value { font-size: 0.85rem; font-weight: 500; }
.rx-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--green-accent);
  font-weight: 500;
  margin-top: 8px;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-accent);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.sync-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.arrow-line {
  width: 2px;
  height: 32px;
  background: var(--sand);
  border-radius: 2px;
}
.arrow-icon { }

/* ─── STATS ─── */
.stats {
  background: var(--green);
  padding: 48px 80px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber-light);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ─── SECTION SHARED ─── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 48px;
}

/* ─── FEATURES ─── */
.features {
  padding: 100px 80px;
  background: var(--bg-warm);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-intro {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(26,58,42,0.08); }
.feature-card--highlight {
  border: 2px solid var(--green-accent);
  background: rgba(77,124,95,0.03);
}
.feature-card--ai {
  border: 2px solid var(--amber);
  background: rgba(212,149,106,0.04);
}
.feature-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-accent);
  background: rgba(77,124,95,0.12);
  border-radius: 100px;
  padding: 3px 10px;
  margin-top: 12px;
}
.feature-badge--amber {
  color: var(--amber);
  background: rgba(212,149,106,0.15);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── HOW IT WORKS ─── */
.howitworks {
  padding: 100px 80px;
  background: var(--bg-warm);
}
.howitworks-inner { max-width: 900px; margin: 0 auto; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 16px;
}
.step {
  flex: 1;
  padding: 0 28px 0 0;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--sand), var(--border));
  margin-top: 24px;
  flex-shrink: 0;
}

/* ─── CONNECTION ─── */
.connection {
  padding: 100px 80px;
  background: var(--green);
}
.connection-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.connection-visual {
  display: flex;
  align-items: center;
  gap: 0;
}
.conn-side {
  flex-shrink: 0;
  text-align: center;
}
.owner-side { }
.vet-side { }
.conn-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.conn-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.conn-items { }
.conn-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
}
.conn-bridge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  position: relative;
}
.bridge-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(212,149,106,0.6), rgba(255,255,255,0.1));
}
.bridge-nodes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
}
.bridge-node {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.7;
  animation: pulse 2s infinite;
}
.bridge-node:nth-child(2) { animation-delay: 0.3s; }
.bridge-node:nth-child(3) { animation-delay: 0.6s; }
.bridge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 4px;
}
.connection-copy .section-label { color: var(--green-accent); }
.connection-copy .section-title {
  color: white;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}
.connection-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ─── CLOSING ─── */
.closing {
  padding: 100px 80px;
  background: var(--bg-warm);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 24px;
  line-height: 1.25;
}
.closing-headline em {
  font-style: italic;
  color: var(--green-accent);
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--green);
  padding: 32px 80px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: white;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { padding: 60px 32px; }
  .role-cards { grid-template-columns: 1fr; }
  .stats { padding: 40px 32px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .features { padding: 60px 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 60px 32px; }
  .steps { flex-direction: column; }
  .step-connector { display: none; }
  .connection { padding: 60px 32px; }
  .connection-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 60px 32px; }
  .footer { padding: 24px 32px; }
  .footer-inner { flex-direction: column; gap: 12px; }
}

@media (max-width: 600px) {
  .hero-inner { padding: 48px 20px; }
  .role-card { padding: 28px 24px 22px; }
  .features { padding: 48px 20px; }
}
/* ─── URGENCY BANNER ─── */
.urgency-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(135deg, #1A3A2A 0%, #2D4A3E 100%);
  border-bottom: 1px solid rgba(212,149,106,0.3);
  animation: urgencySlide 0.4s ease;
}
@keyframes urgencySlide {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.urgency-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.urgency-icon { font-size: 1.1rem; }
.urgency-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  text-align: center;
}
.urgency-text strong { color: #F5A623; }
.urgency-link {
  color: #F5A623;
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
}
.urgency-link:hover { text-decoration: underline; }
.urgency-close {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s;
}
.urgency-close:hover { color: white; }

/* ─── HERO SOCIAL PROOF BADGE ─── */
.hero-social-proof {
  background: var(--bg-warm);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border);
}
.hero-social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.proof-avatars { display: flex; }
.proof-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  margin-left: -8px;
}
.proof-avatars .proof-avatar:first-child { margin-left: 0; }
.proof-label {
  font-size: 0.88rem;
  color: var(--fg-muted);
}
.proof-label strong { color: var(--green); }

/* ─── HERO CTA ─── */
.hero-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(26,58,42,0.3);
}
.hero-cta-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,58,42,0.35);
}
.hero-cta-secondary {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 14px 8px;
  transition: color 0.15s;
}
.hero-cta-secondary:hover { color: var(--green); }

/* ─── TRUST ROW ─── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.trust-divider {
  color: var(--border);
  font-size: 0.75rem;
}

/* ─── SOCIAL PROOF / TESTIMONIALS ─── */
.social-proof {
  background: var(--bg);
  padding: 80px 80px;
}
.sp-inner { max-width: 1100px; margin: 0 auto; }

/* Counters */
.counters-row {
  display: flex;
  align-items: center;
  background: var(--green);
  border-radius: 16px;
  padding: 40px 48px;
  margin-bottom: 64px;
}
.counter-item { flex: 1; text-align: center; }
.counter-value {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.counter-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
  margin: 0 32px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial:hover {
  box-shadow: 0 12px 40px rgba(26,58,42,0.1);
  transform: translateY(-4px);
}
.testimonial--highlighted {
  border: 2px solid var(--green-accent);
  background: rgba(77,124,95,0.04);
}
.testimonial-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-accent);
  background: rgba(77,124,95,0.12);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.testimonial-stars {
  color: #F5A623;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-quote {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.65;
  font-style: normal;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
}
.testimonial-meta { font-size: 0.78rem; color: var(--fg-muted); }

/* Vet Partners */
.vet-partners {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.vet-partners-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-muted);
  white-space: nowrap;
}
.vet-partners-logos { display: flex; gap: 12px; flex-wrap: wrap; }
.vet-partner-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
}

/* ─── CLOSING CTA ─── */
.closing { background: var(--green); padding: 100px 80px; }
.closing-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212,149,106,0.15);
  border: 1px solid rgba(212,149,106,0.3);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 24px;
}
.closing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  line-height: 1.25;
}
.closing-headline em {
  font-style: italic;
  color: var(--amber-light);
}
.closing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}
.closing-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.closing-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.closing-btn-primary:hover {
  background: var(--bg);
  transform: translateY(-2px);
}
.closing-btn-ghost {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.closing-btn-ghost:hover { color: white; }
.closing-micro {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ─── FOOTER CTA ─── */
.footer-cta {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 48px 80px;
}
.footer-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-cta-headline {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
}
.footer-cta-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.footer-cta-btn:hover { background: var(--green-light); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .urgency-banner-inner { padding: 10px 20px; }
  .social-proof { padding: 60px 32px; }
  .counters-row { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .counter-divider { width: 40px; height: 1px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .closing { padding: 60px 32px; }
  .footer-cta { padding: 40px 32px; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .social-proof { padding: 48px 20px; }
  .hero-social-proof { padding: 12px 20px; }
  .counters-row { padding: 24px 20px; }
  .counter-value { font-size: 2.4rem; }
}
