/* ============================================================
   vetclinic.info — styles.css
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0F172A;
  --navy-mid:   #1E293B;
  --teal:       #0D9488;
  --teal-light: #CCFBF1;
  --white:      #FFFFFF;
  --gray-50:    #F8FAFC;
  --gray-200:   #E2E8F0;
  --gray-500:   #64748B;
  --gray-800:   #1E293B;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-500);
  background: var(--gray-50);
}

img, svg { display: block; }

a { text-decoration: none; color: inherit; }

/* ---------- Layout ---------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* ---------- Typography ---------- */
h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: filter 0.15s, border-color 0.15s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { filter: brightness(1.1); }

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-secondary:hover { border-color: var(--teal); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--gray-50);
  text-align: center;
}

.hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.hero__badge { margin-bottom: 24px; }

.hero h1 { margin-bottom: 24px; }

.hero__sub {
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray-500);
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__trust {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
}

/* ============================================================
   INSIGHT STRIP
   ============================================================ */
.insight {
  background: var(--white);
  padding: 72px 0;
}

.insight__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.insight p {
  font-size: 20px;
  font-style: italic;
  color: var(--gray-800);
  font-weight: 400;
  line-height: 1.7;
}

/* ============================================================
   VALUE PROPS
   ============================================================ */
.valueprops { background: var(--gray-50); }

.valueprops__heading {
  text-align: center;
  margin-bottom: 48px;
}

.valueprops__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.valueprop-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--teal);
}

.valueprop-card h3 { margin-bottom: 12px; }

/* ============================================================
   LISTING MOCKUP
   ============================================================ */
.listing { background: var(--white); }

.listing__heading {
  text-align: center;
  margin-bottom: 12px;
}

.listing__sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 17px;
  color: var(--gray-500);
}

.listing__card-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.listing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.listing-card__promoted {
  position: absolute;
  top: 20px;
  right: 20px;
}

.listing-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  padding-right: 100px;
}

.listing-card__subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.listing-card__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.stars-svg { display: flex; gap: 2px; }

.listing-card__divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin-bottom: 20px;
}

.listing-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin-bottom: 24px;
}

.detail-row { display: flex; flex-direction: column; gap: 3px; }

.detail-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.5;
}

.listing-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  background: var(--teal);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  cursor: default;
  border: none;
  transition: filter 0.15s;
}
.listing-card__cta:hover { filter: brightness(1.08); }

.listing__disclaimer {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 20px;
}

/* ============================================================
   FOUNDING OFFER
   ============================================================ */
.founding {
  background: var(--navy);
  color: var(--white);
}

.founding__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.founding__eyebrow { margin-bottom: 20px; }

.founding h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.founding__body {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.founding__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.founding__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

.founding__list .check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--teal);
  margin-top: 2px;
}

.spots-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px;
}

.spots-card__heading {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.spots-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.spots-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.spot-city-specialty { display: flex; align-items: center; gap: 8px; }

.spot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
}

.spot-status {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
}

.spots-card__note {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: var(--gray-50);
  text-align: center;
}

.cta-section__inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 { margin-bottom: 16px; }

.cta-section__body {
  color: var(--gray-500);
  margin-bottom: 36px;
  font-size: 18px;
}

.cta-section__email {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-500);
}

.cta-section__email a {
  color: var(--teal);
  text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-mid);
  padding: 56px 0 0;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  gap: 32px;
}

.footer__brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--gray-500);
}

.footer__email {
  font-size: 14px;
  color: var(--gray-500);
}

.footer__email a {
  color: var(--gray-500);
  transition: color 0.15s;
}
.footer__email a:hover { color: var(--teal); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================================
   MOBILE — max-width 768px
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 64px 0; }

  h1 { font-size: 38px; }
  h2 { font-size: 28px; }

  .nav .btn { padding: 10px 16px; font-size: 15px; }

  .hero__sub { font-size: 17px; }
  .hero__buttons { flex-direction: column; align-items: center; }
  .hero__buttons .btn { width: 100%; max-width: 320px; text-align: center; }

  .valueprops__grid { grid-template-columns: 1fr; }

  .listing-card__details { grid-template-columns: 1fr; }
  .listing-card__name { padding-right: 80px; }

  .founding__inner { grid-template-columns: 1fr; gap: 40px; }

  .footer__top { flex-direction: column; }
}
