/* =============================================================
   GrabJunk — style.css
   LIGHT theme · ELECTRIC PURPLE #9333EA accent on warm off-white
   ============================================================= */

:root {
  --purple: #9333EA;
  --purple-dark: #7E22CE;
  --purple-soft: #D8B4FE;
  --purple-tint: #FAF5FF;
  --ink: #1D1B1B;
  --ink-soft: #4A4642;
  --muted: #6E6861;
  --paper: #F7F7F4;
  --card: #FFFFFF;
  --rule: #E9E5DE;
  --good: #15803D;
  --bad: #B91C1C;
  --white: #FFFFFF;
  --maxw: 1160px;
  --radius: 14px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* =============================================================
   SAFETY-HELMET NAVIGATION
   ============================================================= */

.helmet-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--card);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-word {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* CSS-drawn hard hat / safety helmet icon */
.helmet-icon {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 32px;
}

.helmet-dome {
  position: absolute;
  left: 4px;
  top: 0;
  width: 32px;
  height: 22px;
  background: var(--purple);
  border-radius: 50% 50% 38% 38% / 70% 70% 30% 30%;
}

.helmet-brim {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 40px;
  height: 6px;
  background: var(--purple-dark);
  border-radius: 4px;
}

.helmet-ridge {
  position: absolute;
  left: 18px;
  top: 2px;
  width: 4px;
  height: 16px;
  background: var(--purple-tint);
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.nav-link:hover {
  color: var(--purple);
  border-color: var(--purple);
}

.nav-cta {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 20px;
  border-radius: 8px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.nav-cta:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  margin-left: auto;
  background: var(--purple);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0 9px;
}

.toggle-bar {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
}

/* =============================================================
   DUMPSTER HERO
   ============================================================= */

.dumpster-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--purple-tint);
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 2.9rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 10px;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  border: 2px solid var(--purple);
}

.btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--purple-dark);
  border: 2px solid var(--purple-dark);
}

.btn-ghost:hover {
  background: var(--purple-tint);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
  text-align: center;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--purple);
  border-radius: 50%;
}

/* CSS-drawn dumpster (side view) */
.hero-visual {
  display: flex;
  justify-content: center;
}

.dumpster {
  position: relative;
  width: 340px;
  height: 340px;
}

.ground-line {
  position: absolute;
  bottom: 26px;
  left: 30px;
  right: 30px;
  height: 8px;
  background: var(--rule);
  border-radius: 999px;
}

.dumpster-body {
  position: absolute;
  left: 52px;
  top: 78px;
  width: 236px;
  height: 196px;
  background: var(--purple);
  border-radius: 16px;
  overflow: hidden;
}

.dumpster-lid {
  position: absolute;
  left: 46px;
  top: 46px;
  width: 248px;
  height: 40px;
  background: var(--purple-dark);
  border-radius: 14px 14px 6px 6px;
}

.lid-line {
  position: absolute;
  left: 20px;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--purple);
  border-radius: 2px;
}

.handle {
  position: absolute;
  top: 30px;
  width: 16px;
  height: 130px;
  background: var(--purple-dark);
  border-radius: 8px;
}

.handle-left {
  left: 40px;
}

.handle-right {
  right: 40px;
}

.grab-mark {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border: 4px solid var(--purple-tint);
  border-radius: 50%;
}

.grab-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 12px solid var(--purple-tint);
}

.grab-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 11px;
  transform: translateX(-50%);
  width: 6px;
  height: 12px;
  background: var(--purple-tint);
}

.body-label {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--white);
}

.dumpster-wheels {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 236px;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}

.wheel {
  width: 34px;
  height: 34px;
  background: var(--ink);
  border-radius: 50%;
  border: 7px solid var(--purple-dark);
}

/* =============================================================
   FULL-WIDTH STATEMENT ROW
   ============================================================= */

.statement-row {
  background: var(--purple);
}

.statement-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px;
}

.statement-text {
  font-size: 1.9rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  max-width: 60rem;
  margin: 0 auto;
}

/* =============================================================
   BIG-NUMERAL STAT COLUMNS
   ============================================================= */

.stat-section {
  background: var(--paper);
  padding: 88px 24px;
}

.section-head {
  max-width: 44rem;
  margin: 0 auto 52px;
  text-align: center;
}

.section-title {
  font-size: 2.1rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
}

.stat-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-col {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 34px 26px;
  border-top: 4px solid var(--purple);
}

.stat-num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.stat-note {
  font-size: 0.92rem;
  color: var(--muted);
}

/* =============================================================
   NUMBERED DELIVERY PROCESS LIST
   ============================================================= */

.process-section {
  background: var(--purple-tint);
  padding: 88px 24px;
}

.process-list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--purple-soft);
}

.process-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 36px;
}

.process-item:last-child {
  padding-bottom: 0;
}

.process-num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 50%;
}

.process-body {
  padding-top: 4px;
}

.process-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.process-copy {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

/* =============================================================
   TWO-COLUMN COMPARISON TABLE
   ============================================================= */

.compare-section {
  background: var(--paper);
  padding: 88px 24px;
}

.compare-table {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-col {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--card);
}

.compare-head {
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  padding: 20px;
  color: var(--white);
}

.compare-other .compare-head {
  background: var(--muted);
}

.compare-us .compare-head {
  background: var(--purple);
}

.compare-list {
  list-style: none;
  padding: 12px 20px 20px;
}

.compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.compare-row:last-child {
  border-bottom: none;
}

.check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
}

.check.yes {
  background: var(--purple-tint);
  color: var(--good);
}

.check.no {
  background: #FBE9E7;
  color: var(--bad);
}

/* =============================================================
   FAQ ACCORDION
   ============================================================= */

.faq-section {
  background: var(--card);
  padding: 88px 24px;
  border-top: 1px solid var(--rule);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--paper);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--purple);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.faq-icon::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.faq-item.open .faq-answer {
  display: block;
}

/* =============================================================
   SPLIT CTA BAND
   ============================================================= */

.cta-band {
  background: var(--purple-dark);
  padding: 88px 24px;
}

.cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-title {
  font-size: 2.3rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--purple-soft);
}

.cta-form-wrap {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 18px 40px #4c1d95;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.quote-form input,
.quote-form textarea {
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 12px 14px;
  width: 100%;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--purple);
  outline-offset: 1px;
  border-color: var(--purple);
}

.quote-form .btn-block {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--good);
  min-height: 1.4em;
}

/* =============================================================
   FOOTER — compact multi-column with thin purple top rule
   ============================================================= */

.site-footer {
  background: var(--card);
  border-top: 3px solid var(--purple);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 24px 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand .nav-brand {
  margin-bottom: 14px;
}

.footer-about {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-head {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 5px 0;
}

.footer-link:hover {
  color: var(--purple);
}

.footer-address {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  padding-top: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--rule);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* =============================================================
   SCROLL-REVEAL ANIMATION (safe without JS)
   ============================================================= */

.fade-up {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: none;
  }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 24px 64px;
    text-align: left;
  }

  .hero-visual {
    order: -1;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-table {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    height: 66px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--card);
    border-bottom: 1px solid var(--rule);
    padding: 8px 24px 20px;
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link,
  .nav-cta {
    padding: 12px 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .statement-text {
    font-size: 1.4rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dumpster {
    transform: scale(0.82);
  }
}
