:root {
  color-scheme: light;
  --bg: #e6e9ee;
  --surface: #ffffff;
  --surface-2: #f2f5f8;
  --ink: #0b1d34;
  --muted: #5c6b7a;
  --line: #d7dde5;
  --green: #00a6a6;
  --green-2: #d9f5f5;
  --gold: #ff6a00;
  --copper: #ff6a00;
  --steel: #5c6b7a;
  --night: #0b1d34;
  --danger: #a13d31;
  --shadow: 0 20px 50px rgba(11, 29, 52, 0.1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 106, 0, 0.16), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(0, 166, 166, 0.14), transparent 26%),
    linear-gradient(180deg, #f8fafc 0%, var(--bg) 42%, #dfe5eb 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding: 8px clamp(12px, 3vw, 28px);
  background: rgba(11, 29, 52, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

@media (max-width: 760px) {
  .topbar {
    gap: 6px;
    padding: 6px 10px;
  }

  .brand {
    min-width: 142px;
    gap: 8px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
    border-radius: 7px;
    font-size: 0.82rem;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .main-nav {
    order: 3;
    flex: 1 1 100%;
    gap: 4px;
    overflow-x: auto;
  }

  .main-nav a {
    min-height: 30px;
    padding: 5px 8px;
    font-size: 0.82rem;
  }

  .top-actions {
    margin-left: auto;
  }

  .sell-link,
  .account-link,
  .notification-button {
    min-height: 31px;
    padding: 5px 9px;
    font-size: 0.82rem;
  }

  .notification-button {
    width: 31px;
    height: 31px;
    padding: 0;
  }

  .account-link {
    min-width: 36px;
    max-width: 42px;
    padding-inline: 6px;
  }

  .account-link .account-text {
    display: none;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 206px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: #061426;
  border: 1px solid rgba(0, 166, 166, 0.35);
  border-radius: 10px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand small,
.label,
.eyebrow {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex: 1 1 360px;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar,
.catalog-quickbar::-webkit-scrollbar {
  display: none;
}

.main-nav a,
.role-button,
.tab,
.ghost-button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  white-space: nowrap;
}

.main-nav a:hover,
.role-button.active,
.tab.active,
.ghost-button:hover {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.topbar .brand,
.topbar .main-nav a {
  color: #eef5ea;
}

.topbar .brand small {
  color: rgba(238, 245, 234, 0.68);
}

.topbar .main-nav a:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
  color: white;
}

.top-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.language-select {
  min-height: 38px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 850;
}

.language-select option {
  background: #ffffff;
  color: #151a18;
}

.sell-link,
.account-link {
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  padding: 8px 13px;
  border-radius: 8px;
  font-weight: 850;
  white-space: nowrap;
}

.notification-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 106, 0, 0.55);
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.14);
  color: white;
  font-weight: 950;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.08);
}

.notification-button svg {
  width: 18px;
  height: 18px;
  color: white;
  stroke-width: 2.6;
}

.notification-button b {
  position: absolute;
  right: -4px;
  top: -5px;
  min-width: 18px;
  min-height: 18px;
  padding: 1px 5px;
  border-radius: 999px;
  background: var(--gold);
  color: white;
  font-size: 0.68rem;
}

.notification-button:not(.has-notifications) b {
  display: none;
}

.notification-button.has-notifications {
  animation: bellPulse 1.8s ease-in-out infinite;
}

@keyframes bellPulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.08);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 106, 0, 0.18);
  }
}

.sell-link {
  background: var(--gold);
  color: white;
}

.account-link {
  min-width: 78px;
  border: 1px solid transparent;
  color: rgba(238, 245, 234, 0.82);
  background: transparent;
  font-weight: 700;
}

.account-link {
  display: inline-flex;
  gap: 7px;
  max-width: 116px;
  overflow: hidden;
}

.account-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 0.76rem;
  font-weight: 950;
  flex: 0 0 auto;
}

.account-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
}

main {
  padding: 12px clamp(12px, 3vw, 28px) 48px;
}

.page:not(.is-active),
.page-split:not(.is-active) {
  display: none !important;
}

.main-nav a.active {
  border-color: rgba(245, 182, 47, 0.45);
  background: rgba(245, 182, 47, 0.14);
  color: white;
}

.workspace {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  min-height: 468px;
}

.rail {
  display: grid;
  align-content: stretch;
  gap: 12px;
}

.rail-block,
.search-panel,
.filters,
.publish-panel,
.sources,
.intelligence {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.rail-block {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 240, 0.95)),
    linear-gradient(135deg, rgba(15, 118, 84, 0.12), transparent);
}

.rail-block strong {
  display: block;
  margin: 8px 0;
  font-size: 1.45rem;
}

.rail-block small {
  color: var(--muted);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: end;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(12, 22, 18, 0.88) 0%, rgba(13, 34, 26, 0.72) 48%, rgba(12, 22, 18, 0.25) 100%),
    url("https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: white;
}

.search-copy h1 {
  max-width: 820px;
  margin: 10px 0 14px;
  font-size: clamp(2.1rem, 4.4vw, 4.8rem);
  line-height: 1.02;
}

.search-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(244, 249, 241, 0.82);
  font-size: 1.03rem;
}

.smart-search {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(23, 38, 29, 0.14);
}

.smart-search label {
  color: var(--night);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(24, 115, 79, 0.14);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 8px;
}

.search-row button,
form > button,
.compare-button {
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #ffd365);
  color: var(--night);
  font-weight: 800;
}

.compare-button:disabled {
  cursor: not-allowed;
  background: #aab6ae;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-tags button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--steel);
  font-weight: 700;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.metrics article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 1.6rem;
}

.market-strip {
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) 0.8fr 0.8fr;
  gap: 12px;
  margin: 18px 0 24px;
}

.deal-hero,
.ad-tile {
  min-height: 164px;
  padding: 20px;
  border: 1px solid rgba(25, 35, 31, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.deal-hero {
  background:
    linear-gradient(110deg, rgba(15, 118, 84, 0.95), rgba(47, 79, 101, 0.82)),
    url("https://images.unsplash.com/photo-1581094288338-2314dddb7ece?auto=format&fit=crop&w=1200&q=80") center/cover;
  color: white;
}

.deal-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.deal-hero h2 {
  max-width: 650px;
  margin: 8px 0;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.07;
}

.deal-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.ad-tile {
  display: grid;
  align-content: space-between;
  background: var(--surface);
}

.ad-tile.priority {
  background: linear-gradient(135deg, #fff7d8, #ffffff 60%);
}

.ad-tile span {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--night);
  color: white;
  font-size: 0.76rem;
  font-weight: 900;
}

.ad-tile strong {
  font-size: 1.28rem;
}

.ad-tile small {
  color: var(--muted);
}

.category-dock {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.category-dock .section-head {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.category-dock a,
.category-dock button {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(28, 43, 34, 0.06);
  transition: transform 160ms ease, border-color 160ms ease;
  color: var(--ink);
  text-align: left;
}

.category-dock a:hover,
.category-dock button:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 84, 0.35);
}

.category-dock span {
  color: var(--copper);
  font-weight: 950;
}

.category-dock strong {
  font-size: 1.05rem;
}

.category-dock small {
  color: var(--muted);
  font-weight: 750;
}

.service-explorer {
  display: none;
}

.service-wizard {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 14px;
}

.service-category-list,
.service-subcategory-panel,
.service-filter-bar {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(28, 43, 34, 0.08);
}

.service-category-list {
  display: grid;
  gap: 6px;
  padding: 8px;
  align-content: start;
}

.service-category-list button {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.service-category-list button.active {
  background: var(--night);
  color: white;
}

.service-category-list button.active span,
.service-category-list button.active small {
  color: rgba(255, 255, 255, 0.72);
}

.service-subcategory-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.service-panel-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.service-panel-visual {
  min-height: 104px;
  border-radius: 8px;
  background: center/cover;
}

.service-panel-head h3,
.service-panel-head p,
.service-cert-panel h4 {
  margin: 0;
}

.service-subcategory-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}

.service-subcategory-list button {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf6;
  color: var(--ink);
  text-align: left;
}

.service-subcategory-list button.active {
  border-color: var(--green);
  background: var(--green-2);
  color: var(--green);
}

.service-subcategory-list small,
.service-category-list small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.service-cert-panel {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.service-cert-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-cert-chips button {
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.service-cert-chips button.active {
  border-color: rgba(15, 118, 84, 0.24);
  background: var(--green-2);
  color: var(--green);
}

.service-filter-bar {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 10px;
  position: sticky;
  bottom: 8px;
  z-index: 5;
}

.service-filter-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.service-filter-actions button {
  min-height: 34px;
  padding: 7px 12px;
}

.service-selected-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-selected-chips span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--green-2);
  color: var(--green);
  font-size: 0.78rem;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.layout > *,
.catalog-area,
.catalog-hero,
.promo-section,
.category-section,
.filter-actions {
  min-width: 0;
  max-width: 100%;
}

.catalog-hero,
.benefit-strip,
.promo-section,
.catalog-quickbar,
.filter-actions {
  grid-column: 1 / -1;
}

.layout:not(.filters-open) .catalog-area {
  grid-column: 1 / -1;
}

.benefit-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.benefit-strip::-webkit-scrollbar {
  display: none;
}

.benefit-strip article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 218px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(15, 118, 84, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), #e4f8ea);
  box-shadow: 0 12px 24px rgba(15, 118, 84, 0.1);
  color: #0b4f38;
  font-weight: 950;
  scroll-snap-align: start;
}

.benefit-strip article::before {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  content: "✓";
  font-size: 0.82rem;
  font-weight: 950;
  flex: 0 0 auto;
}

.benefit-strip article::before {
  content: "\2713";
}

.promo-section {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbf8ee);
  box-shadow: var(--shadow);
}

.promo-carousel,
.catalog-quickbar {
  cursor: grab;
  user-select: none;
}

.category-section {
  grid-column: 1 / -1;
}

.promo-carousel.is-dragging,
.catalog-quickbar.is-dragging {
  cursor: grabbing;
}

.promo-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.promo-carousel::-webkit-scrollbar {
  display: none;
}

.promo-card {
  min-width: 210px;
  max-width: 210px;
  overflow: hidden;
  border: 1px solid rgba(25, 35, 31, 0.12);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 30px rgba(28, 43, 34, 0.1);
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(28, 43, 34, 0.16);
}

.promo-image {
  position: relative;
  min-height: 104px;
  background: var(--surface-2) center/cover;
}

.promo-image span {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #00a650;
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
}

.promo-body {
  display: grid;
  gap: 6px;
  padding: 13px;
}

.promo-body small,
.promo-body em {
  color: var(--green);
  font-style: normal;
  font-weight: 850;
}

.promo-body strong {
  min-height: 44px;
  line-height: 1.18;
}

.promo-body s {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.promo-body b {
  display: block;
  color: var(--green);
  font-size: 1.25rem;
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(0, 166, 166, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(105deg, rgba(11, 29, 52, 0.96), rgba(0, 166, 166, 0.7)),
    url("https://images.unsplash.com/photo-1532601224476-15c79f2f7a51?auto=format&fit=crop&w=1400&q=80") center/cover;
  color: white;
  box-shadow: var(--shadow);
}

.hero-brand-logo {
  display: block;
  width: min(310px, 78vw);
  margin-bottom: 14px;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.32));
}

.catalog-hero .eyebrow,
.catalog-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.catalog-hero h2 {
  max-width: 520px;
  margin: 6px 0 8px;
  font-size: clamp(1.28rem, 2.8vw, 2rem);
  line-height: 1.06;
}

.catalog-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  max-width: 620px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
}

.catalog-search button {
  min-height: 40px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #ffd365);
  color: var(--night);
  font-weight: 900;
}

.catalog-hero {
  order: 1;
}

.filter-actions {
  order: 2;
}

.filters {
  order: 3;
}

.catalog-area {
  order: 5;
}

.promo-section {
  order: 6;
}

.category-section {
  order: 4;
}

.benefit-strip {
  order: 7;
}

.catalog-quickbar {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.intent-card {
  position: relative;
  display: grid;
  min-height: 142px;
  gap: 7px;
  align-content: space-between;
  overflow: hidden;
  padding: 15px;
  border: 1px solid rgba(25, 35, 31, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 8%, rgba(245, 182, 47, 0.38), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f5f8f2 58%, #e8f3ea 100%);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(28, 43, 34, 0.09);
  text-align: left;
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.intent-card .category-art {
  display: block;
  width: 100%;
  height: 54px;
  min-height: 54px;
  padding: 0;
  border-radius: 8px;
  background: center/cover;
  box-shadow: inset 0 -28px 48px rgba(0, 0, 0, 0.16);
}

.intent-card .category-art.epp {
  background-image: linear-gradient(160deg, rgba(15, 118, 84, 0.22), transparent), url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=500&q=80");
}

.intent-card .category-art.drilling {
  background-image: linear-gradient(160deg, rgba(15, 118, 84, 0.22), transparent), url("https://images.unsplash.com/photo-1578662996442-48f60103fc96?auto=format&fit=crop&w=500&q=80");
}

.intent-card .category-art.machinery {
  background-image: linear-gradient(160deg, rgba(185, 111, 52, 0.2), transparent), url("https://images.unsplash.com/photo-1565967661717-586640c0a01d?auto=format&fit=crop&w=500&q=80");
}

.intent-card .category-art.energy {
  background-image: linear-gradient(160deg, rgba(245, 182, 47, 0.25), transparent), url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=500&q=80");
}

.intent-card .category-art.noa {
  background-image: linear-gradient(160deg, rgba(15, 118, 84, 0.32), transparent), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=500&q=80");
}

.intent-card .category-art.urgent {
  background-image: linear-gradient(160deg, rgba(245, 182, 47, 0.34), transparent), url("https://images.unsplash.com/photo-1496247749665-49cf5b1022e9?auto=format&fit=crop&w=500&q=80");
}

.intent-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.68) 45%, transparent 60%);
  transform: translateX(-120%);
}

.intent-card:hover,
.intent-card.active {
  transform: translateY(-4px);
  border-color: rgba(245, 182, 47, 0.85);
  box-shadow: 0 20px 48px rgba(28, 43, 34, 0.16);
}

.intent-card:hover::before {
  animation: sweep 900ms ease;
}

.intent-card.hot {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.42), transparent 29%),
    linear-gradient(145deg, #f9c23a 0%, #fff1bd 52%, #ffffff 100%);
}

.intent-card:nth-child(2) {
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 79, 101, 0.28), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #eef6fb 56%, #e7f0f3 100%);
}

.intent-card:nth-child(3) {
  background:
    radial-gradient(circle at 88% 12%, rgba(185, 111, 52, 0.28), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #fff3e6 58%, #f3ece2 100%);
}

.intent-card:nth-child(4) {
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 182, 47, 0.42), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #fff7d8 56%, #eef4e8 100%);
}

.intent-card:nth-child(5) {
  background:
    radial-gradient(circle at 88% 12%, rgba(15, 118, 84, 0.3), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #e9f7ee 58%, #edf3ec 100%);
}

.intent-card svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  stroke-width: 2.4;
}

.intent-card span {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(25, 35, 31, 0.08);
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
}

.intent-card strong {
  font-size: 1.05rem;
  line-height: 1.05;
}

.intent-card small {
  color: var(--muted);
  font-weight: 750;
}

@keyframes sweep {
  to {
    transform: translateX(120%);
  }
}

.applied-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 34px;
}

.filter-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  overflow: hidden;
}

.layout.filters-open .applied-filters {
  display: none;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(15, 118, 84, 0.24);
  border-radius: 8px;
  background: var(--night);
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(28, 43, 34, 0.12);
}

.filter-toggle.active {
  background: var(--green);
}

.filter-toggle svg {
  width: 18px;
  height: 18px;
}

.applied-filters span,
.signal {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff3c4;
  color: #6f4a05;
  font-size: 0.78rem;
  font-weight: 900;
}

.filters {
  position: static;
  display: grid;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f8faf6);
}

.filters .section-head {
  order: -10;
}

.filters label:has(#categoryFilter) {
  order: -9;
}

.attribute-subfilters,
.publish-attributes {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(15, 118, 84, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #f5fbf6, #ffffff);
}

.attribute-subfilters:empty,
.publish-attributes:empty {
  display: none;
}

.subfilter-head {
  display: grid;
  gap: 2px;
}

.subfilter-head strong {
  color: var(--green);
  font-size: 0.95rem;
}

.subfilter-head small,
.muted-note {
  color: var(--muted);
}

.check {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.check input {
  width: 18px;
  min-height: 18px;
}

.section-head {
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 4px 0 4px;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.1;
}

.section-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.section-head.compact h2 {
  font-size: 1.2rem;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  flex: 0 1 auto;
  width: fit-content;
  max-width: 100%;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(28, 43, 34, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tabs .tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  height: 30px;
  padding: 0 11px;
  border-radius: 9px;
  font-size: 0.83rem;
  font-weight: 850;
  line-height: 1;
  flex: 0 0 auto;
}

.tabs .tab.active {
  border-color: rgba(15, 118, 84, 0.2);
  background: var(--night);
  color: white;
  box-shadow: 0 6px 14px rgba(28, 43, 34, 0.12);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.catalog-toolbar .compare-button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 8px 12px;
  font-size: 0.85rem;
}

.compare-button:disabled {
  display: none;
}

.card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(28, 43, 34, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 84, 0.35);
  box-shadow: 0 18px 42px rgba(28, 43, 34, 0.13);
}

.card-image {
  position: relative;
  min-height: 150px;
  background: var(--surface-2) center/cover;
}

.card-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22));
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--green-2);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-image .badge {
  position: absolute;
  z-index: 1;
  left: 12px;
  top: 12px;
}

.discount-badge {
  position: absolute;
  z-index: 1;
  right: 12px;
  top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #00a650;
  color: white;
  font-size: 0.76rem;
  font-weight: 950;
}

.card-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.card h3 {
  min-height: 54px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.87rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--green);
}

.quote {
  color: var(--steel);
  font-weight: 900;
}

.rating {
  color: var(--gold);
  font-weight: 900;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.card-actions a,
.card-actions button {
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.card-actions a {
  background: var(--night);
  color: white;
}

.seller-chip {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 900;
  text-align: left;
}

.card-actions button.selected {
  border-color: var(--green);
  background: var(--green-2);
  color: var(--green);
}

.split-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 32px;
}

.split-section.single-section {
  grid-template-columns: minmax(0, 880px);
  justify-content: center;
}

.bid-list,
.logic-grid {
  display: grid;
  gap: 12px;
}

.bid-card,
.logic-grid article,
.tender-form,
.tender-summary,
.applicant-list article,
.anonymous-box,
.apply-form {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.bid-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.bid-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.bid-card p,
.logic-grid p {
  margin: 0;
  color: var(--muted);
}

.bid-card {
  cursor: pointer;
}

.bid-stats,
.applicant-list {
  display: grid;
  gap: 8px;
}

.bid-stats {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.bid-stats span,
.anonymous-box {
  color: var(--green);
  font-weight: 900;
}

.tender-form,
.tender-filters,
.apply-form,
.tender-detail {
  display: grid;
  gap: 12px;
}

.tender-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tender-actions button,
.text-link-button {
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
}

.tender-actions button:last-child {
  border: 0;
  background: var(--gold);
}

.tender-filters {
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.text-link-button {
  border: 0;
  background: transparent;
  color: var(--green);
}

.kyc-fieldset {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.kyc-fieldset legend {
  padding: 0 6px;
  color: var(--green);
  font-weight: 950;
}

.bid-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.publish-panel {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 241, 0.96)),
    linear-gradient(135deg, rgba(245, 182, 47, 0.2), transparent);
}

.publish-panel .account-switch {
  margin-bottom: 14px;
}

#publishForm {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.intelligence,
.sources {
  margin-top: 32px;
  padding: 22px;
}

.logic-grid {
  grid-template-columns: repeat(4, 1fr);
}

.sources ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 22px;
  margin: 0;
  padding-left: 18px;
}

.sources a {
  color: var(--green);
  font-weight: 800;
}

.account-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
  gap: 16px;
}

.auth-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8faf6);
}

.auth-panel strong {
  font-size: 1.25rem;
}

.google-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
}

.auth-message {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.account-status {
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(15, 118, 84, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #f3fbf5, #ffffff);
}

.account-status p {
  margin: 6px 0 0;
  color: var(--green);
  font-weight: 850;
}

.profile-dashboard {
  display: grid;
  gap: 16px;
}

.company-profile-form {
  display: grid;
  gap: 14px;
}

.profile-mode-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.profile-mode-head button,
.project-form button,
.project-grid button {
  min-height: 36px;
  padding: 7px 12px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: white;
  font-weight: 900;
}

.company-public-view,
.project-form {
  display: grid;
  gap: 14px;
}

.company-public-hero {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 166, 166, 0.1), #fff);
}

.company-public-hero img {
  width: 104px;
  height: 104px;
  border-radius: 8px;
  object-fit: cover;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.project-grid article {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.project-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
}

.project-grid a {
  color: var(--green);
  font-weight: 900;
}

.private-note {
  padding: 10px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--muted);
  font-weight: 800;
}

.company-preview {
  display: grid;
  gap: 12px;
}

.company-hero-preview {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 84, 0.12), transparent),
    #ffffff;
}

.company-hero-preview img,
.company-logo-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
}

.company-logo-placeholder {
  display: grid;
  place-items: center;
  background: var(--night);
  color: white;
  font-size: 2rem;
  font-weight: 950;
}

.company-hero-preview h4,
.company-hero-preview p {
  margin: 5px 0 0;
}

.company-photo-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.company-photo-strip img {
  width: 132px;
  height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.seller-logo {
  width: min(180px, 100%);
  max-height: 120px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.profile-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.profile-tab {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 6px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.profile-tab.active {
  background: var(--night);
  color: white;
}

.profile-panel {
  display: none;
}

.profile-panel.is-active {
  display: grid;
  gap: 12px;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.campaign-grid article,
.ad-form {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.campaign-grid article {
  position: relative;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease;
}

.new-dot {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--gold);
  color: white;
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 950;
}

.campaign-grid article:hover,
.campaign-grid article:focus {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 84, 0.35);
  outline: none;
}

.campaign-grid article[contenteditable="true"]::after {
  content: "Click para editar";
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--green-2);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.campaign-grid span {
  color: var(--green);
  font-weight: 900;
}

.campaign-grid p {
  margin: 0;
  color: var(--muted);
}

.logout-button {
  width: fit-content;
}

.listing-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  padding-top: 16px;
}

.listing-gallery {
  display: grid;
  gap: 10px;
}

.listing-gallery img {
  width: 100%;
  min-height: 220px;
  max-height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.listing-info {
  display: grid;
  align-content: start;
  gap: 12px;
}

.listing-info h2,
.seller-profile h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.listing-info h3,
.seller-detail h3 {
  margin: 10px 0 0;
}

.seller-profile-button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--night);
  color: white;
  font-weight: 900;
}

.review-list,
.question-list,
.chat-messages,
.seller-detail,
.seller-listings {
  display: grid;
  gap: 10px;
}

.review-list article,
.question-list article,
.chat-messages article,
.seller-profile,
.seller-listings button {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.spec-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf6;
}

.spec-grid dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.spec-grid dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.contact-actions,
.question-form,
.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.hire-button,
.question-form button,
.chat-form button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #ffd96d);
  color: var(--night);
  font-weight: 950;
}

.question-form input,
.chat-form input {
  min-width: 0;
}

.question-list article span {
  display: block;
  margin-top: 8px;
  padding: 10px;
  border-radius: 8px;
  background: var(--green-2);
  color: #0b4f38;
  font-weight: 800;
}

.chat-detail {
  display: grid;
  gap: 14px;
  padding-top: 14px;
}

.notification-list {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.notification-list button {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
}

.notification-list button.unread {
  border-color: rgba(255, 106, 0, 0.42);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), #ffffff);
}

.notification-list small {
  color: var(--muted);
}

.chat-summary {
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f4fbf6, #ffffff);
}

.chat-summary h3,
.chat-summary p,
.chat-messages p {
  margin: 4px 0 0;
}

.chat-messages {
  max-height: 360px;
  overflow: auto;
  padding: 4px;
}

.chat-messages article.own {
  margin-left: min(80px, 18vw);
  border-color: rgba(15, 118, 84, 0.28);
  background: #e8f7ed;
}

.review-list p {
  margin: 4px 0 0;
  color: var(--muted);
}

.seller-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.seller-listings button {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  text-align: left;
}

dialog {
  width: min(960px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(18, 25, 21, 0.38);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.dialog-head button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.compare-table {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  overflow-x: auto;
}

.compare-row {
  display: grid;
  gap: 10px;
  align-items: center;
  min-width: 680px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.compare-row.header {
  position: sticky;
  top: 0;
  background: var(--night);
  color: white;
  font-weight: 900;
}

.compare-row span,
.compare-row strong {
  overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
  .workspace,
  .layout,
  .split-section {
    grid-template-columns: 1fr;
  }

  .rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .filters {
    position: static;
  }

  .catalog-grid,
  .logic-grid,
  .benefit-strip,
  .market-strip,
  .category-dock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .top-actions {
    justify-content: flex-start;
  }

  .account-switch {
    width: 100%;
  }

  .role-button {
    width: 100%;
  }

  .search-panel {
    grid-template-columns: 1fr;
    padding: 24px;
    order: -1;
  }

  .catalog-hero {
    padding: 18px;
  }

  .catalog-hero h2 {
    font-size: 1.9rem;
  }

  .catalog-hero p {
    font-size: 0.95rem;
  }

  .benefit-strip {
    display: flex;
    margin-inline: -16px;
    padding: 0 16px 4px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .benefit-strip::-webkit-scrollbar {
    display: none;
  }

  .benefit-strip article {
    min-width: 250px;
    scroll-snap-align: start;
  }

  .search-row,
  .metrics,
  .rail,
  .catalog-grid,
  .logic-grid,
  .catalog-hero,
  .catalog-search,
  .benefit-strip,
  .sources ul,
  .form-row,
  .auth-grid,
  .listing-detail,
  .market-strip,
  .category-dock {
    grid-template-columns: 1fr;
  }

  .catalog-quickbar {
    margin-inline: -16px;
    padding: 0 16px 4px;
  }

  .intent-card {
    min-width: 190px;
    scroll-snap-align: start;
  }

  .filter-actions {
    grid-template-columns: 1fr;
  }

  .spec-grid,
  .contact-actions,
  .question-form,
  .chat-form,
  .service-selection,
  .service-wizard,
  .service-panel-head,
  .company-public-hero,
  .company-hero-preview {
    grid-template-columns: 1fr;
  }

  .service-filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .service-filter-actions {
    justify-content: flex-end;
  }

  .promo-section {
    margin-inline: -16px;
    border-left: 0;
    border-right: 0;
    padding: 14px 16px;
  }

  .promo-card {
    min-width: 214px;
    max-width: 214px;
  }

  .promo-image {
    min-height: 112px;
  }

  .catalog-toolbar,
  .bid-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .tabs {
    width: 100%;
  }

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