/* PestWatchAI — Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=DM+Serif+Display:ital@0;1&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; color: #1a1a1a; background: #f7f5f0; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ─────────────────────────────────────────────── */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  height: 62px;
  background: #fff;
  border-bottom: 1px solid #ece9e2;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.site-nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 1px;
}
.site-nav-logo span { color: #2d6a4f; }

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav-links a {
  font-size: 13.5px;
  color: #666;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  font-weight: 400;
}
.site-nav-links a:hover {
  background: #f4f2ed;
  color: #1a1a1a;
}
.site-nav-links a.active {
  color: #1a1a1a;
  font-weight: 500;
}

.site-nav-divider {
  width: 1px;
  height: 20px;
  background: #e8e4dc;
  margin: 0 8px;
}

.site-nav-cta {
  background: #2d6a4f !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 7px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  border: none !important;
  cursor: pointer !important;
  font-family: 'DM Sans', sans-serif !important;
  transition: background 0.2s !important;
  margin-left: 4px !important;
}
.site-nav-cta:hover {
  background: #1b5e38 !important;
  color: #fff !important;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  background: #2d6a4f;
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #1b5e38; }

.btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #ccc;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { border-color: #888; background: #f4f2ed; }

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: #1a1a1a;
  padding: 2.5rem 2.5rem 2rem;
  color: #fff;
}
.site-footer-inner {
  max-width: 960px;
  margin: 0 auto;
}
.site-footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.5px;
  display: block;
  margin-bottom: 0.6rem;
}
.site-footer-logo span { color: #5dcaa5; }
.footer-tagline {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #555;
  border-top: 1px solid #2a2a2a;
  padding-top: 1.25rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-email { color: #5dcaa5; transition: color 0.15s; }
.footer-email:hover { color: #fff; }

/* ─── EYEBROW ─────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #2d6a4f;
  margin-bottom: 0.75rem;
}
.eyebrow.light { color: #5dcaa5; }

/* ─── MOBILE ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .site-nav { padding: 0 1.25rem; }
  .site-nav-links a:not(.site-nav-cta) { display: none; }
  .site-nav-divider { display: none; }
  .site-footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer { padding: 2.5rem 1.5rem 1.5rem; }
}
