:root {
  --bg: #f7f6f2;
  --panel: #ffffff;
  --text: #121522;
  --muted: #6a6f7f;
  --gold: #c9a14d;
  --navy: #14244f;
  --line: #e7e3da;
}

* { box-sizing: border-box; }

/* ── Beta Banner ── */
.beta-banner {
  background: var(--navy);
  color: #f2cf8a;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 16px;
}

body {
  margin: 0;
  font-family: "Libre Franklin", Inter, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 242, 0.92);
  backdrop-filter: blur(6px);
}

.landing-nav {
  width: 100%;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.brand-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.nav-links, .nav-actions { display: flex; gap: 18px; align-items: center; }
.nav-links a, .link-btn {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.cta-btn, .ghost-btn {
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}

.cta-btn {
  background: var(--navy);
  color: #fff;
  padding: 13px 22px;
}
.cta-btn.lg {
  min-height: 54px;
  padding: 15px 28px;
}
.ghost-btn {
  border: 1px solid var(--line);
  color: var(--text);
  padding: 13px 22px;
}

main > section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 88px 32px;
}

.content-preview,
.features,
.trust {
  background: #faf9f5;
}

.steps,
.pricing {
  background: #f5f3ee;
}

.hero {
  min-height: calc(100vh - 62px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 42px 64px;
}

.hero-content {
  flex: 0 0 auto;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 161, 77, 0.12);
  border: 1px solid rgba(201, 161, 77, 0.35);
  color: #9a7530;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
}

.hero-image-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 780px;

}

.hero-dashboard-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(20, 36, 79, 0.18), 0 4px 16px rgba(20, 36, 79, 0.10);
  border: 1px solid var(--line);
  display: block;
}
.eyebrow, .section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.hero h1 { font-size: clamp(36px, 4vw, 60px); margin: 4px 0 10px; line-height: 1.05; font-family: "Source Serif 4", Georgia, serif; font-weight: 700; }
.hero h1 span, h2 span { color: var(--gold); font-style: italic; }
.hero-copy { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.6; font-size: 17px; }
.hero-actions { margin-top: 8px; }
.hero-note { color: var(--muted); margin-top: 6px; font-size: 13px; }
.hero-badges {
  margin-top: 8px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-badges span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #5c5b56;
  font-size: 12px;
  padding: 6px 10px;
}

.badge-strikethrough {
  text-decoration: line-through;
  text-decoration-color: #e05555;
  color: var(--muted);
  font-weight: 400;
}

.badge-free {
  color: #2e7d32;
  font-weight: 700;
}

h2 {
  text-align: center;
  font-size: clamp(30px, 4vw, 48px);
  margin: 8px 0 10px;
  line-height: 1.1;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 700;
}
.content-preview > p, .steps > p, .features > p, .pricing > p, .trust > p { text-align: center; color: var(--muted); max-width: 700px; margin: 0 auto; }

.preview-grid, .steps-grid, .feature-grid, .pricing-grid, .trust-grid {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.preview-grid {
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.feature-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
.pricing-grid { grid-template-columns: 1fr 1fr; width: 100%; max-width: none; margin-left: 0; margin-right: 0; }

.preview-card, .step, .feature-grid article, .price-card, .trust-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.preview-card h3, .step h3, .feature-grid h3, .trust-grid h3 { margin: 0 0 8px; font-size: 18px; }
.preview-card p, .step p, .feature-grid p, .trust-grid p, .price-card p { margin: 0; color: var(--muted); line-height: 1.45; }
.preview-card ul, .price-card ul { margin: 8px 0 0; padding-left: 18px; color: var(--muted); }
.preview-card li, .price-card li { margin-bottom: 6px; }

.content-preview .section-kicker {
  margin-bottom: 8px;
}

.content-preview h2 {
  font-size: clamp(42px, 4.5vw, 56px);
  line-height: 1.02;
  margin-bottom: 14px;
}

.content-preview > p {
  font-size: 16px;
  line-height: 1.45;
  max-width: 820px;
}

.preview-card {
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #faf9f7;
}

.preview-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid #ece8e0;
  background: #f4f2ef;
}

.preview-card-head h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  font-family: "Libre Franklin", sans-serif;
}

.preview-card-head span {
  font-size: 11px;
  color: #8f8a80;
  font-weight: 600;
}

.preview-card-document .preview-card-body {
  padding: 14px;
  min-height: 360px;
}

.preview-card-document p {
  font-size: 14px;
  color: #31312e;
  line-height: 1.55;
  margin-bottom: 10px;
}

.preview-card-document small {
  font-size: 11px;
  color: #7e7a73;
  font-style: italic;
}

.preview-card-list {
  background: #f7f5f2;
}

.pack-list {
  list-style: none;
  margin: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pack-list li {
  border: 1px solid #ebe6de;
  border-radius: 10px;
  background: #fdfcfa;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pack-list span {
  font-size: 14px;
  font-weight: 700;
  color: #252522;
}

.pack-list small {
  font-size: 11px;
  color: #8d877e;
}

.step span {
  color: #e4d1a1;
  font-size: 34px;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}

.price-card.featured {
  border-color: #1a2d5d;
  box-shadow: 0 10px 28px rgba(22, 35, 66, 0.12);
}
.price-card h3 { margin: 0 0 8px; font-size: 44px; }
.price-card .cta-btn, .price-card .ghost-btn { width: 100%; margin-top: 10px; }

.bottom-cta {
  max-width: none;
  background: linear-gradient(180deg, #162858 0%, #111e43 100%);
  color: #fff;
  text-align: center;
}
.bottom-cta h2 { color: #fff; }
.bottom-cta p { color: #c9d2ef; }

.landing-footer {
  text-align: center;
  padding: 24px 16px 40px;
  color: var(--muted);
  font-size: 13px;
}
.landing-footer div { margin-top: 8px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.landing-footer a { color: var(--muted); text-decoration: none; }

/* ── What We Do section ── */
.what-we-do {
  background: #ffffff;
}

.what-we-do-inner {
  display: flex;
  align-items: center;
  gap: 102px;
  max-width: 1160px;
  margin: 0 auto;
}

/* ── Right: text ── */
.what-we-do-text {
  flex: 1 1 400px;
  min-width: 0;
}

.wwd-heading {
  text-align: left;
  font-size: clamp(28px, 3.2vw, 44px);
  margin: 6px 0 18px;
  line-height: 1.08;
}

.wwd-body {
  color: var(--muted);
  line-height: 1.68;
  font-size: 16px;
  margin: 0 0 22px;
}

.wwd-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wwd-list li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.wwd-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.wwd-list strong {
  color: var(--text);
  font-weight: 700;
}

/* ── Left: demo chat UI ── */
.demo-chat-wrap {
  flex: 0 0 480px;
  max-width: 480px;
}

.demo-label {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  opacity: 0.7;
}

.demo-chat {
  background: #ffffff;
  border: 1px solid #e6e2da;
  border-radius: 14px;
  box-shadow:
    0 24px 64px rgba(20, 36, 79, 0.13),
    0 4px 16px rgba(20, 36, 79, 0.07);
  overflow: hidden;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
}

.demo-chat-header {
  background: #faf9f5;
  border-bottom: 1px solid #e6e2da;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.demo-header-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.demo-header-title {
  font-size: 13px;
  font-weight: 700;
  color: #3a3830;
  letter-spacing: -0.01em;
}

.demo-chat-messages {
  padding: 16px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-msg-label {
  font-size: 10px;
  font-weight: 700;
  color: #a39a8c;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-left: 3px;
}

.demo-msg-bubble {
  border-radius: 10px;
  border: 1px solid #e6e2da;
  padding: 10px 13px;
  font-size: 13.5px;
  line-height: 1.52;
  color: #2e2c28;
}

.demo-msg-ai .demo-msg-bubble {
  background: #fbfbf9;
  max-width: 92%;
}

.demo-msg-user {
  align-items: flex-end;
}

.demo-msg-user .demo-msg-bubble {
  background: #f0ebe0;
  border-color: #e0d2b3;
  max-width: 82%;
}

.demo-chat-footer {
  border-top: 1px solid #e6e2da;
  padding: 11px 14px;
  background: #fdfcfa;
}

.demo-chat-placeholder {
  color: #b0a899;
  font-size: 13px;
  font-style: italic;
}

/* ── Feature Highlight Section ── */
.fh-section {
  background: #faf9f5;
}

.fh-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.fh-heading {
  text-align: center;
  font-size: clamp(28px, 3.2vw, 46px);
  margin: 6px 0 14px;
  line-height: 1.08;
}

.fh-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.fh-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.fh-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Visual header areas ── */
.fh-visual {
  position: relative;
  padding: 32px 28px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 190px;
}

.fh-visual-chat  { background: #e8f0fb; }
.fh-visual-gen   { background: #f5e9cc; }
.fh-visual-pack  { background: #ddf0e4; }

.fh-step-num {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.18);
  text-transform: uppercase;
}

/* ── Card 1: chat mockup ── */
.fh-mock-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 220px;
}

.fh-mock-row {
  display: flex;
}

.fh-row-user { justify-content: flex-end; }

.fh-mock-bubble {
  border-radius: 8px;
  height: 14px;
}

.fh-bubble-ai {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(20,36,79,0.1);
}

.fh-bubble-user {
  background: rgba(201,161,77,0.28);
  border: 1px solid rgba(201,161,77,0.3);
}

.fh-bubble-lg { width: 80%; }
.fh-bubble-md { width: 60%; }
.fh-bubble-sm { width: 70%; }
.fh-bubble-xs { width: 45%; }

/* ── Card 2: document stack mockup ── */
.fh-mock-gen {
  position: relative;
  width: 120px;
  height: 140px;
}

.fh-gen-doc {
  position: absolute;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(201,161,77,0.35);
}

.fh-gen-doc-back {
  width: 100px;
  height: 120px;
  top: 10px;
  left: 16px;
  transform: rotate(6deg);
  opacity: 0.5;
}

.fh-gen-doc-mid {
  width: 100px;
  height: 120px;
  top: 6px;
  left: 10px;
  transform: rotate(2deg);
  opacity: 0.75;
}

.fh-gen-doc-front {
  width: 104px;
  height: 124px;
  top: 0;
  left: 6px;
  transform: rotate(-1deg);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  box-shadow: 0 4px 12px rgba(201,161,77,0.18);
}

.fh-gen-line {
  height: 5px;
  background: #e8e2d8;
  border-radius: 3px;
  width: 100%;
}

.fh-line-title {
  height: 7px;
  background: #d4c9b0;
  width: 75%;
  margin-bottom: 2px;
}

.fh-line-short { width: 55%; }

/* ── Card 3: pack list mockup ── */
.fh-mock-pack {
  width: 100%;
  max-width: 200px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(78,158,110,0.2);
  padding: 10px;
  box-shadow: 0 4px 14px rgba(78,158,110,0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fh-pack-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f4faf6;
  border-radius: 7px;
  padding: 7px 8px;
}

.fh-pack-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #4e9e6e;
  flex-shrink: 0;
  opacity: 0.7;
}

.fh-pack-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fh-pack-line {
  height: 5px;
  background: #d4e8db;
  border-radius: 3px;
}

.fh-pl-title { width: 80%; height: 6px; background: #b0d4bc; }
.fh-pl-sub   { width: 55%; }

.fh-pack-btn-mock {
  height: 26px;
  background: #14244f;
  border-radius: 7px;
  opacity: 0.85;
  margin-top: 2px;
}

/* ── Card body text ── */
.fh-card-body {
  padding: 20px 22px 24px;
  flex: 1;
}

.fh-card-body h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.fh-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ── Stop Spending / VS Section ── */
.vs-section {
  background: #f5f3ee;
}

.vs-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vs-heading {
  text-align: center;
  font-size: clamp(30px, 3.5vw, 50px);
  margin: 6px 0 18px;
  line-height: 1.08;
}

.vs-body {
  color: var(--muted);
  line-height: 1.68;
  font-size: 16px;
  max-width: 720px;
  margin: 0 0 44px;
}

.vs-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  align-items: start;
}

.vs-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: visible;
}

.vs-card-agent .vs-card-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--line);
}

.vs-card-agent .vs-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}

.vs-card-vetforge {
  border: 2px solid var(--navy);
  box-shadow:
    0 20px 56px rgba(20, 36, 79, 0.16),
    0 4px 14px rgba(20, 36, 79, 0.09);
  position: relative;
  margin-top: 18px;
}

.vs-best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.vs-card-vetforge .vs-card-header {
  padding: 28px 24px 16px;
  border-bottom: 1px solid #e2d9c6;
  background: #f8f5ef;
  border-radius: 14px 14px 0 0;
}

.vs-card-vetforge .vs-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--navy);
}

.vs-price {
  font-size: 40px;
  font-weight: 800;
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--text);
  margin: 8px 0 3px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.vs-price-strike {
  font-size: 24px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: #e05555;
}

.vs-price-free {
  font-size: 40px;
  font-weight: 800;
  color: #2e7d32;
}

.vs-card-vetforge .vs-price {
  color: var(--navy);
}

.vs-price-plus {
  font-size: 18px;
  font-weight: 600;
  font-family: "Libre Franklin", sans-serif;
  color: var(--muted);
}

.vs-price-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.vs-features {
  list-style: none;
  padding: 16px 24px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  text-align: left;
}

.vs-feat-pro,
.vs-feat-con {
  font-size: 14px;
  line-height: 1.45;
  padding-left: 24px;
  position: relative;
}

.vs-feat-pro { color: #2a2826; }
.vs-feat-con { color: #a09a92; }

.vs-feat-pro::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #4e9e6e;
}

.vs-feat-con::before {
  content: '✗';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #c98080;
}

.vs-card-vetforge .vs-feat-pro::before {
  color: var(--gold);
}

.vs-cta {
  display: block;
  margin: 4px 24px 24px;
  text-align: center;
}

/* ── FAQ Section ── */
.faq-section {
  background: #ffffff;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.faq-heading {
  text-align: center;
  font-size: clamp(28px, 3vw, 44px);
  margin: 6px 0 36px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.faq-item {
  background: #faf9f5;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item[open] {
  border-color: #d8cdb8;
}

.faq-q {
  list-style: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.68;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

@media (max-width: 1200px) {
  .nav-links { display: none; }
  .preview-grid, .steps-grid, .feature-grid, .pricing-grid, .trust-grid { grid-template-columns: 1fr; }
  .content-preview > p { font-size: 18px; }
  .preview-card-document .preview-card-body { min-height: 240px; }
  .cta-btn, .ghost-btn { min-height: 44px; }
  .cta-btn.lg { min-height: 50px; }
  .hero {
    flex-direction: column;
    min-height: calc(100vh - 62px);
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 42px 24px;
  }
  .hero-content {
    align-items: center;
    text-align: center;
    max-width: 600px;
  }
  .hero-copy {
    font-size: 16px;
    margin: 0 auto;
  }
  .hero-badges {
    justify-content: center;
    gap: 8px;
  }
  .hero-image-wrap {
    display: none;
  }

  .demo-chat-wrap {
    display: none;
  }

  .what-we-do-inner {
    justify-content: center;
  }

  .what-we-do-text {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .wwd-heading {
    text-align: center;
  }

  .wwd-body {
    text-align: center;
  }

  .wwd-list {
    text-align: left;
    max-width: 480px;
  }

  .fh-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .fh-intro {
    text-align: center;
  }

  .fh-heading {
    text-align: center;
  }

  .vs-inner {
    text-align: center;
    align-items: center;
  }

  .vs-heading {
    text-align: center;
  }

  .vs-body {
    text-align: center;
  }

  .vs-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .vs-card-vetforge {
    margin-top: 22px;
  }
}
