/* ============================================================
   VetMate — Shared Stylesheet
   ============================================================ */

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

:root {
  --vm-teal: #2bbfa8;
  --vm-teal-dark: #1e9488;
  --vm-teal-light: #e6f8f6;
  --vm-teal-mid: #b0ece5;
  --vm-coral: #e8604a;
  --vm-coral-light: #fdf0ed;
  --vm-coral-dark: #c04a36;
  --bg: #ffffff;
  --bg2: #f5f4f0;
  --text: #1a1a18;
  --muted: #6b6a63;
  --border: rgba(60,58,50,0.15);
  --border-med: rgba(60,58,50,0.3);
  --r-md: 8px;
  --r-lg: 12px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg2);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.page {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 0 0.5px var(--border);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-weight: 500; line-height: 1.25; }
p { color: var(--muted); line-height: 1.7; }
a { color: inherit; }

.teal-link { color: var(--vm-teal-dark); text-decoration: none; }
.teal-link:hover { text-decoration: underline; }

/* ── NAV ── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; border-bottom: 0.5px solid var(--border);
  background: var(--bg); position: sticky; top: 0; z-index: 100;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px; text-decoration: none;
}
/* Real logo image */
.nav-logo-img {
  height: 36px; width: auto; display: block;
  object-fit: contain;
}
/* Fallback — hidden unless image errors */
.nav-logo-fallback {
  display: none; align-items: center; gap: 8px;
}
.nav-logo-mark-fb {
  width: 32px; height: 32px; background: var(--vm-teal);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark-fb svg { width: 19px; height: 19px; }
/* Keep old .nav-logo-mark in case referenced elsewhere */
.nav-logo-mark {
  width: 32px; height: 32px; background: var(--vm-teal);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 19px; height: 19px; }
.nav-brand { font-size: 17px; font-weight: 500; color: var(--text); }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: 13px; color: var(--muted); text-decoration: none;
  padding-bottom: 2px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  border-bottom: 1.5px solid var(--vm-teal);
}
.nav-cta {
  background: var(--vm-teal); color: #fff; border: none;
  border-radius: var(--r-md); padding: 9px 18px; font-size: 13px;
  font-weight: 500; cursor: pointer; font-family: inherit; text-decoration: none;
}
.nav-cta:hover { background: var(--vm-teal-dark); }

.nav-login {
  background: #2ff5bc; color: #fff; border: none;
  border-radius: var(--r-md); padding: 9px 18px; font-size: 13px;
  font-weight: 500; cursor: pointer; font-family: inherit; text-decoration: none;
}
.nav-login:hover { background: #25c496; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 56px 32px 48px;
  border-bottom: 0.5px solid var(--border);
  background: var(--bg);
  max-width: 640px;
}
.page-hero h1 {
  font-size: 34px; color: var(--text);
  margin-bottom: 14px; margin-top: 10px;
}
.page-hero p { font-size: 16px; }

/* ── SECTION ── */
.section {
  padding: 52px 32px;
  border-bottom: 0.5px solid var(--border);
  background: var(--bg);
}
.section.bg2 { background: var(--bg2); }
.section-label {
  font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--vm-teal-dark); margin-bottom: 10px;
}
.section h2 {
  font-size: 24px; color: var(--text);
  margin-bottom: 14px;
}
.section > p { font-size: 15px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--vm-teal); color: #fff; border: none;
  border-radius: var(--r-md); padding: 12px 22px; font-size: 14px;
  font-weight: 500; cursor: pointer; font-family: inherit; text-decoration: none;
  text-align: center;
}
.btn-primary:hover { background: var(--vm-teal-dark); }

.btn-coral {
  display: inline-block; background: var(--vm-coral); color: #fff; border: none;
  border-radius: var(--r-md); padding: 12px 22px; font-size: 14px;
  font-weight: 500; cursor: pointer; font-family: inherit; text-decoration: none;
  text-align: center;
}
.btn-coral:hover { background: var(--vm-coral-dark); }

.btn-secondary {
  display: inline-block; background: transparent; color: var(--text);
  border: 0.5px solid var(--border-med); border-radius: var(--r-md);
  padding: 12px 22px; font-size: 14px; cursor: pointer; font-family: inherit;
  text-decoration: none; text-align: center;
}
.btn-secondary:hover { background: var(--bg2); }

.btn-outline-teal {
  display: inline-block; background: transparent; color: var(--vm-teal-dark);
  border: 1.5px solid var(--vm-teal); border-radius: var(--r-md);
  padding: 11px 22px; font-size: 14px; cursor: pointer; font-family: inherit;
  text-decoration: none; text-align: center;
}
.btn-outline-teal:hover { background: var(--vm-teal-light); }

.btn-white {
  display: inline-block; background: #fff; color: var(--vm-teal-dark); border: none;
  border-radius: var(--r-md); padding: 12px 22px; font-size: 14px;
  font-weight: 500; cursor: pointer; font-family: inherit; text-decoration: none;
  text-align: center;
}
.btn-white:hover { background: #f0faf9; }

.btn-outline-white {
  display: inline-block; background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5); border-radius: var(--r-md);
  padding: 12px 22px; font-size: 14px; cursor: pointer; font-family: inherit;
  text-decoration: none; text-align: center;
}
.btn-outline-white:hover { border-color: #fff; }

/* ── TAGS ── */
.showcase-tag {
  display: inline-block; background: var(--vm-teal-light); color: var(--vm-teal-dark);
  font-size: 11px; font-weight: 500; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 8px;
}
.showcase-tag.coral { background: var(--vm-coral-light); color: var(--vm-coral-dark); }

/* ── HERO (homepage) ── */
.hero {
  padding: 56px 32px 48px; border-bottom: 0.5px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--bg);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--vm-teal-light); color: var(--vm-teal-dark);
  font-size: 12px; font-weight: 500; padding: 5px 12px;
  border-radius: 20px; margin-bottom: 18px;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--vm-teal); border-radius: 50%; }
.hero-text h1 { font-size: 30px; color: var(--text); margin-bottom: 16px; }
.hero-text h1 em { font-style: normal; color: var(--vm-teal-dark); }
.hero-text p { font-size: 15px; margin-bottom: 26px; }
.hero-actions { display: flex; flex-direction: column; gap: 10px; }
.hero-trust { font-size: 12px; color: var(--muted); margin-top: 12px; }
.stars { color: var(--vm-coral); }

.hero-screenshot { position: relative; padding-bottom: 18px; }
.screenshot-frame {
  background: var(--bg2); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.screenshot-frame img { width: 100%; display: block; }
.screenshot-fallback {
  width: 100%; aspect-ratio: 4/5; background: var(--vm-teal-light);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; color: var(--vm-teal-dark); font-size: 13px;
}
.screenshot-fallback i { font-size: 36px; color: var(--vm-teal); }
.screenshot-badge {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  background: var(--vm-teal); color: #fff; font-size: 11px; font-weight: 500;
  padding: 5px 16px; border-radius: 20px; white-space: nowrap;
}

/* ── PROOF STRIP ── */
.proof-strip {
  padding: 16px 32px; background: var(--vm-teal-light);
  border-bottom: 0.5px solid var(--vm-teal-mid);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.proof-strip > span { font-size: 12px; color: var(--vm-teal-dark); }
.proof-pill {
  background: #fff; border: 0.5px solid var(--vm-teal-mid);
  border-radius: 20px; padding: 4px 14px; font-size: 12px; color: var(--vm-teal-dark);
}
.proof-pill-right { margin-left: auto; font-size: 12px; color: var(--vm-teal-dark); }

/* ── FOUNDER BLOCK ── */
.founder-block {
  background: var(--vm-teal-light); border-left: 3px solid var(--vm-teal);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 22px 24px; margin-top: 28px;
  display: flex; gap: 16px; align-items: flex-start;
}
.founder-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--vm-teal-mid); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 15px; color: var(--vm-teal-dark);
}
.founder-quote blockquote {
  font-size: 14px; color: var(--text); line-height: 1.65;
  margin-bottom: 8px; font-style: italic;
}
.founder-credit { font-size: 12px; color: var(--vm-teal-dark); font-weight: 500; }

/* ── SHOWCASE ── */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 32px; }
.showcase-img-wrap {
  background: var(--bg2); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; margin-bottom: 14px;
}
.showcase-img-wrap img { width: 100%; display: block; }
.showcase-img-fallback {
  width: 100%; aspect-ratio: 4/3; background: var(--vm-teal-light);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; color: var(--vm-teal-dark); font-size: 13px;
}
.showcase-img-fallback.tall { aspect-ratio: 4/5; }
.showcase-img-fallback i { font-size: 32px; color: var(--vm-teal); }
.showcase-item h3 { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.showcase-item p { font-size: 13px; }

/* ── FEATURE CARDS (2-col) ── */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.feature-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-top: 2px solid var(--vm-teal); border-radius: var(--r-lg); padding: 22px;
}
.feature-card.coral-top { border-top-color: var(--vm-coral); }

/* ── FEATURE CARDS (3-col) ── */
.features-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 28px; }
.feature-card-lg {
  background: var(--bg); border: 0.5px solid var(--border);
  border-top: 2px solid var(--vm-teal); border-radius: var(--r-lg); padding: 22px;
}
.feature-card-lg.coral-top { border-top-color: var(--vm-coral); }
.feature-card-lg h3 { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.feature-card-lg p { font-size: 13px; }

.feature-card h3 { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.feature-card p { font-size: 13px; }

.feature-icon {
  width: 36px; height: 36px; background: var(--vm-teal-light);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 12px;
}
.feature-icon i { font-size: 18px; color: var(--vm-teal-dark); }
.feature-icon.coral { background: var(--vm-coral-light); }
.feature-icon.coral i { color: var(--vm-coral-dark); }
.feature-icon.grey { background: var(--bg2); }
.feature-icon.grey i { color: var(--muted); }

/* ── FEATURE ROW (full-width alternating) ── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.feature-row.feature-row-rev { direction: rtl; }
.feature-row.feature-row-rev > * { direction: ltr; }
.feature-row-text h2 { font-size: 22px; color: var(--text); margin: 10px 0 12px; }
.feature-row-text p { font-size: 15px; margin-bottom: 16px; }
.feature-list { list-style: none; margin-top: 16px; }
.feature-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--muted); padding: 5px 0;
  border-bottom: 0.5px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--vm-teal); font-size: 15px; flex-shrink: 0; margin-top: 2px; }

/* ── INTEGRATION CARDS ── */
.integration-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 28px; }
.integration-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
}
.integration-card h3 { font-size: 15px; font-weight: 500; color: var(--text); margin: 12px 0 8px; }
.integration-card p { font-size: 13px; margin-bottom: 14px; }
.int-badge {
  display: inline-block; background: var(--vm-teal-light); color: var(--vm-teal-dark);
  font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 20px;
}
.int-badge.coral { background: var(--vm-coral-light); color: var(--vm-coral-dark); }
.int-badge.grey { background: var(--bg2); color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.testi-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
}
.testi-stars { color: var(--vm-coral); font-size: 14px; margin-bottom: 10px; }
.testi-card blockquote { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 12px; }
.testi-name { font-size: 12px; font-weight: 500; color: var(--muted); }
.testi-role { font-size: 11px; color: var(--muted); }

/* ── PRICING (homepage) ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 28px; }
.price-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
}
.price-card.featured { border: 2px solid var(--vm-teal); }
.price-badge {
  display: inline-block; background: var(--vm-teal-light); color: var(--vm-teal-dark);
  font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.price-name { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.price-amount { font-size: 28px; font-weight: 500; color: var(--text); }
.price-amount span { font-size: 13px; color: var(--muted); font-weight: 400; }
.price-desc { font-size: 12px; color: var(--muted); margin: 6px 0 14px; line-height: 1.5; }
.price-features { list-style: none; }
.price-features li {
  font-size: 12px; color: var(--muted); padding: 4px 0;
  display: flex; gap: 6px; align-items: flex-start;
}
.price-features li i { color: var(--vm-teal); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.price-btn {
  display: block; text-align: center; margin-top: 16px; background: var(--vm-teal);
  color: #fff; border: none; border-radius: var(--r-md); padding: 10px 0;
  font-size: 13px; cursor: pointer; width: 100%; font-family: inherit; text-decoration: none;
}
.price-btn:hover { background: var(--vm-teal-dark); }
.price-btn.outline {
  background: transparent; color: var(--text); border: 0.5px solid var(--border-med);
}
.price-btn.outline:hover { background: var(--bg2); }

/* ── PRICING FULL (pricing page) ── */
.pricing-grid-full { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 28px; }
.price-card-full {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; position: relative;
}
.price-card-full.featured { border: 2px solid var(--vm-teal); }
.featured-ribbon {
  position: absolute; top: -1px; right: 20px;
  background: var(--vm-teal); color: #fff;
  font-size: 11px; font-weight: 500; padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}
.price-card-header { padding-bottom: 20px; border-bottom: 0.5px solid var(--border); margin-bottom: 20px; }
.price-name-lg { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.price-amount-lg { font-size: 36px; font-weight: 500; color: var(--text); padding: 8px 0; }
.price-amount-lg span { font-size: 15px; color: var(--muted); font-weight: 400; }
.price-desc-lg { font-size: 14px; color: var(--muted); line-height: 1.6; margin-top: 8px; }
.price-features-full { list-style: none; }
.price-features-full li {
  font-size: 13px; color: var(--muted); padding: 7px 0;
  display: flex; gap: 8px; align-items: flex-start;
  border-bottom: 0.5px solid var(--border);
}
.price-features-full li:last-child { border-bottom: none; }
.price-features-full li i { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.price-features-full li i.ti-check { color: var(--vm-teal); }
.price-features-full li i.ti-x { color: var(--border-med); }
.price-features-full li.disabled { color: #c0beb8; }
.price-btn-full {
  display: block; text-align: center; margin-top: 20px; background: var(--vm-teal);
  color: #fff; border: none; border-radius: var(--r-md); padding: 13px 0;
  font-size: 14px; cursor: pointer; width: 100%; font-family: inherit;
  font-weight: 500; text-decoration: none;
}
.price-btn-full:hover { background: var(--vm-teal-dark); }
.price-btn-full.outline {
  background: transparent; color: var(--text); border: 1px solid var(--border-med);
}
.price-btn-full.outline:hover { background: var(--bg2); }
.price-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ── COMPARE TABLE ── */
.compare-table-wrap { margin-top: 28px; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th {
  padding: 12px 16px; text-align: center; font-weight: 500;
  background: var(--bg2); border-bottom: 2px solid var(--border);
  font-size: 13px; color: var(--text);
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 11px 16px; text-align: center;
  border-bottom: 0.5px solid var(--border); color: var(--muted); font-size: 13px;
}
.compare-table td:first-child { text-align: left; color: var(--text); }
.compare-table .featured-col { background: #f0fdfb; }
.compare-table th.featured-col { background: var(--vm-teal-light); color: var(--vm-teal-dark); }
.compare-table i.teal { color: var(--vm-teal); font-size: 16px; }
.compare-table i.muted { color: var(--border-med); font-size: 16px; }
.compare-table tr:last-child td { border-bottom: none; font-weight: 500; color: var(--text); }

/* ── FAQ ── */
.faq-list { margin-top: 28px; }
.faq-item {
  padding: 22px 0; border-bottom: 0.5px solid var(--border);
}
.faq-item:first-child { padding-top: 0; }
.faq-item h3 { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.faq-item p { font-size: 14px; }

/* ── ABOUT FOUNDER ── */
.about-founder {
  display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: start;
}
.about-founder-avatar {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--vm-teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 28px; color: var(--vm-teal-dark); flex-shrink: 0;
  overflow: hidden; border: 3px solid var(--vm-teal-mid);
}
.about-founder-avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.about-founder-text h2 { font-size: 22px; color: var(--text); margin: 10px 0 16px; }
.about-founder-text p { font-size: 15px; }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.value-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-top: 2px solid var(--vm-teal); border-radius: var(--r-lg); padding: 22px;
}
.value-card.coral-top { border-top-color: var(--vm-coral); }
.value-card h3 { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.value-card p { font-size: 13px; }

/* ── TIMELINE ── */
.timeline { margin-top: 32px; position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px;
  bottom: 8px; width: 2px; background: var(--vm-teal-mid);
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -24px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--vm-teal); border: 2px solid var(--bg); box-shadow: 0 0 0 2px var(--vm-teal);
}
.timeline-dot.coral { background: var(--vm-coral); box-shadow: 0 0 0 2px var(--vm-coral); }
.timeline-year { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--vm-teal-dark); margin-bottom: 4px; }
.timeline-item h3 { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.timeline-item p { font-size: 14px; }

/* ── CONTACT CARDS ── */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 28px; }
.contact-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
}
.contact-card h3 { font-size: 15px; font-weight: 500; color: var(--text); margin: 12px 0 6px; }
.contact-card p { font-size: 14px; }

/* ── GUIDE CARDS ── */
.guide-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 4px; }
.guide-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.guide-card-icon {
  background: var(--bg2); border-bottom: 0.5px solid var(--border);
  height: 200px; overflow: hidden;
}
.guide-card-icon img {
  width: 100%; height: 100%; display: block; object-fit: cover; object-position: center;
}
.guide-icon-fallback {
  height: 140px; background: var(--vm-teal-light);
  display: flex; align-items: center; justify-content: center;
}
.guide-icon-fallback i { font-size: 40px; color: var(--vm-teal); }
.guide-icon-fallback.coral { background: var(--vm-coral-light); }
.guide-icon-fallback.coral i { color: var(--vm-coral); }
.guide-card-body { padding: 24px; }
.guide-card-body h2 { font-size: 18px; color: var(--text); margin: 8px 0 12px; }
.guide-card-body p { font-size: 14px; margin-bottom: 16px; }
.guide-toc { list-style: none; margin-top: 16px; }
.guide-toc li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13px; color: var(--muted); padding: 5px 0;
  border-bottom: 0.5px solid var(--border);
}
.guide-toc li:last-child { border-bottom: none; }
.guide-toc li i { color: var(--vm-teal); font-size: 13px; flex-shrink: 0; margin-top: 2px; }

/* ── STEPS ── */
.steps { margin-top: 32px; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 28px; border-bottom: 0.5px solid var(--border);
  margin-bottom: 28px;
}
.step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--vm-teal);
  color: #fff; font-size: 16px; font-weight: 500; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.step-num.coral { background: var(--vm-coral); }
.step-body h3 { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.step-body p { font-size: 14px; }

/* ── SUPPORT CARDS ── */
.support-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 28px; }
.support-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
}
.support-card h3 { font-size: 15px; font-weight: 500; color: var(--text); margin: 12px 0 8px; }
.support-card p { font-size: 14px; }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center; padding: 60px 32px;
  background: var(--vm-teal);
}
.final-cta h2 { font-size: 26px; font-weight: 500; color: #fff; margin-bottom: 12px; }
.final-cta p { font-size: 15px; color: rgba(255,255,255,0.82); margin-bottom: 28px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.trial-note { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 14px; }

/* ── FOOTER ── */
.footer {
  padding: 22px 32px; border-top: 0.5px solid var(--border); background: var(--bg);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-left { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

/* ════════════════════════════════════════════
   HAMBURGER MENU
   ════════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none; border: none; padding: 4px;
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.hamburger:hover { background: var(--bg2); }
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}
/* Open state — animates into X */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 57px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  padding: 12px 0;
  overflow-y: auto;
  border-top: 0.5px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  /* constrain to page max-width if page is centred */
  max-width: 960px;
  margin: 0 auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  font-size: 16px; color: var(--text); text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  transition: background 0.1s;
}
.mobile-nav a:hover { background: var(--bg2); }
.mobile-nav a i { font-size: 18px; color: var(--muted); width: 22px; text-align: center; }
.mobile-nav a.active { color: var(--vm-teal-dark); font-weight: 500; }
.mobile-nav a.active i { color: var(--vm-teal); }
.mobile-nav-cta {
  margin: 16px 24px 8px;
  display: block; text-align: center;
  background: var(--vm-teal); color: #fff !important;
  border-radius: var(--r-md); padding: 14px 22px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  border-bottom: none !important;
}
.mobile-nav-cta:hover { background: var(--vm-teal-dark) !important; }
.mobile-nav-cta i { color: #fff !important; }

.mobile-nav-login {
  margin: 16px 24px 8px;
  display: block; text-align: center;
  background: #2ff5bc; color: #fff !important;
  border-radius: var(--r-md); padding: 14px 22px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  border: none; border-bottom: none !important;
}
.mobile-nav-login:hover { background: #25c496 !important; }
.mobile-nav-login i { color: #fff !important; }

/* Prevent body scroll when nav is open */
body.nav-open { overflow: hidden; }

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (max 768px)
   ════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Layout grids → single column */
  .hero,
  .showcase,
  .features-grid,
  .features-grid-3,
  .testimonials,
  .pricing-grid,
  .pricing-grid-full,
  .values-grid,
  .contact-cards,
  .guide-cards,
  .support-cards,
  .integration-cards,
  .feature-row,
  .about-founder { grid-template-columns: 1fr; }

  .feature-row.feature-row-rev { direction: ltr; }

  /* Nav */
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .nav-login  { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 36px 20px 32px; gap: 24px; }
  .hero-screenshot { display: none; }
  .hero-text h1 { font-size: 26px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-coral { width: 100%; }

  /* Page hero */
  .page-hero { padding: 36px 20px 28px; }
  .page-hero h1 { font-size: 26px; }

  /* Sections */
  .section { padding: 36px 20px; }
  .section h2 { font-size: 20px; }

  /* Proof strip */
  .proof-strip { padding: 14px 20px; gap: 8px; }
  .proof-pill-right { margin-left: 0; }

  /* Founder */
  .about-founder { gap: 24px; }
  .about-founder-avatar { width: 100px; height: 100px; }

  /* Pricing */
  .pricing-grid-full { grid-template-columns: 1fr; }
  .compare-table-wrap { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 8px 10px; }

  /* Final CTA */
  .final-cta { padding: 44px 20px; }
  .final-cta h2 { font-size: 22px; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .final-cta-actions .btn-white,
  .final-cta-actions .btn-outline-white { width: 100%; max-width: 320px; }

  /* Footer */
  .footer { padding: 18px 20px; flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { justify-content: center; }

  /* Feature rows */
  .feature-row { gap: 24px; }
  .feature-row-img { order: -1; }

  /* Timeline */
  .timeline { padding-left: 22px; }

  /* Guide layout */
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; height: auto; }
  .guide-content { padding: 28px 20px; }

  /* Buttons — full width in key spots */
  .price-btn-full { font-size: 15px; padding: 14px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 480px)
   ════════════════════════════════════════════ */
@media (max-width: 480px) {

  .hero-text h1 { font-size: 23px; }
  .page-hero h1 { font-size: 23px; }
  .section h2 { font-size: 18px; }
  .final-cta h2 { font-size: 20px; }

  /* Stack proof pills */
  .proof-strip { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Feature cards full padding tweak */
  .feature-card, .feature-card-lg, .value-card { padding: 16px; }

  /* Testi cards */
  .testimonials { grid-template-columns: 1fr; }

  /* About founder — stack avatar above text on very small screens */
  .about-founder { grid-template-columns: 1fr; text-align: center; }
  .about-founder-avatar { margin: 0 auto; }

  /* Timeline tighten */
  .timeline::before { left: 5px; }
  .timeline-dot { left: -18px; width: 12px; height: 12px; }
  .timeline { padding-left: 18px; }

  /* Steps */
  .step { gap: 14px; }
  .step-num { width: 34px; height: 34px; font-size: 14px; }

  /* Guide cards */
  .guide-card-icon { height: 140px; }

  /* About founder */
  .about-founder-avatar { width: 120px; height: 120px; }

  /* Founder block (homepage) */
  .founder-block { padding: 18px 16px; gap: 12px; }
  .founder-avatar { width: 38px; height: 38px; font-size: 13px; }

  /* Footer */
  .footer { gap: 10px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Pricing compare table — hide on very small, show scroll hint */
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — TINY (max 360px)
   ════════════════════════════════════════════ */
@media (max-width: 360px) {
  .page-hero h1 { font-size: 20px; }
  .section h2 { font-size: 16px; }
}

/* Demo link in mobile nav */
.mobile-nav-demo {
  color: var(--vm-coral-dark) !important;
}
.mobile-nav-demo i { color: var(--vm-coral) !important; }
