@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --blue: #1B4F9B;
  --blue-dark: #153d7a;
  --blue-light: #2560b8;
  --red: #D0202A;
  --red-light: #e8303a;
  --navy: #0F1E35;
  --cream: #F5F4F2;
  --cream2: #EDEAE4;
  --sand: #D4CFC8;
  --white: #ffffff;
  --text: #0F1E35;
  --text-muted: #6B7380;
  --border: rgba(15, 30, 53, 0.12);
  --border-lt: rgba(15, 30, 53, 0.07);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 12px rgba(15, 30, 53, 0.09);
  --shadow-lg: 0 8px 36px rgba(15, 30, 53, 0.15);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ────────────────────────────────────── */
.smrv-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 2px 12px rgba(15, 30, 53, 0.08);
}

.smrv-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.smrv-nav-links {
  display: flex;
  gap: 32px;
}

.smrv-nav-link {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.smrv-nav-link:hover,
.smrv-nav-link.active {
  color: var(--blue);
}

.smrv-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.smrv-nav-auth {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.smrv-nav-auth:hover {
  color: var(--navy);
}

.smrv-nav-cta {
  padding: 10px 24px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.smrv-nav-cta:hover {
  background: var(--red-light);
  color: #fff;
}

/* user dropdown in nav */
.smrv-nav-user .dropdown-toggle {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
}

.smrv-nav-user .dropdown-toggle:hover {
  color: var(--navy);
}

/* ── BUTTONS ────────────────────────────────── */
.smrv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  text-decoration: none;
}

.smrv-btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.smrv-btn-red {
  background: var(--red);
  color: #fff;
}

.smrv-btn-red:hover {
  background: var(--red-light);
  color: #fff;
}

.smrv-btn-blue {
  background: var(--blue);
  color: #fff;
}

.smrv-btn-blue:hover {
  background: var(--blue-light);
  color: #fff;
}

.smrv-btn-navy {
  background: var(--navy);
  color: #fff;
}

.smrv-btn-navy:hover {
  background: #1a3054;
  color: #fff;
}

.smrv-btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
  padding: 11px 24px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.smrv-btn-outline:hover {
  border-color: var(--navy);
  background: rgba(15, 30, 53, 0.05);
  color: var(--navy);
}

.smrv-btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.smrv-btn-white-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ── UTILITIES ──────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.fade { opacity: 0; animation: fadeUp .85s cubic-bezier(.2,.7,.2,1) forwards; }
.d1 { animation-delay: .08s; }
.d2 { animation-delay: .22s; }
.d3 { animation-delay: .36s; }
.d4 { animation-delay: .5s; }

/* ── VIDEO HERO ─────────────────────────────── */
.video-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.video-hero .poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, #0f2138, #1B4F9B 70%, #2560b8);
}

.video-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,30,53,0.78) 0%, rgba(15,30,53,0.55) 45%, rgba(15,30,53,0.8) 100%);
}

.video-hero .hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  padding: 56px 0;
}

.video-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 22px;
}

.video-hero .eyebrow .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.video-hero h1.hero-h {
  font-family: var(--font-head);
  font-size: 88px;
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.video-hero h1.hero-h em {
  color: #fff;
  display: block;
  font-style: normal;
}

.video-hero .hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 460px;
  margin-bottom: 32px;
  font-weight: 400;
}

.video-hero .hero-ctas {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.video-hero .btn {
  display: inline-block;
  border: none;
  border-radius: var(--radius);
  padding: 15px 28px;
  font-family: var(--font-head);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
}

.video-hero .btn-red {
  background: var(--red);
  color: #fff;
}

.video-hero .btn-red:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(208,32,42,0.4);
}

.video-hero .btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}

.video-hero .btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

.video-hero .val-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.video-hero .val-card h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 3px;
}

.video-hero .val-card .vsub {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.video-hero .vrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.video-hero .vfield {
  margin-bottom: 13px;
}

.video-hero .vfield label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.video-hero .vfield input,
.video-hero .vfield select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all .2s;
}

.video-hero .vfield input:focus,
.video-hero .vfield select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(27,79,155,0.1);
}

.video-hero .val-btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 15px;
  font-family: var(--font-head);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: all .2s;
}

.video-hero .val-btn:hover {
  background: var(--blue-light);
}

.video-hero .val-fine {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 13px;
}

/* ── SPLIT HERO ─────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-sell {
  background: var(--navy);
  padding: 72px 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

/* ── SELLER PROOF (below sell options) ─────────────────── */
.sell-proof {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sell-proof-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sell-proof-icon {
  color: var(--red);
  font-size: 15px;
  min-width: 18px;
  margin-top: 2px;
}

.sell-proof-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3px;
}

.sell-proof-detail {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
}

/* ── SELLER QUOTE ───────────────────────────────────────── */
.sell-quote {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.sell-quote-text {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 10px;
}

.sell-quote-attr {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-sell::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(27, 79, 155, 0.15);
  pointer-events: none;
}

.hero-buy {
  background: var(--cream);
  padding: 72px 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 3px solid var(--blue);
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-sell .hero-eyebrow {
  color: rgba(255, 255, 255, 0.35);
}

.hero-buy .hero-eyebrow {
  color: var(--red);
}

.hero-headline {
  font-family: var(--font-head);
  font-size: 62px;
  font-weight: 800;
  line-height: 0.97;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.hero-sell .hero-headline {
  color: #fff;
  font-size: 72px;
}

.hero-buy .hero-headline {
  color: var(--navy);
}

.hero-headline em {
  color: var(--red);
  font-style: normal;
}

.hero-headline .blue-word {
  color: var(--blue);
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-sell .hero-tagline {
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0;
}

.hero-buy .hero-tagline {
  color: var(--text-muted);
}

.hero-tagline-dot,
.browse-tagline-dot,
.page-tagline-dot,
.footer-tagline-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}

/* ── SELL OPTIONS (hero left) ───────────────── */
.sell-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.sell-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.18s;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}

.sell-option:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.sell-option.active {
  border-color: var(--red);
  background: rgba(208, 32, 42, 0.1);
}

.sell-opt-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
}

.sell-opt-body {
  flex: 1;
}

.sell-opt-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.sell-opt-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.sell-opt-arrow {
  color: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  margin-top: 2px;
}

/* ── SEARCH (hero right) ────────────────────── */
.smrv-search-row {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.smrv-search-input {
  flex: 1;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border 0.15s;
}

.smrv-search-input:focus {
  border-color: var(--blue);
}

.smrv-search-btn {
  padding: 13px 22px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.smrv-search-btn:hover {
  background: var(--blue-light);
}

.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.chip {
  padding: 6px 16px;
  border: 2px solid var(--border);
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--white);
  color: var(--text-muted);
  transition: all 0.13s;
  text-decoration: none;
  display: inline-block;
}

.chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.chip.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ── LISTING CARDS (small, hero grid) ───────── */
.listing-grid-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.listing-card-sm {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: var(--shadow);
  text-decoration: none;
  display: block;
}

.listing-card-sm:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.listing-thumb-sm {
  aspect-ratio: 16 / 9;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 30px;
}

.listing-thumb-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 9px;
  border-radius: 5px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-consign { background: var(--red); color: #fff; }
.badge-private { background: var(--blue); color: #fff; }
.badge-cash    { background: #155e2e; color: #fff; }

.card-badges {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.cbadge {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 5px;
  color: #fff;
}

.cbadge.verified  { background: var(--blue); }
.cbadge.inspected { background: #1a7a45; }
.cbadge.consign   { background: var(--red); }

.listing-info-sm {
  padding: 10px 13px 13px;
}

.listing-title-sm {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-price-sm {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 2px;
}

.listing-meta-sm {
  font-size: 11px;
  color: var(--text-muted);
}

.view-all-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}

.view-all-link:hover {
  color: var(--red-light);
}

/* ── STATS BAR ──────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--blue);
  border-top: 3px solid var(--red);
}

.stat-cell {
  padding: 24px 0;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.stat-num em {
  color: var(--cream2);
  font-style: normal;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ── HOW IT WORKS ───────────────────────────── */
.hiw-hero {
  background: var(--navy);
  padding: 72px 40px 64px;
  text-align: center;
  border-bottom: 3px solid var(--blue);
}

.hiw-eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.hiw-title {
  font-family: var(--font-head);
  font-size: 58px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1;
}

.hiw-title em {
  color: var(--red);
  font-style: normal;
}

.hiw-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.hiw-section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 64px 40px;
}

.hiw-section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.hiw-section-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 40px;
}

.hiw-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.hiw-path {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.hiw-path-free    { background: var(--navy); }
.hiw-path-managed { background: var(--red); }
.hiw-path-cash    { background: #155e2e; }

.hiw-path-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.hiw-path-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.hiw-path-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.hiw-path-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.hiw-path-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.hiw-step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.hiw-step-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--cream2);
  line-height: 1;
  margin-bottom: 16px;
}

.hiw-step-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.hiw-step-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.hiw-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.hiw-divider {
  height: 2px;
  background: var(--border-lt);
  margin: 0 0 64px;
}

.hiw-buy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hiw-buy-step {
  text-align: center;
  padding: 24px 16px;
}

.hiw-buy-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.hiw-buy-step-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.hiw-buy-step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.hiw-cta {
  background: var(--navy);
  padding: 64px 40px;
  text-align: center;
}

.hiw-cta-title {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.hiw-cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
}

.hiw-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── LISTING DETAIL ─────────────────────────── */
.listing-detail-back-bar {
  background: var(--navy);
  padding: 16px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.listing-back-btn {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.listing-back-btn:hover {
  color: #fff;
}

.listing-detail-page {
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
}

.listing-gallery {
  background: var(--cream2);
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1.5px solid var(--border);
  font-size: 80px;
  overflow: hidden;
  position: relative;
}

.listing-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gbadges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 7px;
}

.gbadge {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 5px;
  color: #fff;
}

.gbadge.verified  { background: var(--blue); }
.gbadge.inspected { background: #1a7a45; }

.listing-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.listing-gallery-thumb {
  width: 80px;
  height: 60px;
  background: var(--cream2);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  cursor: pointer;
}

.listing-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-detail-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.05;
  margin-top: 12px;
}

.listing-detail-price {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 20px;
}

.listing-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.listing-spec {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 14px;
}

.listing-spec-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.listing-spec-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.listing-section-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-lt);
}

.listing-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 32px;
}

.listing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 32px;
}

.listing-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.listing-feature-check {
  color: var(--blue);
  font-weight: 700;
}

.listing-contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}

.listing-contact-price {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}

.listing-contact-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.listing-contact-input {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  margin-bottom: 10px;
  transition: border 0.15s;
}

.listing-contact-input:focus {
  border-color: var(--blue);
}

.listing-contact-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  resize: vertical;
  min-height: 80px;
  margin-bottom: 14px;
  transition: border 0.15s;
}

.listing-contact-textarea:focus {
  border-color: var(--blue);
}

.listing-contact-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ── PAGE CONTAINER (sell flow, etc.) ───────── */
.smrv-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 40px;
}

.smrv-page-eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.smrv-page-title {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.smrv-page-tagline {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── PATH CARDS (sell flow) ─────────────────── */
.path-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.path-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
  text-decoration: none;
  display: block;
  color: inherit;
}

.path-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  color: inherit;
}

.path-card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-blue-bg { background: var(--blue); color: #fff; }
.badge-red-bg  { background: var(--red); color: #fff; }
.badge-green-bg { background: #155e2e; color: #fff; }

.path-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
  margin-top: 12px;
}

.path-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.path-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FORM CARD ──────────────────────────────── */
.smrv-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow);
}

.smrv-form-section-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-lt);
}

.smrv-form-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.smrv-form-grid-2 { grid-template-columns: 1fr 1fr; }
.smrv-form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }

.smrv-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.smrv-form-input,
.smrv-form-select,
.smrv-form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border 0.15s;
}

.smrv-form-input:focus,
.smrv-form-select:focus,
.smrv-form-textarea:focus {
  border-color: var(--blue);
}

.smrv-form-select {
  appearance: none;
  cursor: pointer;
}

.smrv-form-textarea {
  resize: vertical;
  min-height: 96px;
}

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--cream);
}

.upload-zone:hover {
  border-color: var(--blue);
  background: var(--cream2);
}

.upload-icon { font-size: 30px; margin-bottom: 8px; }
.upload-text { font-size: 14px; color: var(--text-muted); }
.upload-sub  { font-size: 12px; color: var(--sand); margin-top: 4px; }

.condition-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.condition-btn {
  padding: 10px 4px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  background: var(--white);
  transition: all 0.13s;
}

.condition-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.condition-btn.active {
  border-color: var(--red);
  background: rgba(208, 32, 42, 0.06);
  color: var(--red);
}

.smrv-divider {
  height: 1px;
  background: var(--border-lt);
  margin: 24px 0;
}

.smrv-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-lt);
}

/* ── BROWSE PAGE ────────────────────────────── */
.browse-header {
  background: var(--navy);
  padding: 48px 40px 0;
  border-bottom: 3px solid var(--blue);
}

.browse-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.browse-title {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.browse-tagline {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.browse-search-row {
  display: flex;
  gap: 10px;
  padding-bottom: 28px;
}

.browse-search-input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  outline: none;
  transition: border 0.15s;
}

.browse-search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.browse-search-input:focus {
  border-color: var(--blue);
}

.browse-search-btn {
  padding: 14px 28px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}

.browse-search-btn:hover {
  background: var(--red-light);
}

.browse-body {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  padding: 36px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-sidebar {
  min-width: 0;
}

.filter-section {
  margin-bottom: 26px;
}

.filter-section-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-check {
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  transition: all 0.12s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.filter-check-inner {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
}

.filter-option-label {
  font-size: 13px;
  color: var(--text);
}

.filter-option-count {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
}

.smrv-price-range {
  display: flex;
  gap: 8px;
  align-items: center;
}

.smrv-price-input {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  background: var(--white);
}

.smrv-price-input:focus {
  border-color: var(--blue);
}

.smrv-price-sep {
  font-size: 12px;
  color: var(--text-muted);
}

.listings-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.listings-count {
  font-size: 14px;
  color: var(--text-muted);
}

.listings-count strong {
  color: var(--navy);
}

.listings-sort {
  padding: 9px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: var(--font-body);
  background: var(--white);
  outline: none;
  cursor: pointer;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.listing-card-lg {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: var(--shadow);
  text-decoration: none;
  display: block;
  color: inherit;
}

.listing-card-lg:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.listing-thumb-lg {
  aspect-ratio: 16 / 9;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.listing-thumb-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-thumb-lg-placeholder {
  font-size: 44px;
}

.listing-info-lg {
  padding: 16px 18px 18px;
}

.listing-title-lg {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.listing-price-lg {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
}

.listing-details-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.listing-detail-tag {
  font-size: 12px;
  color: var(--text-muted);
}

.listing-actions-row {
  display: flex;
  gap: 8px;
}

.listing-action-btn {
  flex: 1;
  padding: 9px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: all 0.13s;
  text-decoration: none;
  display: block;
}

.listing-action-primary {
  background: var(--blue);
  color: #fff;
  border: none;
}

.listing-action-primary:hover {
  background: var(--blue-light);
  color: #fff;
}

.listing-action-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}

.listing-action-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* ── ADMIN ──────────────────────────────────── */
.admin-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: calc(100vh - 72px);
}

.admin-sidebar {
  background: var(--navy);
  padding: 32px 0;
  border-right: 2px solid var(--blue);
}

.admin-sidebar-brand {
  padding: 0 24px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.admin-sidebar-brand span {
  color: var(--red);
}

.admin-sidebar-title {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0 24px 10px;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.13s;
  border-left: 3px solid transparent;
  text-decoration: none;
}

.admin-nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.admin-nav-item.active {
  color: #fff;
  background: rgba(27, 79, 155, 0.2);
  border-left-color: var(--red);
}

.admin-content {
  background: var(--cream);
  padding: 40px;
  min-width: 0;
  overflow-x: auto;
}

.admin-page-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.admin-page-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.metric-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}

.metric-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.metric-value {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1;
}

.metric-delta {
  font-size: 12px;
  color: #1b5e20;
  font-weight: 500;
}

.metric-delta.down {
  color: #b71c1c;
}

.smrv-data-table {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.smrv-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-lt);
}

.smrv-table-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.smrv-table-tabs {
  display: flex;
  gap: 4px;
}

.smrv-table-tab {
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-muted);
  transition: all 0.13s;
  text-decoration: none;
}

.smrv-table-tab:hover {
  color: var(--navy);
}

.smrv-table-tab.active {
  background: var(--blue);
  color: #fff;
}

.smrv-table {
  width: 100%;
  border-collapse: collapse;
}

.smrv-table th {
  padding: 10px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--cream);
  border-bottom: 1px solid var(--border-lt);
}

.smrv-table td {
  padding: 13px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border-lt);
  color: var(--text);
}

.smrv-table tr:last-child td {
  border-bottom: none;
}

.smrv-table tr:hover td {
  background: rgba(27, 79, 155, 0.03);
}

.status-pill {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.status-new      { background: #e3f2fd; color: #0d47a1; }
.status-pending  { background: #fff8e1; color: #f57f17; }
.status-approved { background: #e8f5e9; color: #1b5e20; }
.status-rejected { background: #ffebee; color: #b71c1c; }

.smrv-action-link {
  color: var(--red);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
}

.smrv-action-link:hover {
  color: var(--red-light);
}

/* ── SUCCESS PAGE ───────────────────────────── */
.success-page {
  max-width: 540px;
  margin: 0 auto;
  padding: 90px 40px;
  text-align: center;
}

.success-icon  { font-size: 60px; margin-bottom: 24px; }
.success-title {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.success-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────────── */
.smrv-footer {
  background: var(--navy);
  border-top: 3px solid var(--blue);
  padding: 56px 40px 32px;
}

.smrv-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.smrv-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.smrv-footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.smrv-footer-tagline {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.smrv-footer-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}

.smrv-footer-link {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.13s;
  text-decoration: none;
}

.smrv-footer-link:hover {
  color: #fff;
}

.smrv-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.smrv-footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.smrv-footer-legal {
  display: flex;
  gap: 24px;
}

.smrv-footer-legal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.13s;
}

.smrv-footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.fade-up   { animation: fadeUp 0.4s ease both; }
.fade-up-2 { animation: fadeUp 0.4s ease 0.1s both; }
.fade-up-3 { animation: fadeUp 0.4s ease 0.2s both; }

/* ── CONSIGNMENT INTAKE ─────────────────────── */
.intake-hero { background: var(--navy); padding: 34px 0; }
.intake-hero .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.intake-hero .ih-l .eyebrow { font-family: var(--font-head); font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-light); font-weight: 700; margin-bottom: 6px; }
.intake-hero h1 { font-family: var(--font-head); font-size: 36px; font-weight: 800; text-transform: uppercase; color: #fff; line-height: 1; }
.intake-hero .ih-r { text-align: right; }
.intake-hero .ih-r .fee { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: #fff; line-height: 1; }
.intake-hero .ih-r .fl { font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.04em; }

.stepper { background: var(--white); border-bottom: 1px solid var(--border-lt); }
.stepper .wrap { display: flex; gap: 0; padding: 0; }
.step { flex: 1; padding: 16px 12px; text-align: center; position: relative; border-bottom: 3px solid transparent; }
.step.on { border-bottom-color: var(--red); }
.step.done { border-bottom-color: var(--blue); }
.step .sn { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-muted); }
.step.on .sn { color: var(--red); }
.step.done .sn { color: var(--blue); }
.step .st { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.form-wrap { max-width: 760px; margin: 34px auto 60px; }
.fcard { background: var(--white); border: 1px solid var(--border-lt); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 32px; margin-bottom: 20px; }
.fcard h2 { font-family: var(--font-head); font-size: 28px; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.fcard .fdesc { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.frow.three { grid-template-columns: 1fr 1fr 1fr; }
.ffield { margin-bottom: 14px; }
.ffield label { display: block; font-family: var(--font-head); font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--navy); margin-bottom: 7px; font-weight: 600; }
.ffield label .req { color: var(--red); }
.ffield input, .ffield select, .ffield textarea { width: 100%; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 13px; color: var(--navy); font-family: var(--font-body); font-size: 15px; }
.ffield input:focus, .ffield select:focus, .ffield textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(27,79,155,0.1); }
.ffield input[type="checkbox"] { width: auto; margin-right: 4px; }
.fhint { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 8px; }
.choice { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px; cursor: pointer; transition: all .15s; background: var(--white); }
.choice:hover { border-color: var(--blue); }
.choice.sel { border-color: var(--blue); background: rgba(27,79,155,0.05); box-shadow: 0 0 0 3px rgba(27,79,155,0.08); }
.choice .ct { font-family: var(--font-head); font-size: 17px; font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
.choice .cd { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

.conditional { background: var(--cream2); border-left: 3px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px; margin: 14px 0; }
.conditional .clbl { font-family: var(--font-head); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--blue); font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 7px; }
.conditional .clbl svg { width: 15px; height: 15px; stroke: var(--blue); fill: none; stroke-width: 2; }

.info-box { background: rgba(27,79,155,0.07); border-radius: var(--radius); padding: 16px; display: flex; gap: 12px; margin-top: 10px; }
.info-box svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 1px; }
.info-box p { font-size: 14px; color: #2a3548; line-height: 1.5; }

.nav-btns { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; align-items: center; }
.nb { border: none; border-radius: var(--radius); padding: 14px 30px; font-family: var(--font-head); font-size: 17px; text-transform: uppercase; letter-spacing: 0.03em; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-block; text-align: center; }
.nb.back { background: var(--white); color: var(--navy); border: 1.5px solid var(--border); }
.nb.back:hover { border-color: var(--navy); }
.nb.next { background: var(--red); color: #fff; }
.nb.next:hover { background: var(--red-light); }

.summary-section { margin-bottom: 22px; }
.sum-head { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 6px; padding-bottom: 6px; border-bottom: 1px solid var(--border-lt); }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-lt); font-size: 15px; }
.summary-row .sl { color: var(--text-muted); }
.summary-row .sv { font-weight: 600; color: var(--navy); text-align: right; max-width: 60%; }

.est-card { background: var(--navy); border-radius: var(--radius-lg); padding: 24px; color: #fff; margin-top: 18px; }
.est-card .el { font-family: var(--font-head); font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); }
.est-card .ev { font-family: var(--font-head); font-size: 40px; font-weight: 800; line-height: 1; margin: 6px 0; }
.est-card .en { font-size: 13px; color: rgba(255,255,255,0.6); }

.val-errors { background: #fee2e2; border: 1px solid #f87171; border-radius: var(--radius); padding: 12px 16px; margin-bottom: 20px; color: #991b1b; font-size: .875rem; }
.val-errors ul { margin: 0; padding-left: 18px; }
.val-errors li { margin: 2px 0; }

.conf-acct { margin-top: 20px; }
.fld-disabled { background: var(--cream2); color: var(--text-muted); cursor: default; }
.acct-success { display: flex; align-items: flex-start; gap: 14px; }
.acct-success svg { width: 28px; height: 28px; flex-shrink: 0; stroke: #16a34a; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.acct-success strong { display: block; font-size: 1rem; color: #15803d; margin-bottom: 4px; }
.acct-success p { margin: 0; font-size: .9rem; color: var(--text-muted); }

/* ── VALUATION RESULT PAGE ──────────────────── */
.sell-hero { background: var(--navy); padding: 46px 0 130px; position: relative; }
.sell-hero .eyebrow { font-family: var(--font-head); font-size: 15px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red-light); font-weight: 700; margin-bottom: 12px; }
.sell-hero h1 { font-family: var(--font-head); font-size: 62px; font-weight: 800; text-transform: uppercase; color: #fff; line-height: 0.95; margin-bottom: 14px; }
.sell-hero p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 520px; line-height: 1.5; }

.pull { margin-top: -90px; position: relative; z-index: 5; padding-bottom: 50px; }
.result { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; max-width: 880px; margin: 0 auto; }
.result-top { padding: 26px 30px; border-bottom: 1px solid var(--border-lt); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.result-top .rv { font-family: var(--font-head); font-size: 26px; font-weight: 700; text-transform: uppercase; }
.result-top .rv span { color: var(--text-muted); font-weight: 600; }
.result-top .book { text-align: right; }
.result-top .book .bl { font-family: var(--font-head); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.result-top .book .bv { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--navy); }

.paths2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.p2 { padding: 30px; border-right: 1px solid var(--border-lt); }
.p2:last-child { border-right: none; }
.p2 .ph { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.p2 .ph .pi { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.p2 .ph .pi svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.p2 .ph h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; text-transform: uppercase; }
.p2 .range { font-family: var(--font-head); font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.p2 .sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 16px; }
.p2 ul { list-style: none; margin-bottom: 18px; }
.p2 li { display: flex; align-items: flex-start; gap: 8px; font-size: 14.5px; color: #2a3548; padding: 5px 0; }
.p2 li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; fill: none; stroke-width: 2.4; }
.p2 li.yes svg { stroke: #1a7a45; }
.p2 li.neutral svg { stroke: var(--text-muted); }
.p2 .pbtn { width: 100%; border: none; border-radius: var(--radius); padding: 13px; font-family: var(--font-head); font-size: 16px; text-transform: uppercase; letter-spacing: 0.02em; font-weight: 700; cursor: pointer; transition: all .2s; text-decoration: none; display: block; text-align: center; }
.p2 .pbtn.b { background: var(--navy); color: #fff; }
.p2 .pbtn.b:hover { background: var(--blue); }
.p2 .pbtn.r { background: var(--blue); color: #fff; }
.p2 .pbtn.r:hover { background: var(--blue-light); }

.result-foot { background: var(--cream2); padding: 20px 30px; text-align: center; }
.result-foot p { font-size: 15px; color: var(--navy); }
.result-foot a { color: var(--blue); font-weight: 700; }

.helper { text-align: center; margin-top: 22px; }
.helper button { background: transparent; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 13px 26px; font-family: var(--font-head); font-size: 16px; text-transform: uppercase; font-weight: 700; color: var(--navy); cursor: pointer; }
.helper button:hover { border-color: var(--blue); color: var(--blue); }

.ways { padding: 60px 0; }
.ways h2 { font-family: var(--font-head); font-size: 40px; font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; }
.ways .wsub { text-align: center; color: var(--text-muted); font-size: 17px; margin-bottom: 40px; }
.waygrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.way { background: var(--white); border: 1px solid var(--border-lt); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); position: relative; }
.way.feat { border: 2px solid var(--red); }
.way .badge { position: absolute; top: -12px; left: 28px; background: var(--red); color: #fff; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; }
.way .wnum { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.way h3 { font-family: var(--font-head); font-size: 28px; font-weight: 700; text-transform: uppercase; line-height: 1; margin-bottom: 6px; }
.way .fee { font-family: var(--font-head); font-size: 16px; color: var(--text-muted); font-weight: 600; margin-bottom: 16px; }
.way ul { list-style: none; margin-bottom: 20px; }
.way li { display: flex; gap: 9px; font-size: 14.5px; color: #2a3548; padding: 6px 0; }
.way li svg { width: 17px; height: 17px; stroke: #1a7a45; fill: none; stroke-width: 2.4; flex-shrink: 0; margin-top: 2px; }
.way .wbtn { width: 100%; border: none; border-radius: var(--radius); padding: 13px; font-family: var(--font-head); font-size: 16px; text-transform: uppercase; font-weight: 700; cursor: pointer; text-decoration: none; display: block; text-align: center; }
.way .wbtn.r { background: var(--red); color: #fff; }
.way .wbtn.o { background: var(--white); color: var(--navy); border: 1.5px solid var(--border); }

/* ── MOBILE ─────────────────────────────────── */
@media (max-width: 768px) {
  .smrv-nav { padding: 0 20px; height: 60px; }
  .smrv-nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-sell, .hero-buy { padding: 48px 28px 44px; }
  .hero-headline { font-size: 44px; }
  .video-headline { font-size: 52px; }
  .path-cards { grid-template-columns: 1fr; }
  .smrv-form-grid-2, .smrv-form-grid-3 { grid-template-columns: 1fr; }
  .browse-body { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .metric-cards { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps, .hiw-paths { grid-template-columns: 1fr; }
  .hiw-buy-steps { grid-template-columns: repeat(2, 1fr); }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .listing-detail-page { grid-template-columns: 1fr; }
  .smrv-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .smrv-form-card { padding: 24px 20px; }
  .listing-specs { grid-template-columns: repeat(2, 1fr); }
  .paths2 { grid-template-columns: 1fr; }
  .p2 { border-right: none; border-bottom: 1px solid var(--border-lt); }
  .waygrid { grid-template-columns: 1fr; }
  .sell-hero h1 { font-size: 42px; }
  .frow, .frow.three, .choice-grid { grid-template-columns: 1fr; }
  .step .st { display: none; }
  .intake-hero h1 { font-size: 26px; }
  .intake-hero .ih-r .fee { font-size: 28px; }
}

@media (max-width: 480px) {
  .listings-grid { grid-template-columns: 1fr; }
  .listing-detail-page { padding: 28px 20px; }
  .hiw-section { padding: 40px 20px; }
  .smrv-footer { padding: 40px 20px 24px; }
  .smrv-footer-top { grid-template-columns: 1fr; }
}
