/* =========================================================
   BIN PATROL — Founders Landing Page
   Theme pulled from the mascot banner: charcoal + army green
   + gold, cream text, flag accents, military/vintage feel.
   ========================================================= */

:root {
  --charcoal:   #1a1c18;
  --charcoal-2: #23261f;
  --panel:      #2b2f25;
  --army:       #4a5d23;
  --army-light: #6b7d3a;
  --gold:       #e0b13a;
  --gold-deep:  #c8961f;
  --cream:      #f3ead6;
  --cream-dim:  #cfc7b4;
  --red:        #b22234;
  --blue:       #1f3a5f;
  --shadow:     0 10px 30px rgba(0,0,0,.35);
  --radius:     14px;
  --maxw:       1140px;

  --font-display: "Black Ops One", "Oswald", sans-serif;
  --font-head:    "Oswald", "Arial Narrow", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--cream);
  background-color: var(--charcoal);
  background-image:
    radial-gradient(circle at 20% 0%, rgba(74,93,35,.18), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(224,177,58,.08), transparent 35%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Faint fixed "scene" behind the whole page — mascot, truck, flag,
   neighborhood pulled from the banner. Kept low-opacity so all text
   stays easy to read. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("../assets/bg-scene.jpg") center top / cover no-repeat;
  opacity: .10;
  pointer-events: none;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.container-narrow { max-width: 820px; }
.center { text-align: center; }

/* ---------- Headings ---------- */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.1; margin: 0 0 .5em; }
.accent { color: var(--gold); }
.gold { color: var(--gold); }

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  text-align: center;
  font-weight: 700;
}
.section-lead {
  text-align: center;
  color: var(--cream-dim);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 2.2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  text-align: center;
  line-height: 1.15;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #23200f;
  box-shadow: 0 6px 0 rgba(0,0,0,.25), var(--shadow);
}
.btn-gold:hover { box-shadow: 0 8px 0 rgba(0,0,0,.25), var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: rgba(224,177,58,.12); }
.btn-sm  { padding: .55rem 1rem;   font-size: .85rem; }
.btn-lg  { padding: .9rem 1.8rem;  font-size: 1.05rem; }
.btn-xl  { padding: 1.1rem 2.4rem; font-size: 1.25rem; }
.btn-block { display: block; width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20,22,18,.92);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--gold-deep);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: .6rem;
  padding-bottom: .6rem;
}
.brand { display: flex; flex-direction: column; line-height: 1; color: var(--cream); }
.brand:hover { text-decoration: none; }
.brand-stars { color: var(--gold); font-size: .6rem; letter-spacing: .3em; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: .02em;
}
.brand-badge { font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); }
.nav-links { margin-left: auto; display: flex; gap: 1.4rem; }
.nav-links a {
  color: var(--cream); font-family: var(--font-head); text-transform: uppercase;
  font-size: .9rem; letter-spacing: .03em;
}
.nav-links a:hover { color: var(--gold); text-decoration: none; }

/* ---------- Hero ---------- */
.hero { padding: 3.2rem 0 2.6rem; border-bottom: 1px solid rgba(224,177,58,.2); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.4rem;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .9rem;
  margin: 0 0 .8rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.hero-sub { font-size: 1.15rem; color: var(--cream-dim); max-width: 36ch; }
.offer-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: .7rem; padding: 0;
  margin: 1.4rem 0;
}
.offer-chips li {
  background: var(--panel);
  border: 1px solid var(--army-light);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .95rem;
  font-weight: 600;
}
.chip-strong { color: var(--gold); font-family: var(--font-head); font-size: 1.05rem; }
.hero-cta-row { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.cta-reassure { font-size: .85rem; color: var(--cream-dim); }
.cta-reassure.light { color: rgba(255,255,255,.85); }

.hero-art { position: relative; }
.hero-mascot {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  border: 4px solid var(--gold-deep);
  box-shadow: var(--shadow);
  margin: 0 auto;
}

/* ---------- Founders bar / counter ---------- */
.founders-bar {
  background:
    linear-gradient(180deg, rgba(74,93,35,.35), rgba(43,47,37,.6)),
    var(--charcoal-2);
  padding: 3rem 0;
  border-top: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  text-align: center;
}
.counter-card {
  background: var(--charcoal);
  border: 2px solid var(--army-light);
  border-radius: var(--radius);
  max-width: 760px;
  margin: 0 auto;
  padding: 1.8rem 1.6rem 2rem;
  box-shadow: var(--shadow);
}
.counter-numbers {
  display: flex; align-items: center; justify-content: center;
  gap: 1.4rem; flex-wrap: wrap; margin-bottom: 1.4rem;
}
.counter-block { display: flex; flex-direction: column; min-width: 90px; }
.counter-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
}
.counter-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--cream-dim); }
.counter-divider { width: 2px; height: 48px; background: rgba(224,177,58,.35); }

.progress {
  height: 18px;
  background: #15170f;
  border: 1px solid var(--army-light);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 0 1.6rem;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--army-light), var(--gold));
  border-radius: 999px;
  transition: width 1.2s ease;
}

.countdown { margin-bottom: 1.6rem; }
.countdown-caption {
  text-transform: uppercase; letter-spacing: .1em; font-size: .85rem;
  color: var(--cream-dim); margin: 0 0 .6rem;
}
.countdown-grid { display: flex; justify-content: center; gap: .7rem; flex-wrap: wrap; }
.cd-cell {
  background: var(--panel);
  border: 1px solid var(--army-light);
  border-radius: 10px;
  padding: .6rem .9rem;
  min-width: 70px;
}
.cd-num { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--cream); line-height: 1; }
.cd-unit { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cream-dim); }

/* ---------- Generic sections ---------- */
.section { padding: 3.4rem 0; }
/* Semi-transparent fills let the faint background scene show through
   consistently across the page while keeping strong text contrast. */
.section-alt { background: rgba(35, 38, 31, .62); }
.section-dark {
  background:
    linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.45)),
    rgba(20, 22, 18, .72);
  border-top: 1px solid rgba(224,177,58,.15);
  border-bottom: 1px solid rgba(224,177,58,.15);
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step {
  background: var(--panel);
  border: 1px solid var(--army-light);
  border-radius: var(--radius);
  padding: 1.6rem;
  text-align: center;
}
.step-num {
  width: 54px; height: 54px; margin: 0 auto .9rem;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.5rem; color: #23200f;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 4px 0 var(--gold-deep);
}
.step h3 { color: var(--gold); text-transform: uppercase; font-size: 1.15rem; }
.step p { color: var(--cream-dim); margin: 0; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.feature-card {
  background: var(--charcoal);
  border: 1px solid var(--army-light);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 1.4rem;
}
.feature-icon { font-size: 1.8rem; display: block; margin-bottom: .5rem; }
.feature-card h3 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: .3rem; }
.feature-card p { color: var(--cream-dim); margin: 0; font-size: .96rem; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.6rem; align-items: start; }
.price-card {
  position: relative;
  background: var(--panel);
  border: 2px solid var(--army-light);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.price-card.featured { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(224,177,58,.12), var(--shadow); }
.price-flag {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #23200f; font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; font-size: .8rem;
  padding: .3rem 1rem; border-radius: 999px; white-space: nowrap;
}
.price-name { text-transform: uppercase; color: var(--cream); margin-top: .4rem; }
.price-amount { display: flex; align-items: baseline; gap: .2rem; }
.price-num { font-family: var(--font-display); font-size: 3.4rem; color: var(--gold); line-height: 1; }
.price-per { font-size: 1.1rem; color: var(--cream-dim); }
.price-strike { color: var(--cream-dim); font-size: .9rem; margin: .2rem 0 1rem; }
.price-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.price-list li { padding: .45rem 0 .45rem 1.7rem; position: relative; border-bottom: 1px dashed rgba(224,177,58,.18); }
.price-list li::before { content: "✔"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.price-side { display: grid; gap: 1.2rem; }
.mini-card {
  background: var(--charcoal);
  border: 2px solid var(--army-light);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.vet-card { border-color: var(--red); }
.hoa-card { border-color: var(--blue); }
.mini-tag {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em;
  font-size: .75rem; color: var(--gold); margin-bottom: .4rem;
}
.mini-card h3 { text-transform: uppercase; font-size: 1.15rem; }
.mini-big { font-family: var(--font-display); font-size: 2rem; color: var(--gold); margin: .2rem 0 .6rem; }
.mini-card p { color: var(--cream-dim); font-size: .95rem; }
.mini-card .btn { margin-top: 1rem; }

.pricing-footnote { text-align: center; color: var(--gold); font-size: .95rem; margin-top: 2rem; }

/* Featured founders card wrapper */
.founders-feature { max-width: 640px; margin: 0 auto 2.6rem; }
.plan-freq-inline {
  font-size: .85rem; color: var(--cream-dim); font-weight: 400;
  text-transform: none; letter-spacing: 0;
}

/* Other plan tiers */
.plans-subhead {
  text-align: center; color: var(--cream); font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .03em; font-size: 1.1rem; margin: 0 0 1.4rem;
}
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 2.6rem;
}
.plan-card {
  background: var(--panel);
  border: 1px solid var(--army-light);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  text-align: center;
  display: flex; flex-direction: column;
}
.plan-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold); text-transform: uppercase; }
.plan-freq {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em;
  font-size: .78rem; color: var(--cream-dim); margin-bottom: .6rem;
}
.plan-card .price-amount { justify-content: center; margin-bottom: .9rem; }
.plan-card .price-num { font-size: 2.6rem; }
.plan-list { list-style: none; padding: 0; margin: 0 0 1.4rem; text-align: left; flex: 1; }
.plan-list li {
  padding: .4rem 0 .4rem 1.6rem; position: relative;
  border-bottom: 1px dashed rgba(224,177,58,.15);
  color: var(--cream-dim); font-size: .92rem;
}
.plan-list li::before { content: "✔"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Discount cards row */
.discounts-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
  max-width: 900px; margin: 0 auto;
}

/* Equipment "difference" section — 2x2 grid for 4 cards */
#difference .feature-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }

/* ---------- Health ---------- */
.health-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; margin-bottom: 1.6rem; }
.health-col {
  background: rgba(43,47,37,.6);
  border: 1px solid var(--army-light);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.health-head { color: var(--gold); text-transform: uppercase; font-size: 1.2rem; }
.health-list { margin: 0; padding-left: 1.1rem; }
.health-list li { margin-bottom: .7rem; color: var(--cream-dim); }
.health-list li strong { color: var(--cream); }
.health-cta-line { text-align: center; max-width: 760px; margin: 0 auto 1.6rem; font-size: 1.1rem; }

/* Pest-control callout band */
.pest-band {
  background: rgba(43,47,37,.6);
  border: 1px solid var(--army-light);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  margin: 0 auto 1.8rem;
  max-width: 960px;
  text-align: center;
}
.pest-head { color: var(--gold); text-transform: uppercase; font-size: 1.25rem; margin-bottom: .5rem; }
.pest-band > p { color: var(--cream-dim); max-width: 720px; margin: 0 auto; }
.pest-list {
  list-style: none; padding: 0; margin: 1.2rem auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem;
}
.pest-list li {
  background: var(--charcoal);
  border: 1px solid var(--army-light);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .92rem;
}
.pest-note { color: var(--gold); font-size: .95rem; margin: 0; }

/* ---------- Service area ---------- */
.area-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 2.4rem; flex-wrap: wrap;
}
.map-figure {
  flex: 0 0 auto;
  position: relative;
  text-align: center;
  margin: 0;
  padding: .5rem;
}
/* Soft gold glow behind the starburst (top-right of the state) */
.map-figure::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background: radial-gradient(circle at 72% 34%, rgba(224,177,58,.22), transparent 62%);
  pointer-events: none;
}
.map-figure img {
  position: relative;
  z-index: 1;
  width: 290px;
  max-width: 80vw;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.55));
}
.map-figure figcaption {
  position: relative;
  z-index: 1;
  color: var(--gold); font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .05em; font-size: .85rem; margin-top: .6rem;
}
.area-content { max-width: 560px; }
.town-list {
  list-style: none; padding: 0; margin: 0 0 1.4rem; max-width: 560px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem;
}
.town-list li {
  background: var(--panel); border: 1px solid var(--army-light);
  border-radius: 999px; padding: .5rem 1.1rem; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .03em; font-size: .9rem;
}
.area-note { text-align: center; color: var(--gold); max-width: 760px; margin: 0 auto; font-size: .95rem; }

/* ---------- Veteran band ---------- */
.vet-band {
  background:
    linear-gradient(180deg, rgba(31,58,95,.55), rgba(20,22,18,.92)),
    var(--blue);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  padding: 3rem 0;
  text-align: center;
}
.vet-band-inner { max-width: 760px; }
.vet-stars { color: var(--gold); letter-spacing: .4em; font-size: 1rem; }
.vet-band h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.8rem,4vw,2.8rem); margin: .4rem 0; }
.vet-band p { color: var(--cream); font-size: 1.1rem; }
.vet-discount { color: var(--gold); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; }
.faq-item {
  background: var(--charcoal);
  border: 1px solid var(--army-light);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 1rem 1.2rem;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .02em;
  font-size: 1.02rem; color: var(--cream);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-body { padding: 0 1.2rem 1.1rem; color: var(--cream-dim); }
.faq-body p { margin: 0; }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    linear-gradient(180deg, rgba(74,93,35,.5), rgba(20,22,18,.95)),
    var(--army);
  text-align: center;
  padding: 3.6rem 0;
  border-top: 2px solid var(--gold-deep);
}
.final-cta h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem,5vw,3.2rem); }
.final-sub { color: var(--cream); font-size: 1.15rem; max-width: 620px; margin: 0 auto 1.6rem; }
.final-cta .btn { margin-bottom: .8rem; }
.contact-line { color: var(--cream); font-size: 1.05rem; margin: .2rem 0 1rem; }
.contact-line a { color: var(--gold); font-weight: 600; }

/* Jobber signup form card */
.signup-form-wrap {
  max-width: 680px;
  margin: 1.6rem auto;
  background: #ffffff;
  border: 3px solid var(--gold-deep);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem .6rem;
  box-shadow: var(--shadow);
  text-align: left;
  color: #1a1c18; /* dark base so any unstyled form text stays readable on white */
}

/* ---------- Footer ---------- */
.site-footer { background: #121309; padding: 2.2rem 0 1.4rem; border-top: 2px solid var(--gold-deep); }
.footer-inner { display: flex; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); }
.footer-llc { font-size: .8rem; color: var(--gold); }
.footer-brand p { color: var(--cream-dim); margin: .3rem 0 0; font-size: .9rem; }
.footer-social { display: flex; flex-direction: column; gap: .25rem; margin-top: .9rem; }
.follow-label { color: var(--gold); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.footer-social a { color: var(--cream); font-size: .9rem; }
.footer-social a:hover { color: var(--gold); }
.footer-meta { display: flex; flex-direction: column; gap: .4rem; text-align: right; font-size: .9rem; }
.footer-meta a { color: var(--cream); }
.footer-meta a:hover { color: var(--gold); }
.footer-tagline { text-align: center; color: var(--gold); margin: 1.6rem 0 0; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .offer-chips, .hero-cta-row { justify-content: center; align-items: center; }
  .hero-art { order: -1; max-width: 420px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .discounts-row { grid-template-columns: 1fr; }
  .health-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  #difference .feature-grid { grid-template-columns: 1fr; }
  .counter-divider { display: none; }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
}
