/* ═══════════════════════════════════════════
   Vetsy Landing Page — Pronto-inspired Design
   Pure white · Bold Inter · Clean cards
═══════════════════════════════════════════ */

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

.lp-body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.18);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,.35); }
* { scrollbar-width: thin; scrollbar-color: rgba(0,0,0,.18) transparent; }

/* ── NAV ── */
.lp-nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  padding: .5rem .5rem .5rem 1.5rem;
}
.lp-nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-weight: 800;
  font-size: 1rem;
  color: #111;
  text-decoration: none;
}
.lp-logo--white { color: #fff; }
.lp-nav__link {
  font-size: .875rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: color .2s;
}
.lp-nav__link:hover { color: #111; }
.lp-nav__link--cta {
  background: #111;
  color: #fff;
  padding: .5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
}
.lp-nav__link--cta:hover { background: #333; color: #fff; }

/* ── HERO ── */
.lp-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f9f9f7 0%, #fff 60%);
  padding: 7rem 1rem 4rem;
}
.lp-hero__flank {
  position: absolute;
  bottom: 0;
  height: 88%;
  width: auto;
  object-fit: contain;
}

.lp-hero__flank--left  { left: 2%; }
.lp-hero__flank--right { right: 2%; }
.lp-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: #444;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 999px;
  padding: .35rem .9rem;
}
.lp-pulse {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: lp-pulse 1.8s ease infinite;
}
@keyframes lp-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}
.lp-hero__h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #111;
}
.lp-hero__sub {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}
.lp-hero__note {
  font-size: .8125rem;
  color: #999;
}

/* ── BUTTONS ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9375rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  border: none;
}
.lp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.lp-btn--dark    { background: #111; color: #fff; }
.lp-btn--white   { background: #fff; color: #111; }
.lp-btn--outline { background: transparent; color: #111; border: 1.5px solid #ddd; }
.lp-btn--outline:hover { border-color: #111; box-shadow: none; }
.lp-btn--lg      { padding: .875rem 2rem; font-size: 1rem; }

/* ── MARQUEE ── */
.lp-marquee {
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: .875rem 0;
  background: #fafafa;
  position: relative;
}
.lp-marquee::before,
.lp-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.lp-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fafafa 0%, transparent 100%);
}
.lp-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fafafa 0%, transparent 100%);
}
.lp-marquee__track {
  display: flex;
  width: max-content;
  animation: lp-scroll 28s linear infinite;
}
.lp-marquee__group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
  font-size: .8125rem;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.lp-mdot { color: #bbb; }
@keyframes lp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.lp-section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-section__head {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lp-section__head--left {
  text-align: left;
  align-items: flex-start;
}
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  font-weight: 600;
  color: #555;
  background: #f4f4f4;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  padding: .35rem .9rem;
}
.lp-section__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #111;
}
.lp-section__title--left { text-align: left; }
.lp-section__sub {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  max-width: 520px;
}

/* ── SERVICE MARQUEE ── */
.lp-svc-marquee {
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}
.lp-svc-marquee::before,
.lp-svc-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.lp-svc-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.lp-svc-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.lp-svc-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: lp-svc-scroll 18s linear infinite;
}
@keyframes lp-svc-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}
.lp-svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .875rem;
  flex-shrink: 0;
}
.lp-svc-card img {
  width: 260px;
  height: 340px;
  object-fit: cover;
  border-radius: 1.25rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: lp-shimmer 1.4s infinite;
}
.lp-svc-card img[src] { animation: none; background: #f0f0f0; }
@keyframes lp-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.lp-svc-card span {
  font-size: .9375rem;
  font-weight: 600;
  color: #111;
}
.lp-svc-more {
  font-family: 'Dancing Script', cursive;
  font-size: 2.25rem;
  font-weight: 600;
  color: #888;
  text-align: center;
  margin: 1.5rem 0 0;
  letter-spacing: 0.01em;
}

/* ── STATS ── */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.lp-stat-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: #f7f7f7;
  border: 1px solid #eee;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
}
.lp-stat-card__num {
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 900;
  color: #111;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.lp-stat-card__label {
  font-size: .9375rem;
  color: #666;
  font-weight: 500;
}

/* ── HOW IT WORKS ── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.lp-step-card {
  background: #111;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}
.lp-step-card__badge {
  display: inline-block;
  background: #fff;
  color: #111;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  border-radius: 999px;
  padding: .3rem .85rem;
  align-self: flex-start;
}
.lp-step-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.lp-step-card p {
  font-size: .9375rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

/* ── FAQ ── */
.lp-faq {
  padding: 5rem 1.5rem;
  background: #fff;
}
.lp-faq__inner {
  max-width: 760px;
  margin: 0 auto;
}
.lp-faq__list {
  margin-top: 3rem;
  border-top: 1px solid #ebebeb;
}
.lp-faq__item {
  border-bottom: 1px solid #ebebeb;
}
.lp-faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}
.lp-faq__q:hover { color: #333; }
.lp-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  transition: background .2s, transform .25s;
  line-height: 1;
  padding-bottom: 1px;
}
.lp-faq__item.open .lp-faq__icon {
  background: #111;
  color: #fff;
  transform: rotate(45deg);
}
.lp-faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0;
}
.lp-faq__item.open .lp-faq__a {
  max-height: 400px;
  padding-bottom: 1.25rem;
}
.lp-faq__a p {
  font-size: .9375rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.lp-faq__a p + p { margin-top: .6rem; }
.lp-faq__cta {
  margin-top: 2.5rem;
  text-align: center;
}
.lp-faq__cta p {
  font-size: .9375rem;
  color: #888;
  margin-bottom: 1rem;
}

/* ── CTA ── */
.lp-cta {
  background: #111;
  padding: 6rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.lp-cta h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.lp-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 400px;
}
.lp-cta__email {
  font-size: .9375rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.lp-cta__email:hover { color: #fff; }

/* ── FOOTER ── */
.lp-footer {
  background: #0a0a0a;
  padding: 4rem 1.5rem 2rem;
}
.lp-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp-footer__nav {
  display: flex;
  gap: 4rem;
}
.lp-footer__col {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.lp-footer__col strong {
  font-size: .8125rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.lp-footer__col a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.lp-footer__col a:hover { color: rgba(255,255,255,.8); }
.lp-footer__ig { display: inline-flex; align-items: center; }
.lp-footer__ig img { width: 22px; height: 22px; object-fit: contain; opacity: .45; transition: opacity .2s; }
.lp-footer__ig:hover img { opacity: .85; }
.lp-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .lp-nav__inner { gap: 1.25rem; }
  .lp-nav__link:not(.lp-nav__link--cta) { display: none; }
  /* Clamp flanks to outer 20% of viewport — can never reach centred text */
  .lp-hero__flank { height: 55%; max-width: 22vw; }
  .lp-hero__flank--left  { left: 0; }
  .lp-hero__flank--right { right: 0; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }

  .lp-steps { grid-template-columns: 1fr; }
  .lp-reviews { grid-template-columns: 1fr; }
  .lp-footer__inner { flex-direction: column; gap: 2rem; }
  .lp-footer__nav { gap: 2rem; flex-wrap: wrap; }
}

@media (max-width: 720px) {
  /* Hide flanks entirely — not enough horizontal room to show them without overlap */
  .lp-hero__flank { display: none; }
  .lp-nav { padding: .5rem 1rem; top: .75rem; }
  .lp-section { padding: 3.5rem 1.25rem; }
  .lp-hero { padding: 6rem 1.25rem 3rem; }
  .lp-stats { grid-template-columns: 1fr; }
}
