/* Self-hosted fonts (no render-blocking external request) */
@font-face{font-family:'Bebas Neue';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/bebas-neue-400.woff2') format('woff2');}
@font-face{font-family:'Outfit';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/outfit-400.woff2') format('woff2');}
@font-face{font-family:'Outfit';font-style:normal;font-weight:500;font-display:swap;src:url('/assets/fonts/outfit-500.woff2') format('woff2');}
@font-face{font-family:'Outfit';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/outfit-600.woff2') format('woff2');}
@font-face{font-family:'Outfit';font-style:normal;font-weight:700;font-display:swap;src:url('/assets/fonts/outfit-700.woff2') format('woff2');}
@font-face{font-family:'Outfit';font-style:normal;font-weight:800;font-display:swap;src:url('/assets/fonts/outfit-800.woff2') format('woff2');}

/* ============================================================
   Bin Busters — Trash Can Cleaning, Whitehall & Lehigh Valley PA
   Shared stylesheet. Brand tokens matched to existing site.
   ============================================================ */

:root {
  --navy: #0a0e27;
  --navy-panel: #0d1333;
  --navy-card: #131a40;
  --cyan: #4fc3f7;
  --cyan-deep: #1a6fc4;
  --text: #f0f4ff;
  --muted: #8a9cc5;
  --line: rgba(138, 156, 197, 0.18);
  --radius: 14px;
  --maxw: 1140px;
  --pad: clamp(20px, 5vw, 40px);
  --head: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }

h1, h2, h3 { font-family: var(--head); font-weight: 700; line-height: 0.98; letter-spacing: 0.5px; }
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.accent { color: var(--cyan); }

p { color: var(--muted); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #c3cef0; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
section { padding: clamp(60px, 9vw, 110px) 0; }
.eyebrow {
  font-family: var(--body); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--cyan);
  display: inline-block; margin-bottom: 14px;
}
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan); color: #06203a;
  box-shadow: 0 8px 24px rgba(79, 195, 247, 0.25);
}
.btn-primary:hover { background: #6fd0fa; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 14, 39, 0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--head); font-size: 1.6rem; color: #fff; letter-spacing: 1px; }
.brand img { width: 40px; height: 40px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 0.98rem; transition: color .15s ease; }
.nav-links a:hover { color: var(--cyan); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; }
.nav-toggle svg { width: 30px; height: 30px; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--navy-panel); border-bottom: 1px solid var(--line);
    padding: 8px 0; transform: translateY(-130%); transition: transform .3s ease; z-index: 40;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px var(--pad); border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
}

/* ---------- Nav dropdowns ---------- */
.has-dropdown { position: relative; }
.nav-drop {
  background: none; border: 0; cursor: pointer;
  font-family: var(--body); font-weight: 500; font-size: 0.98rem; color: var(--text);
  display: inline-flex; align-items: center; gap: 6px; padding: 0;
}
.nav-drop:hover { color: var(--cyan); }
.caret { font-size: 0.72em; transition: transform .2s ease; }
.dropdown {
  list-style: none; position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--navy-panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 8px; min-width: 210px; display: none; z-index: 60;
  box-shadow: 0 16px 38px rgba(0,0,0,0.35);
}
/* Invisible bridge so the mouse can cross the gap without the menu closing */
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.dropdown li { width: 100%; }
.dropdown a { display: block; padding: 9px 14px; border-radius: 8px; color: var(--text); font-size: 0.95rem; white-space: nowrap; font-weight: 500; }
.dropdown a:hover { background: var(--navy-card); color: var(--cyan); }
.dropdown-areas { min-width: 340px; columns: 2; column-gap: 6px; }
.dropdown-areas li { break-inside: avoid; }
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown { display: block; }
.has-dropdown:hover .caret, .has-dropdown.open .caret { transform: rotate(180deg); }

@media (max-width: 900px) {
  .has-dropdown { width: 100%; }
  .nav-drop {
    width: 100%; justify-content: space-between; padding: 14px var(--pad);
    border-bottom: 1px solid var(--line); font-size: 1rem;
  }
  .dropdown {
    position: static; transform: none; display: none; background: rgba(0,0,0,0.18);
    border: 0; border-radius: 0; box-shadow: none; padding: 0; min-width: 0; columns: 1;
  }
  .dropdown-areas { columns: 1; }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown a { padding: 12px var(--pad) 12px calc(var(--pad) + 18px); border-bottom: 1px solid var(--line); white-space: normal; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; text-align: center; overflow: hidden;
  padding: clamp(56px, 9vw, 96px) 0 clamp(60px, 9vw, 100px);
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(79,195,247,0.16), transparent 60%),
    radial-gradient(circle at 50% 40%, var(--navy-panel), var(--navy) 70%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px; opacity: 0.6;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-mascot { width: clamp(150px, 28vw, 240px); margin: 0 auto 24px; filter: drop-shadow(0 16px 40px rgba(79,195,247,0.22)); }
.hero-tagline {
  font-family: var(--head); font-weight: 700; line-height: 0.96; letter-spacing: 0.5px;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem); margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(1.35rem, 2.8vw, 2.05rem); font-weight: 700; letter-spacing: 1px;
  color: #c3cef0; margin-bottom: 20px;
}
.hero .lead { max-width: 620px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.hero-trust .dot { color: var(--cyan); font-size: 1.1rem; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--navy-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 30px; transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: rgba(79,195,247,0.4); transform: translateY(-3px); }
.card .ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(79,195,247,0.12); margin-bottom: 16px; font-size: 1.5rem;
}
.card h3 { color: #fff; margin-bottom: 8px; letter-spacing: 0.5px; }
.card p { font-size: 0.97rem; }

/* ---------- Panel (alt bg) ---------- */
.panel { background: var(--navy-panel); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.steps .card { padding: 40px 36px 44px; }
.step { position: relative; padding-left: 0; }
.step .num {
  font-family: var(--head); font-size: 2.6rem; color: var(--cyan); line-height: 1;
  display: block; margin-bottom: 10px;
}
.step h3 { color: #fff; margin-bottom: 8px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.price {
  background: var(--navy-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
}
.price.featured { border-color: var(--cyan); box-shadow: 0 12px 40px rgba(79,195,247,0.15); }
.price .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: #06203a; font-family: var(--body); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; padding: 5px 16px; border-radius: 100px;
}
.price .plan { font-family: var(--head); font-size: 1.7rem; color: #fff; letter-spacing: 1px; }
.price .freq { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.price .amount { font-family: var(--head); font-size: 3.4rem; color: var(--cyan); line-height: 1; }
.price .amount small { font-family: var(--body); font-size: 1rem; color: var(--muted); font-weight: 600; }
.price ul { list-style: none; margin: 22px 0 26px; display: grid; gap: 11px; }
.price li { font-size: 0.96rem; color: #c3cef0; padding-left: 28px; position: relative; }
.price li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--cyan); font-weight: 800;
  background: rgba(79,195,247,0.12); width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.7rem;
}
.price .btn { margin-top: auto; justify-content: center; }

/* ---------- Split (image/text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 64px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split ul { list-style: none; margin-top: 20px; display: grid; gap: 13px; }
.split li { padding-left: 32px; position: relative; color: #c3cef0; }
.split li::before {
  content: "✓"; position: absolute; left: 0; top: 2px; color: var(--cyan); font-weight: 800;
  background: rgba(79,195,247,0.14); width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.78rem;
}

/* ---------- FAQ (visible by default — answers in static HTML for AI citation) ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--navy-card); border: 1px solid var(--line); border-radius: 12px; padding: 24px 26px;
}
.faq-item h3 {
  font-family: var(--body); font-weight: 700; font-size: 1.1rem; letter-spacing: 0;
  line-height: 1.4; color: #fff; margin-bottom: 9px;
}
.faq-item p { font-size: 0.98rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; background: linear-gradient(135deg, var(--cyan-deep), var(--cyan)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 16px auto 30px; }
.cta-band .btn-primary { background: #fff; color: var(--cyan-deep); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.cta-band .btn-primary:hover { background: #eaf6ff; }
.cta-phone { display: block; margin-top: 18px; color: #fff; font-weight: 700; font-size: 1.1rem; }

/* ---------- Before & After ---------- */
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.ba-pair:last-child { margin-bottom: 0; }
.ba-item { position: relative; }
.ba-item img {
  width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: 14px; border: 1px solid var(--line); display: block;
}
.ba-label {
  position: absolute; top: 14px; left: 14px;
  background: rgba(10, 14, 39, 0.82); color: #fff; backdrop-filter: blur(4px);
  font-weight: 700; font-size: 0.74rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 15px; border-radius: 100px;
}
.ba-label.after { background: var(--cyan); color: #06203a; }
.ba-wrap { max-width: 720px; margin: 0 auto; }

/* ---------- Photo gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery img {
  width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: 12px; border: 1px solid var(--line); display: block;
}
@media (max-width: 600px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* ---------- Areas chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.chips a, .chips span {
  background: var(--navy-card); border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 18px; font-size: 0.92rem; color: #c3cef0; font-weight: 500;
}
.chips a:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-panel); border-top: 1px solid var(--line); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer img.logo { width: 170px; margin-bottom: 14px; }
.footer p { font-size: 0.94rem; }
.footer h4 { font-family: var(--body); font-weight: 700; color: #fff; margin-bottom: 14px; font-size: 1rem; }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer ul a { color: var(--muted); font-size: 0.94rem; }
.footer ul a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; text-align: center; color: var(--muted); font-size: 0.85rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--cyan); }

/* ---------- Sticky mobile call/text bar ---------- */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none;
  grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border-top: 1px solid var(--line);
}
.call-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; font-family: var(--body); font-weight: 700; font-size: 1.02rem; }
.call-bar .cb-call { background: var(--cyan); color: #06203a; }
.call-bar .cb-text { background: var(--navy-panel); color: #fff; }
@media (max-width: 760px) { .call-bar { display: grid; } body { padding-bottom: 58px; } }

/* ---------- Annual prepay banner ---------- */
.annual-banner {
  max-width: 760px; margin: 26px auto 0; background: var(--navy-card); border: 1px solid var(--cyan);
  border-radius: 14px; padding: 24px 30px; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 18px; box-shadow: 0 12px 40px rgba(79,195,247,0.12);
}
.annual-banner .ab-text h3 { font-family: var(--head); font-size: 1.6rem; color: #fff; letter-spacing: 0.5px; }
.annual-banner .ab-text p { font-size: 0.95rem; margin-top: 4px; }
.annual-banner .ab-price { font-family: var(--head); font-size: 2.4rem; color: var(--cyan); line-height: 1; white-space: nowrap; }
.annual-banner .ab-price small { font-family: var(--body); font-size: 0.9rem; color: var(--muted); font-weight: 600; }
@media (max-width: 600px) { .annual-banner { flex-direction: column; align-items: flex-start; text-align: left; } }

/* ---------- Breadcrumb ---------- */
.crumb { padding: 16px 0 0; font-size: 0.85rem; color: var(--muted); }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--cyan); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* JS-disabled fallback: never hide content */
.no-js .reveal { opacity: 1; transform: none; }

/* Hero is above the fold — animate with CSS (fires on parse, never waits on JS) */
@keyframes bbFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero .reveal { animation: bbFadeUp .55s ease both; transition: none; }
.hero .reveal:nth-child(2) { animation-delay: .08s; }
.hero .reveal:nth-child(3) { animation-delay: .16s; }
.hero .reveal:nth-child(4) { animation-delay: .24s; }
.hero .reveal:nth-child(5) { animation-delay: .32s; }
.hero .reveal:nth-child(6) { animation-delay: .40s; }
