/*
Theme Name: Clunqr
Theme URI: https://clunqr.com
Author: Clunqr
Author URI: https://clunqr.com
Description: Custom theme for Clunqr — the smarter way to sell your junk car.
Version: 3.0.1
License: GNU General Public License v2 or later
Text Domain: clunqr
*/

/* === RESET & BASE === */
:root {
  --lime: #B9FF66;
  --lime-dark: #9FE052;
  --lime-muted: #E8FFD0;
  --black: #191A23;
  --black-light: #292A32;
  --white: #FFFFFF;
  --gray-50: #F7F7F8;
  --gray-100: #F0F0F1;
  --gray-200: #E0E0E3;
  --gray-300: #C8C8CD;
  --gray-400: #9C9C9C;
  --gray-600: #6B6B6B;
  --ink: #1A1A1A;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-pill: 100px;
  --radius-btn: 10px;

  /* JCS-compat vars (used by pricing, checkout, demo, form pages) */
  --green: #191A23;
  --green-light: rgba(185,255,102,0.15);
  --green-mid: #9FE052;
  --green-bright: #B9FF66;
  --dark: #191A23;
  --off-white: #F7F7F8;
  --surface: #F0F0F1;
  --surface2: #E0E0E3;
  --border: #E0E0E3;
  --border-dark: #C8C8CD;
  --text: #1A1A1A;
  --text-mid: #6B6B6B;
  --muted: #6B6B6B;
  --muted-light: #9C9C9C;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,.heading { font-family: 'Outfit', sans-serif; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* === NAV === */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 1px 16px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 800; letter-spacing: -1.5px;
  color: var(--black); text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  text-decoration: none; padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.nav-links a:hover { background: var(--gray-100); }
.nav-cta {
  background: var(--white) !important; color: var(--black) !important;
  padding: 12px 28px !important; border-radius: var(--radius-btn) !important;
  font-weight: 600 !important; font-size: 15px !important;
  border: 1.5px solid var(--black) !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--black) !important; color: var(--white) !important; }
.nav-highlight { background: var(--lime) !important; color: var(--black) !important; font-weight: 700 !important; padding: 8px 18px !important; border-radius: var(--radius-btn) !important; }
.nav-highlight:hover { background: var(--lime-dark) !important; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 600;
  padding: 18px 40px; border-radius: var(--radius-btn);
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity 0.2s, transform 0.12s;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 600;
  padding: 18px 40px; border-radius: var(--radius-btn);
  border: 1.5px solid var(--gray-200); cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gray-400); background: var(--gray-50); }
.btn-lime {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--black);
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 700;
  padding: 18px 44px; border-radius: var(--radius-btn);
  border: none; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.12s;
}
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); }

/* === SECTION HEADERS === */
.sec-header {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.sec-pill {
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 700;
  background: var(--lime);
  padding: 4px 14px; border-radius: 8px;
  white-space: nowrap; letter-spacing: -0.5px;
  margin: 0;
}
.sec-desc {
  font-size: 16px; color: var(--gray-600);
  max-width: 480px; line-height: 1.55;
}
.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--black); letter-spacing: -1px;
  line-height: 1.15; margin-bottom: 8px;
}
.section-subheading {
  font-size: 16px; color: var(--gray-600);
  max-width: 580px; line-height: 1.55;
  margin-bottom: 40px;
}

/* === CONTENT SECTIONS === */
.content-section { padding: 72px 0; }
.content-section.alt { background: var(--gray-50); }

/* === HERO (homepage) === */
.hero {
  padding: 140px 0 80px;
  background: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px; align-items: center;
}
.hero h1 {
  font-size: 60px; font-weight: 800;
  line-height: 1.05; letter-spacing: -2.5px;
  color: var(--black); margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: var(--lime);
  border-radius: 8px;
  padding: 0 8px; display: inline;
}
.hero-sub {
  font-size: 18px; line-height: 1.65;
  color: var(--gray-600);
  max-width: 500px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* === THICK BORDER (signature style) === */
.card-border,
.form-card,
.acc-item,
.feature-card,
.guarantee-banner,
.cta-banner,
.compare-card,
.faq-card,
.test-scroll,
.bottom-cta-card,
.stat-card,
.market-alert,
.data-table-wrap,
.step-item,
.component-card,
.factor-card,
.resource-card,
.buyer-info-card,
.nearby-card,
.condition-table-wrap,
.why-card,
.recent-list,
.recent-cta-card,
.buyer-map-wrap,
.stats-bar-card {
  border: 1px solid var(--black);
  border-bottom: 5px solid var(--black);
  border-radius: var(--radius-md);
}

/* === FORM CARD === */
.form-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--black); margin-bottom: 4px;
}
.form-subtitle { font-size: 14px; color: var(--gray-400); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--gray-600); margin-bottom: 6px;
}
.form-select, .form-input {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit;
  color: var(--ink); background: var(--white);
  transition: border-color 0.2s;
}
.form-select:focus, .form-input:focus { outline: none; border-color: var(--black); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239C9C9C' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-input::placeholder { color: var(--gray-300); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-btn {
  width: 100%; padding: 18px;
  background: var(--black); color: var(--white);
  border: none; border-radius: var(--radius-btn);
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 700;
  cursor: pointer; transition: opacity 0.2s, transform 0.12s; margin-top: 8px;
}
.form-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.form-note { text-align: center; margin-top: 14px; font-size: 12px; color: var(--gray-400); }

/* === ACCORDION === */
.accordion { display: flex; flex-direction: column; gap: 16px; }
.acc-item {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  transition: background 0.3s ease;
  cursor: pointer;
}
.acc-item.open { background: var(--lime); }
.acc-header {
  display: flex; align-items: center; gap: 20px;
  width: 100%; border: none; background: none;
  cursor: pointer; text-align: left;
}
.acc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 48px; font-weight: 800;
  color: var(--black); letter-spacing: -2px; min-width: 70px;
}
.acc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--black); flex: 1;
}
.acc-toggle {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  border: 1.5px solid var(--black); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.acc-item.open .acc-toggle { transform: rotate(45deg); background: var(--white); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin 0.4s ease; }
.acc-item.open .acc-body { max-height: 200px; margin-top: 20px; }
.acc-body-inner {
  padding-left: 90px; font-size: 15px; line-height: 1.65;
  color: var(--black); max-width: 550px;
}

/* === FEATURE CARDS === */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-card {
  border-radius: var(--radius-lg);
  padding: 44px; position: relative; overflow: hidden;
  transition: transform 0.3s; min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card.light { background: var(--gray-50); color: var(--black); }
.feature-card.dark { background: var(--black); color: var(--white); }
.feature-card.accent { background: var(--lime); color: var(--black); }
.feature-pill {
  display: inline-block; font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700;
  padding: 2px 10px; border-radius: 6px; margin-bottom: 10px;
}
.feature-card.light .feature-pill { background: var(--lime); }
.feature-card.dark .feature-pill { background: var(--lime); color: var(--black); }
.feature-card.accent .feature-pill { background: var(--white); }
.feature-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 700; margin-bottom: 8px;
}
.feature-card-text { font-size: 15px; line-height: 1.55; opacity: 0.8; max-width: 320px; }
.feature-card.dark .feature-card-text { color: rgba(255,255,255,0.7); }
.feature-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; margin-top: 16px; transition: gap 0.2s;
}
.feature-card.light .feature-card-link { color: var(--black); }
.feature-card.dark .feature-card-link { color: var(--lime); }
.feature-card.accent .feature-card-link { color: var(--black); }
.feature-card-link:hover { gap: 10px; }

/* === GUARANTEE BANNER === */
.guarantee-banner {
  background: var(--lime);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex; align-items: center; gap: 24px;
  margin-top: 20px;
}
.guarantee-icon-wrap {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%; background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.guarantee-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--black); margin-bottom: 2px;
}
.guarantee-text { font-size: 15px; color: rgba(0,0,0,0.7); }

/* === COMPARE TABLE === */
.compare-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 48px; overflow: hidden;
}
.compare-card .sec-pill { background: var(--lime); }
.compare-card .sec-desc { color: rgba(255,255,255,0.6); }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.compare-table th {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gray-400); padding: 16px 20px; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.compare-table th.hl { color: var(--lime); }
.compare-table td {
  font-size: 15px; color: rgba(255,255,255,0.7);
  padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.compare-table td:first-child { font-weight: 600; color: var(--white); }
.compare-table .y { color: var(--lime); font-weight: 700; font-size: 18px; }
.compare-table .n { color: var(--gray-400); }

/* === FAQ CARDS === */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-card {
  background: var(--gray-50); padding: 28px 32px;
  cursor: pointer; transition: box-shadow 0.3s;
}
.faq-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.faq-card.open { background: var(--white); }
.faq-card-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-card-q { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--black); }
.faq-card-toggle {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
  border: 1.5px solid var(--black); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.faq-card.open .faq-card-toggle { transform: rotate(45deg); background: var(--lime); }
.faq-card-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, margin 0.35s ease; }
.faq-card.open .faq-card-a { max-height: 800px; margin-top: 16px; }
.faq-card-a p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* === TESTIMONIALS === */
.test-scroll {
  background: var(--black); border-radius: var(--radius-lg);
  padding: 60px 0 48px; position: relative; overflow: hidden;
}
.test-track-wrap { position: relative; overflow: hidden; padding: 0 0 40px; }
.test-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.test-card {
  flex: 0 0 560px; padding: 0 14px;
  transition: opacity 0.5s, transform 0.5s;
}
.test-card:not(.active) { opacity: 0.4; }
.test-card.active { opacity: 1; }
.test-bubble {
  background: var(--black-light); border: 1.5px solid var(--lime);
  border-radius: var(--radius-md); padding: 36px;
  position: relative; margin-bottom: 28px; min-height: 200px;
  display: flex; flex-direction: column; justify-content: center;
}
.test-bubble::after {
  content: ''; position: absolute;
  bottom: -18px; left: 48px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--lime);
}
.test-bubble::before {
  content: ''; position: absolute;
  bottom: -14px; left: 50px;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--black-light);
  z-index: 1;
}
.test-text { font-size: 16px; line-height: 1.7; color: var(--white); }
.test-author { display: flex; align-items: center; gap: 14px; padding-left: 12px; }
.test-author-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 17px; color: var(--lime); }
.test-author-loc { font-size: 14px; color: var(--gray-400); }
.test-controls { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 0 48px; }
.test-arr {
  width: 48px; height: 48px; background: none; border: none;
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s; font-size: 28px;
}
.test-arr:hover { color: var(--lime); }
.test-dots { display: flex; gap: 10px; align-items: center; }
.test-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.25); transition: background 0.3s;
}
.test-dot.active { background: var(--lime); }

/* Grid testimonials (for city pages) */
.test-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-cards-grid .test-bubble { border: 1px solid var(--black); border-bottom: 5px solid var(--black); }

/* === BUYER CARDS (homepage) === */
.buyers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.buyer-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 36px 32px; text-decoration: none; color: inherit;
  transition: transform 0.3s;
}
.buyer-card:hover { transform: translateY(-4px); }
.buyer-card-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.buyer-card-avatar-wrap { width: 80px; height: 80px; position: relative; flex-shrink: 0; }
.buyer-card-avatar-blob {
  position: absolute; inset: -4px;
  background: var(--lime); border-radius: 50% 50% 50% 20%;
  transform: rotate(-15deg);
}
.buyer-card-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gray-200); position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.buyer-card-avatar-initials {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--gray-400);
}
.buyer-card-name { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: var(--black); }
.buyer-card-city { font-size: 14px; color: var(--gray-600); margin-top: 2px; }
.buyer-card-divider { width: 60px; height: 1px; background: var(--black); margin: 0 0 16px; }
.buyer-card-desc { font-size: 15px; color: var(--gray-600); line-height: 1.55; margin-bottom: 14px; }
.buyer-card-badge {
  display: inline-block; font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--black); background: var(--lime);
  padding: 4px 12px; border-radius: 6px;
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--gray-50); border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
  position: relative; overflow: hidden;
}
.cta-banner-text h3 {
  font-size: 28px; font-weight: 700;
  color: var(--black); margin-bottom: 10px; letter-spacing: -0.5px;
}
.cta-banner-text p {
  font-size: 16px; color: var(--gray-600);
  max-width: 420px; line-height: 1.55; margin-bottom: 24px;
}
.cta-banner-visual {
  width: 280px; height: 280px; flex-shrink: 0;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.cta-visual-circle {
  width: 240px; height: 240px; background: var(--black);
  border-radius: 50%; position: absolute;
  display: flex; align-items: center; justify-content: center;
}
.cta-visual-star { width: 100px; height: 100px; position: relative; }
.cta-visual-star svg { width: 100%; height: 100%; }
.cta-visual-lime-dot {
  width: 60px; height: 60px; background: var(--lime);
  border-radius: 50%; position: absolute; bottom: 0; right: 0;
}

/* === BOTTOM CTA === */
.bottom-cta { padding: 80px 0; }
.bottom-cta-card {
  background: var(--black); border-radius: var(--radius-lg);
  padding: 64px; text-align: center;
  position: relative; overflow: hidden;
}
.bottom-cta-card::before {
  content: ''; position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%); width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(185,255,102,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta-card h2 {
  font-size: 44px; font-weight: 800; color: var(--white);
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 14px; position: relative;
}
.bottom-cta-card h2 span {
  background: var(--lime); color: var(--black); padding: 0 10px; border-radius: 8px;
}
.bottom-cta-card p {
  font-size: 17px; color: rgba(255,255,255,0.5);
  margin-bottom: 32px; position: relative;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

/* === TRUST BAR (used on homepage, city, and other pages) === */
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-bar-label { font-size: 13px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-right: 8px; }
.trust-logo { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 800; color: var(--gray-300); letter-spacing: -0.5px; }

/* === DEFAULT PAGE === */
.default-page { padding: 130px 0 80px; }
.default-page-article { max-width: 780px; margin: 0 auto; }
.default-page-title { font-family: 'Outfit', sans-serif; font-size: 40px; font-weight: 800; color: var(--black); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 32px; }

@media (max-width: 600px) {
  .default-page { padding: 100px 0 60px; }
  .default-page-title { font-size: 30px; margin-bottom: 24px; }
}

/* === PROSE CONTENT (blog, pages, WYSIWYG content) === */
.entry-content p,
.prose p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.entry-content p:last-child,
.prose p:last-child { margin-bottom: 0; }
.entry-content h2, .prose h2 { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 800; color: var(--black); letter-spacing: -0.5px; margin: 32px 0 12px; line-height: 1.2; }
.entry-content h3, .prose h3 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: var(--black); margin: 28px 0 10px; line-height: 1.25; }
.entry-content h4, .prose h4 { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--black); margin: 24px 0 8px; }
.entry-content h2:first-child, .entry-content h3:first-child,
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.entry-content ul, .entry-content ol,
.prose ul, .prose ol { margin: 0 0 16px 24px; padding: 0; }
.entry-content ul, .prose ul { list-style: disc; }
.entry-content ol, .prose ol { list-style: decimal; }
.entry-content li, .prose li { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 8px; padding-left: 4px; }
.entry-content li:last-child, .prose li:last-child { margin-bottom: 0; }
.entry-content li ul, .entry-content li ol,
.prose li ul, .prose li ol { margin-top: 8px; margin-bottom: 0; }
.entry-content strong, .entry-content b,
.prose strong, .prose b { color: var(--ink); font-weight: 700; }
.entry-content a, .prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover, .prose a:hover { color: var(--lime-dark); }
.entry-content blockquote, .prose blockquote { border-left: 3px solid var(--lime); margin: 20px 0; padding: 12px 0 12px 20px; font-style: italic; }
.entry-content blockquote p, .prose blockquote p { margin-bottom: 0; }
.entry-content img, .prose img { max-width: 100%; height: auto; border-radius: 10px; margin: 16px 0; }
.entry-content table, .prose table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.entry-content th, .entry-content td,
.prose th, .prose td { padding: 10px 14px; border: 1px solid var(--gray-200); font-size: 15px; text-align: left; }
.entry-content th, .prose th { font-weight: 700; color: var(--ink); background: var(--gray-50); }
.entry-content hr, .prose hr { border: none; border-top: 1px solid var(--gray-200); margin: 24px 0; }

/* === FOOTER === */
.site-footer {
  padding: 56px 0 36px; background: var(--black);
  color: rgba(255,255,255,0.45);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -1.2px; color: var(--white); margin-bottom: 12px; }
.footer-desc { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-col-title { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* === ANIMATIONS === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 92px 0 0;
  font-size: 13px;
}
.breadcrumb-list {
  list-style: none;
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;
  padding: 12px 0;
}
.breadcrumb-list li {
  display: inline-flex; align-items: center;
}
.breadcrumb-list a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-list a:hover { color: var(--ink); }
.breadcrumb-sep {
  margin: 0 8px;
  color: var(--gray-300);
}
.breadcrumb-current {
  color: var(--ink);
  font-weight: 500;
}

/* Pages with breadcrumbs need less hero top padding */
.breadcrumbs + .city-hero,
.breadcrumbs + .page-hero { padding-top: 24px; }

/* === MOBILE NAV === */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--black); z-index: 102;
  align-items: center; justify-content: center;
}
.nav-toggle svg { display: block; }
.nav-toggle-close { display: none; }
.nav-toggle.active .nav-toggle-open { display: none; }
.nav-toggle.active .nav-toggle-close { display: block !important; }

/* Full-screen overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--black);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  opacity: 1; visibility: visible;
}
.mobile-menu-inner {
  display: flex; flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 36px 40px;
}
.mobile-menu-links {
  display: flex; flex-direction: column;
  gap: 0; margin-bottom: 32px;
}
.mobile-menu-link {
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--white); text-decoration: none;
  letter-spacing: -0.8px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s;
}
.mobile-menu.open .mobile-menu-link {
  opacity: 1; transform: translateY(0);
}
.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 0.22s; }
.mobile-menu-link:hover { color: var(--lime); }

.mobile-menu-cta { margin-bottom: 32px; }
.mobile-menu-btn {
  display: block; text-align: center;
  padding: 18px 32px;
  background: var(--lime); color: var(--black);
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-menu-btn:hover { background: var(--lime-dark); }

.mobile-menu-footer {
  display: flex; gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu-footer a {
  font-size: 14px; color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.2s;
}
.mobile-menu-footer a:hover { color: var(--white); }

/* Body lock when menu open */
body.menu-open { overflow: hidden; }
/* Nav stays white text on dark when menu open */
body.menu-open .site-nav { background: transparent; backdrop-filter: none; border-color: transparent; }
body.menu-open .nav-logo { color: var(--white); }
body.menu-open .nav-toggle { color: var(--white); }

/* === NO-JS FALLBACKS (CSS-only, works without script) === */
.no-js .reveal { opacity: 1; transform: none; transition: none; }
.no-js .acc-body { max-height: none; margin-top: 20px; }
.no-js .acc-toggle { display: none; }
.no-js .faq-card-a { max-height: none; margin-top: 16px; }
.no-js .faq-card-toggle { display: none; }
.no-js .test-card { opacity: 1; }
.no-js .test-track { transform: none !important; display: flex; flex-wrap: wrap; gap: 20px; }
.no-js .test-card { flex: 0 0 calc(33.33% - 14px); }
.no-js .test-controls { display: none; }
.no-js .test-track-wrap { overflow: visible; }
.no-js .ticker-track { animation: none; }

/* === RESPONSIVE === */

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 380px; gap: 36px; }
  .hero h1 { font-size: 48px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 40px; letter-spacing: -1.8px; }
  .hero { padding: 120px 0 60px; }

  .proof-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  }
  .proof-inner > div {
    flex-direction: column; text-align: center; align-items: center;
  }
  .proof-inner > div > div:last-child { max-width: none; text-align: center; }

  .features-grid { grid-template-columns: 1fr; }
  .features-grid .feature-card:nth-child(1) { order: 1; }
  .features-grid .feature-card:nth-child(2) { order: 2; }
  .features-grid .feature-card:nth-child(3) { order: 4; }
  .features-grid .feature-card:nth-child(4) { order: 3; }

  .faq-grid, .why-grid, .factor-grid { grid-template-columns: 1fr; }
  .why-grid .why-card:nth-child(1) { order: 1; }
  .why-grid .why-card:nth-child(2) { order: 2; }
  .why-grid .why-card:nth-child(3) { order: 4; }
  .why-grid .why-card:nth-child(4) { order: 3; }

  .buyers-grid, .nearby-grid, .resource-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .test-cards-grid { grid-template-columns: 1fr; }

  .test-card { flex: 0 0 320px; }
  .no-js .test-card { flex: 0 0 100%; }

  .compare-card { padding: 24px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 560px; }

  .cta-banner { grid-template-columns: 1fr; text-align: center; padding: 40px; }
  .cta-banner-text { display: flex; flex-direction: column; align-items: center; }
  .cta-banner-text p { margin-left: auto; margin-right: auto; }
  .cta-banner-visual { margin: 0 auto; width: 200px; height: 200px; }
  .cta-visual-circle { width: 180px; height: 180px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .acc-body-inner { padding-left: 0; }
  .guarantee-banner { flex-direction: column; text-align: center; padding: 32px; }
  .bottom-cta-card { padding: 40px 28px; }
  .bottom-cta-card h2 { font-size: 32px; }
  .form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .buyer-grid { grid-template-columns: 1fr; }
  .recent-grid { grid-template-columns: 1fr; }
  .payouts-grid { grid-template-columns: 1fr 1fr; }
  .component-grid { grid-template-columns: 1fr 1fr; }

  .value-hero-grid { grid-template-columns: 1fr; }
  .value-hero h1 { font-size: 36px; }
  .value-sidebar-form { position: static; }
  .value-factor-grid { grid-template-columns: 1fr 1fr; }
  .make-tier-body { flex-wrap: wrap; }
  .make-item { flex: 0 0 50%; border-bottom: 1px solid var(--gray-200); }

  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 38px; }
  .city-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .city-hero h1 { font-size: 38px; }
}

@media (max-width: 600px) {
  .hero { padding: 110px 0 50px; }
  .hero h1 { font-size: 32px; letter-spacing: -1.5px; }
  .hero-sub { font-size: 16px; }

  .proof-inner { gap: 14px; }

  .buyers-grid, .nearby-grid, .resource-grid, .footer-grid,
  .payouts-grid, .component-grid, .stat-cards { grid-template-columns: 1fr; gap: 12px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .sec-pill, .section-heading { font-size: 24px; }
  .bottom-cta-card h2 { font-size: 24px; }
  .bottom-cta-card p { font-size: 15px; }
  .nav-cta { font-size: 13px !important; padding: 10px 20px !important; }
  .breadcrumbs { font-size: 12px; }

  .acc-num { font-size: 36px; min-width: 50px; }
  .acc-item { padding: 24px; border-radius: var(--radius-md); }
  .feature-card { padding: 28px; min-height: auto; border-radius: var(--radius-md); }

  .test-card { flex: 0 0 280px; }
  .test-bubble { padding: 24px; min-height: auto; }
  .test-scroll { padding: 36px 0; }
  .test-controls { padding: 0 20px; }

  .compare-card { padding: 16px; border-radius: var(--radius-md); }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 13px; }

  .faq-card { padding: 20px 24px; }
  .guarantee-banner { padding: 24px; border-radius: var(--radius-md); }
  .cta-banner { padding: 28px; border-radius: var(--radius-md); }

  .city-hero { padding: 110px 0 40px; }
  .city-hero h1 { font-size: 30px; }
  .condition-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .condition-table { min-width: 500px; }
  .buyer-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .buyer-mini-stats { grid-template-columns: 1fr 1fr; gap: 8px; }

  .value-hero { padding: 110px 0 40px; }
  .value-hero h1 { font-size: 28px; }
  .value-stats-row { flex-direction: column; gap: 16px; }
  .value-factor-grid { grid-template-columns: 1fr; }
  .make-item { flex: 0 0 100%; }
  .age-bar-item { grid-template-columns: 60px 1fr 100px; }
  .age-bar-track { height: 28px; }
  .parts-table-wrap { max-width: 100%; }

  .page-hero { padding: 110px 0 40px; }
  .page-hero h1 { font-size: 30px; }
  .table-scroll { max-height: 400px; }
  .step-item { flex-direction: column; gap: 8px; }
}
