/* ==========================================================
   ASAP AUTO BUYERS — Page 2: Junk Car Pickup Near Me
   Palette: deep navy · cash-green · amber
   Fonts: Barlow Condensed (display) · Inter (body)
   ========================================================== */

:root {
  --navy:        #0C1220;
  --navy-mid:    #10192E;
  --navy-card:   #16203A;
  --green:       #1F8B4C;
  --green-dark:  #166B3A;
  --green-faint: #E8F5EE;
  --amber:       #E8A33D;
  --amber-dark:  #C17D1C;
  --cream:       #F7F6F3;
  --white:       #FFFFFF;
  --border:      #E2DED5;
  --slate:       #3A4456;
  --slate-mid:   #5E6E82;
  --slate-light: #8A99AD;

  --font-display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm:    0 4px 12px rgba(12, 18, 32, 0.08);
  --shadow-md:    0 8px 24px rgba(12, 18, 32, 0.12);
  --shadow-strong: 0 16px 44px rgba(12, 18, 32, 0.22);
  --max-w: 1160px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--slate);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  font-weight: 700;
  z-index: 500;
}
.skip-link:focus { left: 12px; top: 12px; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ---------- Typography ---------- */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.3rem); margin-bottom: 0.5em; }
h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin-bottom: 0.35em;
  color: var(--navy-mid);
}
p { margin-bottom: 1em; }

/* ==========================================================
   TOP BAR
   ========================================================== */
.top-bar {
  background: var(--green);
  color: #fff;
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 700;
}
.tb-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.tb-live {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.tb-phone {
  color: var(--amber);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.tb-phone:hover { text-decoration: underline; }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  background: var(--navy-mid);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 14px;
}

/* Logo */
.logo { display: flex; align-items: baseline; gap: 6px; flex-shrink: 0; }
.logo-asap {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--amber);
  letter-spacing: 0.02em;
}
.logo-auto {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.07em;
}

/* Nav */
.main-nav { display: flex; gap: 26px; flex: 1; justify-content: center; }
.main-nav a { color: #B0BBC9; font-size: 0.92rem; font-weight: 600; transition: color 0.2s; }
.main-nav a:hover { color: var(--amber); }

/* Header CTA */
.hdr-call-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: var(--green);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background 0.2s;
}
.hdr-call-btn:hover { background: var(--green-dark); }
.hcb-label { font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; opacity: 0.8; }
.hcb-num { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 32px; height: 32px; justify-content: center; }
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; }

/* Mobile nav */
.mobile-nav { display: none; flex-direction: column; background: var(--navy-card); padding: 8px 24px 20px; }
.mobile-nav a { color: #B0BBC9; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-weight: 600; }
.mob-call {
  margin-top: 10px;
  background: var(--green) !important;
  color: #fff !important;
  text-align: center;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem !important;
  padding: 13px !important;
  letter-spacing: 0.02em;
}
.mobile-nav.open { display: flex; }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s, background 0.2s, box-shadow 0.15s;
  min-height: 52px;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-green { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(31,139,76,0.35); }
.btn-green:hover { background: var(--green-dark); }

.btn-amber { background: var(--amber); color: var(--navy); box-shadow: 0 8px 22px rgba(232,163,61,0.35); }
.btn-amber:hover { background: var(--amber-dark); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy-mid);
  border: 2px solid var(--navy-mid);
  margin-top: 10px;
}
.btn-outline-dark:hover { background: var(--navy-mid); color: #fff; }

.full-w { width: 100%; margin-top: 10px; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-card) 100%);
  color: #fff;
  padding: 68px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
}

/* Hero tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(31,139,76,0.18);
  border: 1px solid rgba(31,139,76,0.35);
  color: #6CE49A;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.htag-pulse {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

.hero h1 { color: #fff; margin-bottom: 18px; }
.hero-lead {
  color: #A8B4C4;
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-lead a { color: var(--amber); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(232,163,61,0.4); }
.hero-lead a:hover { text-decoration-color: var(--amber); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}
.hero-checks li {
  font-size: 0.85rem;
  color: #8A99AD;
  font-weight: 600;
  padding-left: 20px;
  position: relative;
}
.hero-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

/* Dispatch / route card — SIGNATURE ELEMENT */
.dispatch-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(6px);
}
.dc-header {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232,163,61,0.12);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 18px;
}
.route-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 22px; }

.route-stop {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.rs-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid;
}
.rs-you  { border-color: #8A99AD; background: #8A99AD; }
.rs-us   { border-color: var(--green); background: var(--green); }
.rs-cash { border-color: var(--amber); background: var(--amber); }

.rs-text { display: flex; flex-direction: column; }
.rs-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.rs-desc { font-size: 0.78rem; color: #8A99AD; }

.route-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0 4px 5px;
}
.rl-arrow { color: var(--green); font-size: 1rem; }
.rl-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(31,139,76,0.15);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}
.dc-cta { width: 100%; }

/* Hero SVG wave */
.hero-wave { line-height: 0; margin-top: -2px; }
.hero-wave svg { display: block; width: 100%; height: 60px; }

/* ==========================================================
   ARTICLE
   ========================================================== */
.article-section { padding: 68px 0 76px; }
.article-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 282px;
  gap: 52px;
  align-items: start;
}

.article-body h2 {
  color: var(--navy-mid);
  margin-top: 2em;
  padding-top: 20px;
  border-top: 3px solid var(--amber);
}
.article-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.article-body h3 { margin-top: 1.4em; }
.article-body p { font-size: 1rem; color: var(--slate); }
.article-body a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(31,139,76,0.3);
  text-underline-offset: 2px;
}
.article-body a:hover { text-decoration-color: var(--green-dark); }

/* Benefit blocks */
.benefit-blocks { display: flex; flex-direction: column; gap: 16px; margin: 20px 0 28px; }
.bb-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bb-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bb-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.bb-item h3 { margin-top: 0; }
.bb-item p { font-size: 0.93rem; color: var(--slate-mid); margin-bottom: 0; }

/* FAQ */
.faq-wrapper { display: flex; flex-direction: column; margin-top: 16px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy-mid);
  text-align: left;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green-dark); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--amber); }
.faq-a { padding: 0 0 16px; }
.faq-a p { font-size: 0.95rem; color: var(--slate-mid); margin-bottom: 0; }

/* ==========================================================
   SIDEBAR
   ========================================================== */
.article-sidebar { display: flex; flex-direction: column; gap: 22px; }
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.sticky-box { position: sticky; top: 90px; }
.sb-title { font-size: 1.25rem; font-family: var(--font-display); font-weight: 900; color: var(--navy-mid); margin-bottom: 8px; }
.sb-copy { font-size: 0.9rem; color: var(--slate-mid); }
.sb-facts {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sb-facts li { font-size: 0.86rem; color: var(--slate); }
.sb-facts strong { color: var(--navy-mid); }

.sidebar-area-box {
  background: var(--green-faint);
  border: 1px solid rgba(31,139,76,0.18);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.sab-title { font-size: 1rem; color: var(--navy-mid); margin-bottom: 14px; }
.sab-list { display: flex; flex-direction: column; gap: 9px; }
.sab-list li { font-size: 0.87rem; color: var(--slate); font-weight: 600; }
.sab-list li span { color: var(--green); margin-right: 8px; }
.sab-note { font-size: 0.76rem; color: var(--slate-light); margin-top: 12px; margin-bottom: 0; }

/* ==========================================================
   HOW IT WORKS SECTION
   ========================================================== */
.hiw-section {
  background: var(--navy-mid);
  padding: 72px 0;
}
.hiw-section .section-eyebrow { color: var(--amber); }
.hiw-section .section-title { color: #fff; }
.hiw-section .section-sub { color: #8A99AD; }

.section-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.section-title { color: var(--navy-mid); margin-bottom: 0.35em; }
.section-sub { font-size: 1rem; color: var(--slate-mid); margin: 8px 0 44px; }

.hiw-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.hiw-step {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: background 0.2s, transform 0.2s;
}
.hiw-step:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.hiw-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 14px;
}
.hiw-step h3 { color: #fff; margin-bottom: 10px; }
.hiw-step p { color: #8A99AD; font-size: 0.92rem; margin-bottom: 0; }
.hiw-connector {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--green);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hiw-connector::before { content: "→"; }

/* ==========================================================
   CONTACT SECTION
   ========================================================== */
.contact-section {
  background: var(--navy);
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
  align-items: center;
}
.contact-section .section-eyebrow { color: var(--amber); }
.contact-section .section-eyebrow.light { color: var(--amber); }
.section-title.light { color: #fff; }
.contact-intro { color: #8A99AD; margin-bottom: 28px; font-size: 1rem; }

.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.cl-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.cl-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--slate-light);
  display: block;
  margin-bottom: 2px;
}
.cl-val { font-size: 1rem; font-weight: 700; color: #fff; display: block; }
a.cl-val:hover { color: var(--amber); }

/* Receipt card — signature element */
.receipt-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-strong);
  font-family: var(--font-display);
  max-width: 380px;
}
.rc-head {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy-mid);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.rc-sub { font-size: 0.82rem; color: var(--slate-light); font-family: var(--font-body); margin-bottom: 0; }
.rc-divider { border-top: 2px solid var(--border); margin: 16px 0; }
.rc-divider.dashed { border-top-style: dashed; }
.rc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--slate);
  font-weight: 600;
}
.rc-total {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--green-dark);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--navy-mid);
  color: #8A99AD;
  padding: 44px 0 30px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer-brand { display: flex; align-items: baseline; gap: 6px; }
.footer-desc { font-size: 0.88rem; max-width: 460px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: #B0BBC9; font-size: 0.88rem; font-weight: 600; }
.footer-nav a:hover { color: var(--amber); }
.footer-addr { font-size: 0.8rem; }
.footer-addr a { color: #B0BBC9; }
.footer-addr a:hover { color: var(--amber); }
.footer-copy { font-size: 0.75rem; color: #4A5565; margin-top: 6px; margin-bottom: 0; }

/* Sticky mobile bar */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 12px;
  letter-spacing: 0.01em;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.25);
}

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.will-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 52px; }
  .dispatch-card { max-width: 460px; }
  .article-grid { grid-template-columns: 1fr; }
  .sticky-box { position: static; }
  .hiw-steps { flex-direction: column; }
  .hiw-connector { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .receipt-card { max-width: 100%; }
}

@media (max-width: 820px) {
  .main-nav { display: none; }
  .hdr-call-btn { display: none; }
  .nav-toggle { display: flex; }
  .sticky-bar { display: block; }
  body { padding-bottom: 62px; }
}

@media (max-width: 580px) {
  .container { padding-inline: 16px; }
  .hero { padding-top: 44px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .dispatch-card { max-width: 100%; }
  .article-section { padding: 46px 0 54px; }
  .hiw-section, .contact-section { padding: 48px 0; }
  .benefit-blocks .bb-item { flex-direction: column; gap: 12px; }
  .tb-inner { flex-direction: column; text-align: center; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}