/* Bergen County Pest Control — styles */
:root{
  --bg:#0e1116;
  --card:#ffffff;
  --ink:#0c0d0f;
  --muted:#6b7280;
  --accent:#16a34a; /* green for pest control */
  --ring: rgba(22,163,74,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;background:#fff;color:var(--ink);}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:0 20px}

.site-header{position:sticky;top:0;background:#fff;border-bottom:1px solid #eee;z-index:10}
.header-wrap{display:flex;align-items:center;justify-content:space-between;min-height:64px;padding:8px 0}
.brand{display:flex;align-items:center;gap:.5rem;font-weight:700}
.brand-text{font-size:.95rem;line-height:1.2}
.header-nav{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.header-nav a{font-size:.9rem;white-space:nowrap}
.btn{display:inline-block;padding:.8rem 1rem;border:1px solid #e5e7eb;border-radius:.6rem;font-weight:600}
.btn-small{padding:.5rem .7rem}
.btn-primary{background:var(--accent);border-color:var(--accent);color:#fff}
.btn-ghost{background:transparent}

.hero{padding:32px 0;background:linear-gradient(180deg,#f0fdf4, #fff)}
.hero-grid{display:grid;grid-template-columns:1fr;gap:24px}
.hero-copy h1{font-size:1.75rem;line-height:1.2;margin:0 0 12px}
.accent{color:var(--accent)}
.hero-copy p{color:var(--muted);max-width:52ch;margin-bottom:16px}
.hero-ctas{display:flex;flex-direction:column;gap:12px;margin:16px 0}
.trust-badges{list-style:none;padding:0;margin:12px 0 0;display:flex;gap:12px;flex-wrap:wrap;color:#111}

.hero-card{background:var(--card);border:1px solid #e5e7eb;border-radius:1rem;padding:16px}
.hero-card h2{margin:0 0 .5rem}

label{display:block;margin:.75rem 0 .35rem;font-weight:600}
input, select, textarea{width:100%;padding:.8rem;border:1px solid #d1d5db;border-radius:.6rem;font:inherit}
input:focus, select:focus, textarea:focus{outline:none;box-shadow:0 0 0 4px var(--ring);border-color:var(--accent)}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.hidden{display:none}
.success{margin-top:.75rem;color:#065f46;background:#ecfdf5;border:1px solid #a7f3d0;padding:.6rem .8rem;border-radius:.5rem}
.error{margin-top:.75rem;color:#7f1d1d;background:#fef2f2;border:1px solid #fecaca;padding:.6rem .8rem;border-radius:.5rem}
.checkbox-group{display:flex;flex-direction:column;gap:12px;margin-top:.75rem}
.checkbox{display:flex;align-items:flex-start;gap:.75rem;font-weight:500;cursor:pointer}
.checkbox input[type="checkbox"]{width:auto;margin-top:2px;cursor:pointer}
.checkbox-text{display:flex;flex-direction:column;gap:2px}
.checkbox-label{font-weight:600}
.checkbox-sublabel{font-size:.9rem;color:var(--muted);font-weight:400}
.fine-print{font-size:.85rem;color:var(--muted);margin-top:.5rem}

.how{padding:48px 0}
.how h2, .faq h2{margin:0 0 12px}
.steps{display:grid;grid-template-columns:1fr;gap:12px}
.step{border:1px solid #e5e7eb;border-radius:.8rem;padding:16px;background:#fff}
.num{display:inline-grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#dcfce7;color:#065f46;font-weight:700;margin-right:8px}

.faq{padding:24px 0 56px}
.zip-grid{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px}
.zip{display:inline-block;padding:.35rem .55rem;border:1px solid #e5e7eb;border-radius:.5rem;background:#fff;font-size:.95rem}

.site-footer{border-top:1px solid #eee;background:#fff}
.footer-grid{display:grid;grid-template-columns:1fr;gap:12px;padding:20px 0}
.foot-meta{color:var(--muted);font-size:.9rem}

/* Larger screens */
@media (min-width: 768px){
  .hero{padding:48px 0}
  .hero-copy h1{font-size:2rem}
  .hero-ctas{flex-direction:row}
  .header-nav{gap:12px}
  .header-nav a{font-size:1rem}
}

@media (min-width: 880px){
  .hero-grid{grid-template-columns:1.2fr .8fr;align-items:center}
  .steps{grid-template-columns:repeat(3, 1fr)}
  .footer-grid{grid-template-columns:2fr 1fr 1fr;align-items:center}
}
