/* =========================================
   ClearHaul — Phoenix Junk Removal & Delivery
   ========================================= */

:root {
  --bg: #F8F6F1;
  --fg: #1C1C1E;
  --fg-muted: #6B6B6B;
  --accent: #0D9488;
  --accent-warm: #D97706;
  --surface: #EFEDE8;
  --border: #DDD9D1;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }
section { padding: 80px 24px; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(28px, 5vw, 44px);
  color: var(--fg);
  margin-bottom: 40px;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: -0.02em;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* === HERO === */
.hero {
  padding: 100px 40px 90px;
  background: var(--fg);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(13,148,136,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(217,119,6,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 860px; position: relative; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--accent-warm);
  border-radius: 50%;
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat { padding: 0 32px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  margin-right: 32px;
}

/* === SERVICES === */
.services { background: var(--bg); }
.services-inner { max-width: 900px; margin: 0 auto; }
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 40px 36px;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-desc {
  color: var(--fg-muted);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.65;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* === BULK TRASH === */
.bulk-trash { background: var(--surface); }
.bulk-trash-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bulk-trash-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--fg);
}
.bulk-trash-headline strong {
  color: var(--accent-warm);
}
.bulk-trash-sub {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-cta:hover { background: #0b7d73; }

/* Pickup comparison table */
.pickup-compare {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}
.pickup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.pickup-row:last-child { border-bottom: none; }
.pickup-row--city { background: var(--surface); }
.pickup-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.pickup-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.pickup-row--clearhaul .pickup-label { color: var(--accent); }
.pickup-row--clearhaul .pickup-value { color: var(--accent); }

/* Facts */
.bulk-trash-facts { display: flex; flex-direction: column; gap: 20px; }
.fact-item { display: flex; align-items: center; gap: 16px; }
.fact-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(13,148,136,0.1);
  padding: 6px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  min-width: 72px;
  text-align: center;
}
.fact-text { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.how-inner { max-width: 900px; margin: 0 auto; }
.step-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 12px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-arrow {
  color: var(--border);
  padding-top: 40px;
  flex-shrink: 0;
}

/* === DIFFERENTIATORS === */
.diff-section { background: var(--accent); color: #fff; }
.diff-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.diff-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
.diff-grid { display: flex; flex-direction: column; gap: 28px; }
.diff-item { display: flex; align-items: flex-start; gap: 16px; }
.diff-icon {
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.diff-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* === PRICING === */
.pricing { background: var(--bg); }
.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricing-sub { color: var(--fg-muted); font-size: 16px; margin-bottom: 40px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
}
.pricing-card--featured {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
}
.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-card--featured .pricing-tier { color: var(--accent-warm); }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.pricing-card--featured .pricing-desc { color: rgba(255,255,255,0.6); }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-list li { font-size: 14px; color: var(--fg-muted); padding-left: 18px; position: relative; }
.pricing-card--featured .pricing-list li { color: rgba(255,255,255,0.75); }
.pricing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.pricing-card--featured .pricing-list li::before { background: var(--accent-warm); }
.pricing-note { font-size: 13px; color: var(--fg-muted); }

/* === CLOSING === */
.closing {
  background: var(--fg);
  color: #fff;
}
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* === FOOTER === */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 40px;
}
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 20px; }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .bulk-trash-inner { grid-template-columns: 1fr; gap: 40px; }
  .navbar { padding: 16px 20px; }
  .nav-tagline { display: none; }
  section { padding: 60px 20px; }
  .hero { padding: 70px 20px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .step-row { flex-direction: column; }
  .step-arrow { display: none; }
  .diff-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .pricing-amount { font-size: 36px; }
}