:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-header-height: 72px;
  --safe-header-height-mobile: 96px;
  --bottom-nav-height-mobile: 62px;
  --safe-scroll-bottom: calc(40px + var(--safe-bottom));
  --safe-focus-offset: calc(var(--safe-top) + var(--safe-header-height) + 16px);
  --ink: #f7f4ec;
  --paper: #ffffff;
  --charcoal: #0d0d0f;
  --charcoal-2: #141a1f;
  --panel: #11161b;
  --panel-2: #182027;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(13, 13, 15, 0.12);
  --muted: #aab0b7;
  --muted-2: #68717c;
  --gold: #d9b467;
  --gold-2: #f1d99c;
  --teal: #0da4a7;
  --green: #45c58b;
  --danger: #e56b6f;
  --warning: #f0b85f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  --max: 1200px;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  min-height: 100dvh;
  scroll-behavior: smooth;
  scroll-padding-top: var(--safe-focus-offset);
  scroll-padding-bottom: var(--safe-scroll-bottom);
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--ink);
  background: var(--charcoal);
  min-width: 0;
  overflow-x: hidden;
  scroll-padding-top: var(--safe-focus-offset);
  scroll-padding-bottom: var(--safe-scroll-bottom);
}

input,
textarea,
select,
button,
.btn,
[tabindex] {
  scroll-margin-top: var(--safe-focus-offset);
  scroll-margin-bottom: calc(var(--safe-bottom) + 104px);
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.app-shell {
  min-height: 100vh;
  min-height: 100dvh;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
  padding-bottom: var(--safe-bottom);
  background:
    linear-gradient(180deg, rgba(13, 13, 15, 0.96) 0%, rgba(17, 22, 27, 0.98) 42%, #f5f2ea 42%, #f5f2ea 100%);
}

.app-safe-area,
.safe-screen,
.screen-container,
.layout-container {
  min-width: 0;
}

main.screen-container {
  min-height: calc(100dvh - var(--safe-top) - var(--safe-bottom));
  padding-bottom: var(--safe-scroll-bottom);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: var(--safe-top);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 12, 14, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1320px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.brand-word {
  display: grid;
  gap: 1px;
}

.brand-word strong {
  color: var(--gold-2);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
}

.brand-word span {
  color: rgba(247, 244, 236, 0.72);
  font-size: 10px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a,
.nav button,
.language button {
  border: 0;
  background: transparent;
  color: rgba(247, 244, 236, 0.82);
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a.active,
.nav a:hover,
.nav button:hover,
.language button.active {
  color: var(--gold-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.global-search {
  min-width: 260px;
  display: grid;
  grid-template-columns: 1fr 38px;
  border: 1px solid rgba(217, 180, 103, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.global-search input,
.global-search button {
  border: 0;
  background: transparent;
  color: var(--ink);
}

.global-search input {
  padding: 10px 12px;
  outline: 0;
}

.global-search button {
  display: grid;
  place-items: center;
  cursor: pointer;
  border-left: 1px solid rgba(217, 180, 103, 0.18);
}

.notification-button {
  position: relative;
}

.notification-button span {
  position: absolute;
  right: -5px;
  top: -5px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--gold);
  color: #15120b;
  font-size: 11px;
  font-weight: 900;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  display: grid;
  place-items: center;
}

.icon-button:hover {
  border-color: rgba(217, 180, 103, 0.7);
  color: var(--gold-2);
}

.menu-button {
  display: none;
}

.btn {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #16130b;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 30px rgba(217, 180, 103, 0.22);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.btn-light {
  color: #151515;
  background: var(--paper);
  border-color: rgba(13, 13, 15, 0.1);
}

.btn-ghost {
  color: var(--gold-2);
  border-color: rgba(217, 180, 103, 0.42);
  background: transparent;
}

.hero {
  min-height: 720px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #0d0d0f;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0d0d0f;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 13, 15, 0.9) 0%, rgba(13, 13, 15, 0.58) 44%, rgba(13, 13, 15, 0.14) 100%),
    linear-gradient(180deg, rgba(13, 13, 15, 0.08) 0%, rgba(13, 13, 15, 0) 56%, rgba(13, 13, 15, 0.88) 100%);
}

.hero-showcase {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1040px, 100%);
  padding: 96px 0 64px;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 760px;
  color: var(--paper);
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span,
h2 span {
  color: var(--gold-2);
}

.hero p {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(247, 244, 236, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.search-panel {
  width: min(980px, 100%);
  border: 1px solid rgba(217, 180, 103, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #141414;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.search-tabs {
  display: flex;
  background: #11161b;
}

.search-tabs button {
  width: 144px;
  min-height: 48px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-tabs button.active {
  color: #111;
  background: var(--paper);
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr 1fr auto;
  gap: 12px;
  padding: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  color: #141414;
  background: #fff;
  padding: 0 12px;
}

.field textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #202020;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.publish-choice {
  align-content: start;
  gap: 16px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1040px;
  margin-top: 30px;
}

.trust-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(17, 22, 27, 0.74);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.trust-item svg,
.feature-icon,
.status-icon {
  color: var(--gold-2);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
}

.trust-item span {
  color: rgba(247, 244, 236, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 86px 0;
}

.section.dark {
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
}

.section.paper {
  color: #111;
  background: #f5f2ea;
}

.section.white {
  color: #111;
  background: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.paper .section-kicker,
.white .section-kicker {
  color: #8d6a25;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p,
.lead {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}

.paper .section-head p,
.paper .lead,
.white .section-head p,
.white .lead {
  color: #505964;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.category-card,
.feature-card,
.professional-card,
.pricing-card,
.legal-card,
.dashboard-card,
.form-card,
.message-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.paper .category-card,
.paper .feature-card,
.paper .professional-card,
.paper .pricing-card,
.paper .legal-card,
.paper .dashboard-card,
.paper .form-card,
.paper .message-card,
.white .category-card,
.white .feature-card,
.white .professional-card,
.white .pricing-card,
.white .legal-card,
.white .dashboard-card,
.white .form-card,
.white .message-card {
  border-color: var(--line-dark);
  background: #fff;
}

.category-card {
  min-height: 190px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: 62px;
  height: 1px;
  background: var(--gold);
}

.category-card h3,
.feature-card h3,
.legal-card h3,
.dashboard-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.category-card p,
.feature-card p,
.professional-card p,
.legal-card p,
.dashboard-card p,
.form-card p {
  color: var(--muted);
  line-height: 1.6;
}

.paper .category-card p,
.paper .feature-card p,
.paper .professional-card p,
.paper .legal-card p,
.paper .dashboard-card p,
.paper .form-card p,
.white .category-card p,
.white .feature-card p,
.white .professional-card p,
.white .legal-card p,
.white .dashboard-card p,
.white .form-card p {
  color: #505964;
}

.listing-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 24px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: calc(var(--safe-top) + var(--safe-header-height) + 24px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  color: #111;
}

.filter-panel h3 {
  margin-bottom: 16px;
}

.filter-panel .field {
  margin-bottom: 12px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag,
.badge,
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(217, 180, 103, 0.34);
  color: var(--gold-2);
  background: rgba(217, 180, 103, 0.1);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.paper .tag,
.paper .badge,
.paper .status-badge,
.white .tag,
.white .badge,
.white .status-badge {
  color: #6f541d;
  background: #fbf3df;
  border-color: #ead2a0;
}

.status-badge.teal {
  color: #006d70;
  background: #e5f8f8;
  border-color: #98dedf;
}

.status-badge.green {
  color: #0d6b43;
  background: #e8f8ef;
  border-color: #a7e0c2;
}

.status-badge.red {
  color: #94383c;
  background: #fdebed;
  border-color: #f2b6ba;
}

.status-badge.gray {
  color: #3f4750;
  background: #f0f2f4;
  border-color: #d8dde2;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.listing-card {
  color: #111;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(11, 18, 26, 0.08);
}

.listing-media {
  position: relative;
  aspect-ratio: 1.38 / 1;
  background: #11161b;
  overflow: hidden;
}

.listing-media img {
  height: 100%;
  object-fit: cover;
}

.listing-media .badge-row {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(13, 13, 15, 0.58);
  color: #fff;
}

.listing-body {
  padding: 16px;
}

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

.listing-title h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  color: #6f541d;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 14px 0;
  color: #505964;
  font-size: 13px;
}

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

.detail-hero {
  color: var(--ink);
  background: var(--charcoal);
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--line);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 24px;
  align-items: start;
}

.gallery {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #11161b;
}

.gallery-main {
  aspect-ratio: 1.65 / 1;
}

.gallery-main img {
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.gallery-thumbs img {
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}

.price-box {
  border: 1px solid rgba(217, 180, 103, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 22px;
}

.price-box .price {
  color: var(--gold-2);
  font-size: 34px;
}

.price-box ul,
.clean-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 10px;
}

.price-box li,
.clean-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.paper .clean-list li,
.white .clean-list li {
  border-color: rgba(13, 13, 15, 0.08);
}

.legal-notice {
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(217, 180, 103, 0.1);
  padding: 16px;
  color: rgba(247, 244, 236, 0.86);
  line-height: 1.65;
}

.paper .legal-notice,
.white .legal-notice {
  color: #343b43;
  background: #fbf3df;
}

.feature-card {
  min-height: 218px;
  padding: 22px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(217, 180, 103, 0.4);
  border-radius: 8px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.step {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.step strong {
  display: block;
  color: var(--gold-2);
  margin: 8px 0;
}

.step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.stat strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(28px, 3vw, 42px);
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.professional-card {
  overflow: hidden;
}

.professional-media {
  aspect-ratio: 1.25 / 1;
  background: #11161b;
}

.professional-media img {
  height: 100%;
  object-fit: cover;
}

.professional-body {
  padding: 18px;
}

.professional-body h3 {
  margin-bottom: 4px;
}

.rating {
  color: #8d6a25;
  font-weight: 800;
}

.brand-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: stretch;
}

.brand-board figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #0d0d0f;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.form-card {
  padding: 22px;
}

.compact-form {
  padding: 18px;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.auth-wrap {
  min-height: calc(100dvh - var(--safe-top) - var(--safe-bottom) - var(--safe-header-height));
  display: grid;
  place-items: center;
  padding: calc(64px + var(--safe-top)) 0 calc(64px + var(--safe-bottom));
  background:
    linear-gradient(90deg, rgba(13, 13, 15, 0.98), rgba(13, 13, 15, 0.74)),
    url("/assets/mobile-preview.png") center/cover;
}

.auth-card {
  width: min(520px, calc(100% - 32px));
  border: 1px solid rgba(217, 180, 103, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  padding: 28px;
  box-shadow: var(--shadow);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: calc(var(--safe-top) + var(--safe-header-height) + 24px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.sidebar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  color: #2b333c;
  border-radius: 8px;
  font-weight: 700;
}

.sidebar a.active,
.sidebar a:hover {
  color: #111;
  background: #fbf3df;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.metric strong {
  display: block;
  color: #111;
  font-size: 30px;
}

.metric span {
  color: #68717c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-card {
  padding: 18px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(13, 13, 15, 0.08);
  text-align: left;
  vertical-align: middle;
}

th {
  color: #505964;
  font-size: 12px;
  text-transform: uppercase;
}

.document-list {
  display: grid;
  gap: 12px;
}

.document-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.document-row strong {
  color: #111;
}

.document-row span {
  color: #68717c;
  font-size: 13px;
}

.chat {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
}

.thread-list,
.chat-window {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  color: #111;
}

.thread {
  display: block;
  padding: 14px;
  border-bottom: 1px solid rgba(13, 13, 15, 0.08);
  color: #111;
}

.thread.active {
  background: #fbf3df;
}

.thread-search {
  padding: 12px;
  border-bottom: 1px solid rgba(13, 13, 15, 0.08);
}

.thread-search input {
  width: 100%;
}

.chat-tools {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.safety-message {
  border: 1px solid rgba(217, 180, 103, 0.35);
  border-radius: 8px;
  background: #fbf3df;
  color: #1b1e22;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
}

.chat-window {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.chat-head,
.chat-compose {
  padding: 16px;
  border-bottom: 1px solid rgba(13, 13, 15, 0.08);
}

.chat-compose {
  border-top: 1px solid rgba(13, 13, 15, 0.08);
  border-bottom: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
}

.messages {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.bubble {
  max-width: 72%;
  border-radius: 8px;
  padding: 12px;
  background: #eef1f4;
  color: #111;
}

.bubble.me {
  justify-self: end;
  color: #16130b;
  background: #f4ddaa;
}

.flash-banner {
  position: sticky;
  top: calc(var(--safe-top) + var(--safe-header-height));
  z-index: 40;
  border-bottom: 1px solid rgba(217, 180, 103, 0.3);
  background: #fbf3df;
  color: #1b1e22;
  padding: 12px 24px;
  font-weight: 800;
  text-align: center;
}

.btn.compact {
  padding: 10px 14px;
}

.demo-account-grid {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  max-height: 260px;
  overflow: auto;
}

.demo-account {
  display: grid;
  gap: 3px;
  text-align: left;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  color: #111;
  padding: 10px 12px;
}

.demo-account:hover {
  border-color: var(--gold);
  background: #fbf3df;
}

.demo-account span {
  color: #5a6570;
  font-size: 12px;
}

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

.relationship-card {
  min-height: 160px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  padding: 18px;
}

.paper .relationship-card,
.white .relationship-card {
  color: #111;
  border-color: var(--line-dark);
  background: #fff;
}

.relationship-card h3 {
  margin: 8px 0 4px;
}

.relationship-card p,
.action-note {
  color: var(--muted);
  line-height: 1.55;
}

.action-stack {
  gap: 10px;
}

.action-stack .btn {
  width: 100%;
}

.compact-list {
  max-height: 460px;
  overflow: auto;
}

.professional-profile {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 18px;
}

.professional-profile img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
}

.qc-grid {
  display: grid;
  gap: 18px;
}

.pricing-card {
  padding: 22px;
}

.pricing-card.featured {
  border-color: rgba(217, 180, 103, 0.65);
  box-shadow: 0 18px 60px rgba(217, 180, 103, 0.12);
}

.pricing-card .price {
  font-size: 30px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.faq-item summary {
  cursor: pointer;
  color: #111;
  font-weight: 800;
}

.faq-item p {
  margin: 12px 0 0;
  color: #505964;
  line-height: 1.65;
}

.legal-page {
  max-width: 900px;
}

.legal-page h1 {
  color: #111;
  font-size: clamp(34px, 5vw, 56px);
}

.legal-page h2 {
  margin-top: 32px;
  font-size: 26px;
}

.legal-page p,
.legal-page li {
  color: #3f4750;
  line-height: 1.75;
}

.footer {
  background: #090a0c;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 26px;
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 13px;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  color: rgba(247, 244, 236, 0.72);
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.55;
}

.footer a:hover {
  color: var(--gold-2);
}

.footer-legal {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(247, 244, 236, 0.66);
  font-size: 12px;
  line-height: 1.65;
}

.cookie-banner {
  position: fixed;
  left: calc(18px + var(--safe-left));
  right: calc(18px + var(--safe-right));
  bottom: calc(18px + var(--safe-bottom));
  z-index: 50;
  width: auto;
  max-width: 760px;
  border: 1px solid rgba(217, 180, 103, 0.38);
  border-radius: 8px;
  background: rgba(9, 10, 12, 0.96);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

dialog,
[role="dialog"],
.modal,
.bottom-sheet {
  max-height: calc(100dvh - var(--safe-top) - var(--safe-bottom) - 24px);
  margin-top: var(--safe-top);
  margin-bottom: var(--safe-bottom);
  overflow: auto;
}

.footer,
footer {
  padding-bottom: calc(32px + var(--safe-bottom));
}

.cookie-banner p {
  margin: 0;
  color: rgba(247, 244, 236, 0.78);
  line-height: 1.5;
}

.empty-state {
  border: 1px dashed rgba(217, 180, 103, 0.45);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1320px) {
  .global-search {
    display: none;
  }
}

@media (max-width: 1080px) {
  .search-grid,
  .listing-layout,
  .detail-grid,
  .dashboard-shell,
  .brand-board,
  .split,
  .chat {
    grid-template-columns: 1fr;
  }

  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-grid .btn {
    grid-column: 1 / -1;
  }

  .listing-grid,
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps,
  .metric-grid,
  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-panel,
  .sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --safe-header-height: var(--safe-header-height-mobile);
    --safe-scroll-bottom: calc(var(--bottom-nav-height-mobile) + var(--safe-bottom) + 8px);
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .app-shell {
    padding-bottom: 0;
  }

  main.screen-container {
    padding-top: calc(var(--safe-header-height-mobile) + var(--safe-top));
  }

  .header {
    position: fixed;
    left: 0;
    right: 0;
  }

  .header-inner {
    width: min(100% - 20px, var(--max));
    min-height: var(--safe-header-height-mobile);
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand search actions"
      "brand search actions";
    gap: 8px;
  }

  .brand { grid-area: brand; }
  .global-search { grid-area: search; min-width: 0; height: 40px; grid-template-columns: 1fr 36px; }
  .global-search input { padding: 9px 10px; font-size: 13px; }
  .header-actions { grid-area: actions; gap: 6px; }

  .brand-word span {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .nav {
    position: fixed;
    top: calc(var(--safe-top) + var(--safe-header-height-mobile));
    right: var(--safe-right);
    left: var(--safe-left);
    bottom: auto;
    max-height: calc(100dvh - var(--safe-top) - var(--safe-bottom) - var(--safe-header-height-mobile));
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px calc(18px + var(--safe-bottom));
    background: rgba(9, 10, 12, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a,
  .nav button {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-actions .btn {
    display: none;
  }

  .chat-compose {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-showcase {
    width: 100%;
    opacity: 0.42;
    mask-image: none;
  }

  .hero-content {
    padding: 22px 0 36px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .desktop-hero-search {
    display: none !important;
  }

  .search-panel {
    display: none;
  }

  .search-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .relationship-grid,
  .professional-profile,
  .listing-grid,
  .steps,
  .stat-band,
  .metric-grid,
  .trust-row,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

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

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand-word strong {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .header-actions .icon-button:not(.menu-button) {
    display: none;
  }

  .search-tabs button {
    flex: 1;
    width: auto;
  }

  .listing-title {
    display: grid;
  }

  .listing-actions,
  .chat-compose {
    grid-template-columns: 1fr;
  }
}

.auth-gateway {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(560px, calc(100% - 28px));
  border: 1px solid rgba(217, 180, 103, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  padding: clamp(26px, 5vw, 44px);
}
.auth-gateway h1 { margin: 0; color: #07100c; font-size: clamp(30px, 6vw, 42px); line-height: 1; text-align: center; }
.auth-close { position: absolute; top: 16px; right: 18px; color: #111; font-size: 34px; line-height: 1; }
.auth-brand { display: flex; justify-content: center; color: #111; }
.auth-safe { display: inline-flex; justify-content: center; align-items: center; gap: 8px; margin: -2px 0 6px; color: #151b18; font-weight: 700; text-align: center; }
.auth-safe span { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 999px; background: #0ba977; color: #fff; font-size: 12px; }
.auth-field label { color: #59606a; font-weight: 800; }
.auth-field input, .auth-field select { min-height: 60px; border: 1px solid rgba(13, 13, 15, 0.22); border-radius: 0; background: #fff; color: #151515; font-size: 18px; }
.auth-continue { min-height: 64px; border: 0; border-radius: 0; background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #15120b; font-size: 24px; font-weight: 900; cursor: pointer; }
.auth-help, .auth-switch { justify-self: center; color: #7b828a; text-decoration: underline; font-weight: 700; }
.auth-divider { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; color: #8b929a; font-size: 16px; }
.auth-divider::before, .auth-divider::after { content: ""; height: 1px; background: rgba(13, 13, 15, 0.18); }
.auth-socials { display: grid; gap: 10px; }
.auth-social { width: 100%; min-height: 52px; border: 1px solid rgba(13,13,15,.14); border-radius: 999px; display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; background: #fff; color: #111; padding: 0 18px 0 9px; font-size: 15px; font-weight: 900; line-height: 1; box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.auth-social span { width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; font-size: 24px; font-weight: 900; }
.auth-social strong { text-align: left; }
.auth-social-google span { color: #4285f4; }
.auth-social-facebook { background: #1877f2; color: #fff; border-color: #1877f2; }
.auth-social-facebook span { background: #fff; color: #1877f2; font-family: Georgia, serif; }
.auth-social-apple, .auth-social-x { color: #050505; }
.auth-social:disabled { opacity: .28; cursor: not-allowed; filter: grayscale(1); }
.auth-note { margin: 0; color: #68717c; font-size: 13px; line-height: 1.5; text-align: center; }

.onboarding-screen {
  min-height: calc(100dvh - var(--safe-top) - var(--safe-bottom));
  display: grid;
  place-items: center;
  padding: calc(58px + var(--safe-top)) 18px calc(58px + var(--safe-bottom));
  background: radial-gradient(circle at 15% 10%, rgba(217,180,103,.18), transparent 34%), linear-gradient(135deg, #0d0d0f, #141a1f 54%, #0b1113);
}
.onboarding-card {
  width: min(760px, 100%);
  border: 1px solid rgba(217,180,103,.34);
  border-radius: 22px;
  background: rgba(13,13,15,.92);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 54px);
}
.onboarding-card h1 { margin: 12px 0 10px; font-size: clamp(38px, 7vw, 76px); line-height: .95; }
.onboarding-card h2 { margin: 0 0 12px; color: var(--gold-2); font-size: clamp(22px, 4vw, 34px); }
.onboarding-card p { color: #dfe5e9; }
.onboarding-dots { display: flex; gap: 8px; margin: 24px 0; }
.onboarding-dots span { width: 12px; height: 12px; border-radius: 999px; background: rgba(255,255,255,.24); }
.onboarding-dots span.active { width: 34px; background: var(--gold); }
.privacy-chip { display: block; border: 1px solid rgba(69,197,139,.38); border-radius: 12px; background: rgba(69,197,139,.08); color: #1d513b; padding: 10px 12px; font-weight: 800; line-height: 1.45; }
.onboarding-card .privacy-chip { color: #c8f5dc; }
.password-field { position: relative; }
.password-field input { padding-right: 58px; }
.password-field [data-password-toggle] { position: absolute; right: 10px; bottom: 10px; width: 42px; height: 42px; border: 1px solid rgba(13,13,15,.15); border-radius: 999px; background: #f6f1e4; color: #111; }
.support-status { border: 1px solid rgba(217,180,103,.36); border-radius: 12px; padding: 12px; background: #fbf3df; color: #111; font-weight: 800; }
/* SIGICO header/searchbar definitive fix - 2026-06-17 */
.site-header,
.header {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
  z-index: 1000;
}

.header-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(16px, 2.4vw, 40px);
  padding-right: clamp(16px, 2.4vw, 40px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
  box-sizing: border-box;
  overflow: visible;
}

.header-brand,
.brand {
  flex: 0 0 auto;
  min-width: 0;
  white-space: nowrap;
}

.brand-word,
.brand-word strong,
.brand-word span {
  white-space: nowrap;
}

.header-nav,
.nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.85vw, 16px);
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: visible;
}

.header-nav a,
.header-nav button,
.nav a,
.nav button,
.header-actions,
.header-actions *,
.language,
.language button,
.btn,
.icon-button {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav a,
.nav button {
  padding-left: clamp(5px, 0.55vw, 10px);
  padding-right: clamp(5px, 0.55vw, 10px);
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1;
}

.header-search,
.global-search {
  flex: 1 1 min(620px, 45vw);
  min-width: 320px;
  max-width: 680px;
  width: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
}

.global-search input,
.global-search button,
.search-input,
.searchbar {
  width: 100%;
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  white-space: nowrap;
  overflow: visible;
}

@media (min-width: 1440px) {
  .header-search,
  .global-search {
    flex-basis: 640px;
    max-width: 700px;
  }
}

@media (max-width: 1320px) {
  .header-search,
  .global-search {
    display: grid;
    min-width: 340px;
    flex-basis: 42vw;
    max-width: 600px;
  }
  .brand-word span {
    font-size: 9px;
    letter-spacing: 0.9px;
  }
  .nav a,
  .nav button {
    font-size: 11px;
  }
}

@media (max-width: 1179px) and (min-width: 821px) {
  .header-inner {
    max-width: 100%;
    min-height: 72px;
    gap: 10px;
  }
  .header-search,
  .global-search {
    min-width: 360px;
    max-width: none;
    flex: 1 1 auto;
  }
  .menu-button {
    display: grid;
  }
  .header-actions .icon-button:not(.menu-button) {
    display: none;
  }
  .header-actions > .btn-primary:not(.compact) {
    display: none;
  }
  .header-nav,
  .nav {
    position: fixed;
    top: calc(var(--safe-top) + var(--safe-header-height));
    right: calc(18px + var(--safe-right));
    left: auto;
    width: min(360px, calc(100vw - 36px - var(--safe-left) - var(--safe-right)));
    max-height: calc(100dvh - var(--safe-top) - var(--safe-bottom) - var(--safe-header-height) - 16px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(9, 10, 12, 0.98);
    box-shadow: 0 24px 80px rgba(0,0,0,.32);
    overflow-y: auto;
  }
  body.nav-open .header-nav,
  body.nav-open .nav {
    display: flex;
  }
  .nav a,
  .nav button {
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-align: left;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header,
  .header {
    overflow: visible;
  }
  .header-inner {
    width: 100%;
    max-width: 100%;
    padding-left: max(10px, var(--safe-left));
    padding-right: max(10px, var(--safe-right));
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    overflow: visible;
  }
  .header-brand,
  .brand {
    min-width: 82px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .brand-word strong {
    font-size: 14px;
    letter-spacing: 2.6px;
  }
  .header-search,
  .global-search {
    width: 100%;
    min-width: 0;
    max-width: none;
    flex-basis: auto;
    grid-template-columns: minmax(0, 1fr) 40px;
  }
  .global-search input {
    min-width: 0;
    font-size: 13px;
  }
  .header-actions {
    min-width: auto;
  }
  .header-nav,
  .nav {
    width: auto;
    right: var(--safe-right);
    left: var(--safe-left);
    border-radius: 0 0 16px 16px;
  }
}

@media (max-width: 390px) {
  .header-inner {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 6px;
  }
  .brand-mark {
    display: none;
  }
  .brand-word strong {
    font-size: 13px;
    letter-spacing: 2.2px;
  }
  .global-search input::placeholder {
    color: transparent;
  }
}
/* SIGICO header fix tightening pass - 2026-06-17 */
main.screen-container,
.footer {
  max-width: 100vw;
  overflow-x: clip;
}

@media (min-width: 1180px) {
  .header-actions .icon-button:not(.menu-button) {
    display: none;
  }
  .header-search,
  .global-search {
    min-width: 430px;
  }
}

@media (max-width: 820px) {
  .header-nav,
  .nav {
    display: none;
  }
  body.nav-open .header-nav,
  body.nav-open .nav {
    display: flex;
  }
}

@media (max-width: 520px) {
  .language {
    display: none;
  }
  .header-brand,
  .brand {
    min-width: 72px;
  }
  .header-search,
  .global-search {
    min-width: 0;
  }
}

@media (max-width: 370px) {
  .header-inner {
    grid-template-columns: 64px minmax(0, 1fr) auto;
  }
  .brand-word strong {
    font-size: 12px;
    letter-spacing: 1.8px;
  }
}
/* SIGICO tablet/mobile header two-row search pass - 2026-06-17 */
@media (max-width: 820px) {
  :root {
    --safe-header-height-mobile: 112px;
  }
  .header-inner {
    min-height: var(--safe-header-height-mobile);
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand spacer actions"
      "search search search";
    align-content: center;
    row-gap: 8px;
  }
  .header-brand,
  .brand {
    grid-area: brand;
  }
  .header-search,
  .global-search {
    grid-area: search;
    width: 100%;
    min-width: 0;
    height: 42px;
  }
  .header-actions {
    grid-area: actions;
    justify-self: end;
  }
}
/* SIGICO forced tablet/mobile full-width search - 2026-06-17 */
@media (max-width: 820px) {
  .header-inner {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-areas:
      "brand spacer actions"
      "search search search" !important;
  }
  .header-brand,
  .brand {
    grid-area: brand !important;
  }
  .header-actions {
    grid-area: actions !important;
  }
  .header-search,
  .global-search {
    grid-area: search !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    justify-self: stretch !important;
  }
}
/* SIGICO real desktop overlap fix + new logo image - 2026-06-17 */
.header-inner {
  max-width: min(1760px, calc(100vw - 24px)) !important;
}

.sigico-logo-img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.brand-mark {
  overflow: visible;
}

@media (min-width: 1701px) {
  .header-search,
  .global-search {
    min-width: 520px !important;
    max-width: 720px !important;
  }
}

@media (max-width: 1700px) and (min-width: 1180px) {
  .header-inner {
    max-width: calc(100vw - 24px) !important;
  }
  .nav a:nth-child(n+4) {
    display: none;
  }
  .menu-button {
    display: grid !important;
  }
  .header-search,
  .global-search {
    min-width: 460px !important;
    max-width: none !important;
    flex: 1 1 auto !important;
  }
}

@media (max-width: 1420px) and (min-width: 1180px) {
  .header-actions .compact.btn-ghost {
    display: none;
  }
  .header-search,
  .global-search {
    min-width: 430px !important;
  }
}
/* SIGICO header hard-stop overlap fix - 2026-06-17 v3 */
.header,
.site-header {
  overflow: visible !important;
}

.header-inner {
  width: 100% !important;
  max-width: min(1780px, calc(100vw - 18px)) !important;
  grid-template-columns: auto minmax(210px, max-content) minmax(500px, 1fr) auto !important;
  column-gap: clamp(14px, 1.15vw, 28px) !important;
}

.nav,
.header-nav {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: visible !important;
  white-space: nowrap !important;
}

.nav a,
.header-nav a,
.header-actions a,
.header-actions button,
.search-button,
.search-input {
  white-space: nowrap !important;
}

.header-search,
.global-search {
  min-width: 500px !important;
  max-width: 760px !important;
  width: 100% !important;
  justify-self: stretch !important;
  position: relative !important;
  z-index: 3 !important;
}

@media (max-width: 1760px) and (min-width: 1180px) {
  .header-inner {
    grid-template-columns: auto minmax(180px, max-content) minmax(520px, 1fr) auto !important;
    column-gap: 16px !important;
  }
  .nav a:nth-child(n+4) {
    display: none !important;
  }
  .menu-button {
    display: grid !important;
  }
  .header-search,
  .global-search {
    min-width: 520px !important;
    max-width: none !important;
  }
}

@media (max-width: 1500px) and (min-width: 1180px) {
  .header-inner {
    grid-template-columns: auto minmax(130px, max-content) minmax(470px, 1fr) auto !important;
    column-gap: 12px !important;
  }
  .nav a:nth-child(n+3) {
    display: none !important;
  }
  .header-actions .compact.btn-ghost {
    display: none !important;
  }
  .header-search,
  .global-search {
    min-width: 470px !important;
  }
}

@media (max-width: 1280px) and (min-width: 901px) {
  .header-inner {
    grid-template-columns: auto minmax(360px, 1fr) auto !important;
  }
  .nav {
    display: none !important;
  }
  .menu-button {
    display: grid !important;
  }
  .header-search,
  .global-search {
    min-width: 360px !important;
  }
}


/* SIGICO crisp media, real dropdown menu and language pass - 2026-06-17 v4 */
.listing-media img,
.detail-gallery img,
.hero-showcase,
.brand-board img,
img[src*="house-"],
img[src*="car-"] {
  image-rendering: auto;
  filter: none !important;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.header-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: clamp(14px, 3vw, 44px);
  z-index: 1200;
  width: min(420px, calc(100vw - 28px));
  max-height: min(72vh, 680px);
  overflow-y: auto;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(217,180,103,.36);
  border-radius: 18px;
  background: rgba(9,10,11,.98);
  box-shadow: 0 24px 90px rgba(0,0,0,.55);
}
body.nav-open .header-dropdown { display: grid; }
.header-dropdown-title { grid-column: 1 / -1; color: var(--gold-2); font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.header-dropdown section { display: grid; gap: 6px; align-content: start; }
.header-dropdown h3 { margin: 8px 0 2px; color: var(--gold-2); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.header-dropdown a { display: block; border: 1px solid rgba(255,255,255,.09); border-radius: 10px; padding: 9px 10px; color: rgba(247,244,236,.92); text-decoration: none; font-size: 12px; font-weight: 800; line-height: 1.15; background: rgba(255,255,255,.045); }
.header-dropdown a:hover { border-color: rgba(217,180,103,.45); color: var(--gold-2); }
.language { max-width: 142px; overflow-x: auto; scrollbar-width: none; }
.language::-webkit-scrollbar { display: none; }
.language button { padding-left: 7px !important; padding-right: 7px !important; }
@media (max-width: 820px) {
  .header-dropdown { top: calc(var(--safe-top) + var(--safe-header-height-mobile) + 8px); left: calc(12px + var(--safe-left)); right: calc(12px + var(--safe-right)); width: auto; grid-template-columns: 1fr 1fr; max-height: min(58vh, 520px); }
}
@media (max-width: 420px) { .header-dropdown { grid-template-columns: 1fr; } }


/* SIGICO profile dashboard + definitive header menu/language fix - 2026-06-17 v5 */
.language button:nth-child(n+3) { display: none !important; }
body.nav-open .header-nav,
body.nav-open .nav { display: flex; }
@media (max-width: 1179px) { body.nav-open .header-nav, body.nav-open .nav { display: none !important; } }
@media (min-width: 1180px) { body.nav-open .header-nav { display: flex !important; } }
body.nav-open .header-dropdown { display: grid !important; top: calc(100% + 10px) !important; }
.header-dropdown { right: max(18px, var(--safe-right)) !important; transform: none !important; }

/* SIGICO header overlap hard-fix v7:
   The desktop nav must never sit above the search field.  On laptop and
   medium desktop widths we keep the brand, search and actions visible, and
   move long navigation items to the compact dropdown trigger. */
.header-inner {
  overflow: visible !important;
}

.header-brand,
.header-search,
.header-actions {
  position: relative;
  z-index: 4;
}

.header-search {
  flex: 1 1 560px !important;
  min-width: 420px !important;
  max-width: 720px !important;
}

.header-search input,
.header-search .search-input,
.header-search .searchbar {
  white-space: nowrap !important;
}

.header-nav {
  position: static !important;
  z-index: 1 !important;
  flex: 0 1 auto !important;
  min-width: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.header-nav a,
.header-nav button {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

@media (max-width: 1590px) {
  .header-nav,
  .nav {
    display: none !important;
  }

  .header-search {
    flex-basis: min(680px, 52vw) !important;
    min-width: 460px !important;
    max-width: 760px !important;
  }

  .header-menu-toggle,
  .menu-toggle,
  .mobile-menu-toggle {
    display: inline-flex !important;
  }
}

@media (max-width: 1180px) {
  .header-search {
    min-width: 320px !important;
    flex-basis: min(560px, 54vw) !important;
  }
}

@media (max-width: 900px) {
  .header-search {
    min-width: 0 !important;
    width: 100% !important;
    max-width: none !important;
  }
}
.mini-avatar { width: 100%; height: 100%; display: grid; place-items: center; border-radius: inherit; color: var(--gold-2); font-size: 12px; font-weight: 900; }
.profile-dashboard-page { min-height: calc(100vh - var(--safe-header-height)); padding: 22px clamp(16px, 2vw, 32px); display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 20px; background: radial-gradient(circle at 80% 0%, rgba(217,180,103,.14), transparent 34%), #05090c; color: #111; }
.profile-sidebar { border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: linear-gradient(180deg, rgba(20,28,34,.96), rgba(8,13,17,.98)); padding: 16px; color: var(--ink); display: grid; align-content: start; gap: 8px; }
.profile-side-brand { display: flex; align-items: center; gap: 10px; color: var(--gold-2); text-decoration: none; margin-bottom: 18px; }
.profile-side-brand img { width: 42px; height: 42px; object-fit: contain; }
.profile-side-brand strong { display: block; letter-spacing: 3px; }
.profile-side-brand em { display: block; color: rgba(247,244,236,.68); font-style: normal; font-size: 10px; text-transform: uppercase; }
.profile-side-link { min-height: 48px; display: flex; align-items: center; gap: 12px; border-radius: 12px; padding: 0 14px; color: rgba(247,244,236,.9); text-decoration: none; font-weight: 800; }
.profile-side-link.active, .profile-side-link:hover { background: linear-gradient(90deg, rgba(217,180,103,.28), rgba(217,180,103,.06)); color: var(--gold-2); }
.profile-side-link b { margin-left: auto; min-width: 22px; height: 22px; border-radius: 99px; background: var(--gold); color: #15120b; display: grid; place-items: center; font-size: 12px; }
.profile-upgrade { margin-top: 28px; border: 1px solid rgba(217,180,103,.32); border-radius: 16px; padding: 16px; text-align: center; }
.profile-upgrade p { color: rgba(247,244,236,.78); font-size: 13px; }
.profile-main { min-width: 0; display: grid; gap: 18px; }
.profile-topbar { display: grid; grid-template-columns: minmax(280px, 1fr) auto auto auto; gap: 14px; align-items: center; color: var(--ink); }
.profile-search { max-width: none !important; min-width: 0 !important; height: 54px; }
.profile-top-action, .profile-user-mini { min-height: 48px; display: inline-flex; align-items: center; gap: 8px; color: var(--ink); text-decoration: none; font-weight: 800; }
.notify-action { position: relative; }
.notify-action b { position: absolute; right: -8px; top: 0; background: var(--gold); color: #15120b; border-radius: 99px; min-width: 20px; height: 20px; display: grid; place-items: center; font-size: 11px; }
.profile-user-mini { display: grid; grid-template-columns: 42px auto; column-gap: 10px; align-items: center; }
.profile-user-mini em { grid-column: 2; color: rgba(247,244,236,.68); font-style: normal; font-size: 12px; }
.profile-photo { width: 54px; height: 54px; border-radius: 999px; display: grid; place-items: center; background: linear-gradient(135deg, #f1d99c, #9f6f22); color: #111; font-weight: 900; box-shadow: inset 0 0 0 4px rgba(255,255,255,.45); }
.profile-photo.big { width: 132px; height: 132px; font-size: 38px; }
.profile-hero-card { display: grid; grid-template-columns: auto minmax(0, 1fr) minmax(220px, .45fr) auto; gap: 26px; align-items: center; border-radius: 18px; background: #fff; padding: 28px; box-shadow: 0 24px 70px rgba(0,0,0,.24); }
.profile-hero-card h1 { color: #111; font-size: 32px; margin-bottom: 10px; }
.profile-hero-card p { color: #4f5963; margin: 6px 0; }
.profile-status { border-left: 1px solid #e6e7ea; padding-left: 26px; display: grid; gap: 8px; }
.profile-status span { font-weight: 800; }
.profile-status strong { width: max-content; border-radius: 999px; background: #e3f4e7; color: #2c893d; padding: 8px 16px; }
.profile-status em { color: #59616b; font-style: normal; }
.profile-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.profile-metrics a { min-height: 132px; border: 1px solid rgba(217,180,103,.34); border-radius: 14px; background: linear-gradient(145deg, #10171d, #060a0d); color: var(--ink); text-decoration: none; padding: 22px; display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 18px; }
.profile-metrics svg { color: var(--gold-2); }
.profile-metrics span { color: rgba(247,244,236,.78); font-weight: 800; }
.profile-metrics strong { grid-column: 2; font-size: 34px; }
.profile-panels { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.profile-panels article { border: 1px solid #e6e7ea; border-radius: 14px; background: #fff; padding: 18px; color: #111; }
.panel-head { display: flex; justify-content: space-between; gap: 14px; align-items: center; border-bottom: 1px solid #e8eaee; padding-bottom: 12px; margin-bottom: 14px; }
.panel-head h2 { font-size: 18px; margin: 0; }
.panel-head a { color: #0d0d0f; text-decoration: none; font-weight: 800; }
.profile-list-row { display: grid; grid-template-columns: 112px 1fr; gap: 14px; color: #111; text-decoration: none; padding: 10px 0; border-bottom: 1px solid #eff1f4; }
.profile-list-row img, .practice-card img { width: 112px; height: 74px; object-fit: cover; border-radius: 8px; }
.profile-list-row span { display: grid; gap: 4px; }
.profile-list-row em { color: #68717c; font-style: normal; font-size: 13px; }
.profile-list-row b { color: #b37d22; }
.profile-event { display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: center; color: #111; text-decoration: none; padding: 13px 0; border-bottom: 1px solid #eff1f4; }
.profile-event b { border-radius: 10px; background: #f7f1e5; padding: 12px; text-align: center; }
.profile-event em { color: #68717c; font-style: normal; display: block; margin-top: 4px; }
.practice-card { display: grid; gap: 10px; }
.practice-card span { color: #b37d22; font-weight: 800; text-transform: uppercase; font-size: 12px; }
.practice-card p { color: #68717c; }
@media (max-width: 1100px) { .profile-dashboard-page { grid-template-columns: 1fr; } .profile-sidebar { display: none; } .profile-hero-card, .profile-topbar, .profile-panels { grid-template-columns: 1fr; } .profile-metrics { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .profile-dashboard-page { padding: 14px; } .profile-metrics { grid-template-columns: 1fr; } .profile-photo.big { width: 96px; height: 96px; } }

/* SIGICO 9 operational premium map */
.s9-home,
.s9-page {
  background: #f7f3ec;
  color: #111;
}

.s9-home-hero,
.s9-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(22px, 7vw, 140px);
  background: radial-gradient(circle at 74% 30%, rgba(217,180,103,.28), transparent 28%), linear-gradient(110deg, rgba(2,5,7,.96), rgba(9,11,13,.82));
  color: var(--ink);
  border-bottom: 1px solid rgba(217,180,103,.24);
}

.s9-home-hero::before,
.s9-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.36), rgba(0,0,0,.72));
  z-index: 1;
}

.s9-home-hero > *,
.s9-hero > * {
  position: relative;
  z-index: 2;
}

.s9-home-hero img,
.s9-hero img {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(58vw, 920px);
  height: 100%;
  object-fit: cover;
  opacity: .52;
  filter: saturate(1.06) contrast(1.08);
}

.s9-home-hero h1,
.s9-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 6.5vw, 92px);
  line-height: .98;
  letter-spacing: -.055em;
  color: #fffaf0;
}

.s9-home-hero span,
.s9-hero span,
.s9-section-head a {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}

.s9-home-hero p,
.s9-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(247,244,236,.84);
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.45;
}

.s9-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.s9-search-panel {
  width: min(820px, 92vw);
  margin-top: 36px;
  border: 1px solid rgba(217,180,103,.34);
  border-radius: 18px;
  background: rgba(8,10,12,.88);
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
  padding: 18px;
}

.s9-search-panel strong {
  display: block;
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
}

.s9-search-tabs,
.s9-search-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.s9-search-tabs a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  color: var(--gold-2);
  border: 1px solid rgba(217,180,103,.28);
  text-decoration: none;
  font-weight: 900;
}

.s9-search-panel label {
  display: block;
  margin: 16px 0 8px;
  color: rgba(247,244,236,.74);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.s9-search-line {
  grid-template-columns: minmax(0, 1fr) auto;
}

.s9-search-line input,
.s9-form-card input,
.s9-form-card select,
.s9-form-card textarea {
  width: 100%;
  border: 1px solid rgba(17,17,17,.14);
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: #111;
  box-sizing: border-box;
}

.s9-search-line input {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.s9-section {
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 110px);
}

.s9-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.s9-section-head h2,
.s9-form-card h2,
.s9-page h2 {
  margin: 0;
  color: #111;
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: -.035em;
}

.s9-card-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.s9-card-row .listing-card {
  min-width: 0;
}

.s9-soft {
  background: #fff;
}

.s9-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(28px, 4vw, 58px) clamp(18px, 5vw, 110px);
}

.s9-action-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px 18px;
  align-items: center;
  border: 1px solid rgba(17,17,17,.09);
  border-radius: 18px;
  background: #fff;
  color: #111;
  text-decoration: none;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(10,12,16,.07);
}

.s9-action-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ad7b25;
  background: #fbf4e7;
  border: 1px solid rgba(217,180,103,.28);
}

.s9-action-card strong {
  font-size: 22px;
  letter-spacing: -.02em;
}

.s9-action-card span {
  grid-column: 2 / 4;
  color: #56606b;
  line-height: 1.45;
}

.s9-action-card b {
  color: #ad7b25;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
}

.s9-disclaimer {
  margin: 0 clamp(18px, 5vw, 110px) clamp(36px, 5vw, 72px);
  border: 1px solid rgba(217,180,103,.28);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #fbf2df);
  color: #111;
  padding: 24px;
}

.s9-disclaimer strong {
  display: block;
  color: #8a631e;
  margin-bottom: 8px;
}

.s9-two {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  padding: clamp(28px, 4vw, 58px) clamp(18px, 5vw, 110px);
}

.s9-form-card {
  border: 1px solid rgba(17,17,17,.09);
  border-radius: 20px;
  background: #fff;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 18px 60px rgba(10,12,16,.08);
}

.s9-form-card label {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: #2b3037;
  font-weight: 800;
}

.s9-form-card textarea {
  min-height: 150px;
  resize: vertical;
}

.s9-stack .s9-action-grid {
  padding: 0;
  grid-template-columns: 1fr;
}

.s9-dashboard {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  min-height: calc(100vh - var(--safe-header-height));
  background: #f7f3ec;
}

.s9-side {
  background: linear-gradient(180deg, #050708, #111820);
  color: var(--ink);
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.s9-side-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  text-decoration: none;
  margin-bottom: 18px;
}

.s9-side-brand strong {
  letter-spacing: .18em;
}

.s9-side-brand em {
  display: block;
  color: rgba(247,244,236,.64);
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
}

.s9-side > a:not(.s9-side-brand) {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  color: rgba(247,244,236,.9);
  text-decoration: none;
  font-weight: 850;
  padding: 0 14px;
}

.s9-side > a.active,
.s9-side > a:hover {
  color: var(--gold-2);
  background: linear-gradient(90deg, rgba(217,180,103,.28), rgba(217,180,103,.05));
}

.s9-side-help {
  margin-top: 26px;
  border: 1px solid rgba(217,180,103,.3);
  border-radius: 16px;
  padding: 18px;
}

.s9-side-help p {
  color: rgba(247,244,236,.68);
}

.s9-dash-main {
  padding: clamp(20px, 4vw, 52px);
  display: grid;
  gap: 22px;
}

.s9-dash-hero {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: grid;
  align-items: center;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(10,12,16,.08);
  padding: clamp(26px, 4vw, 48px);
}

.s9-dash-hero img {
  position: absolute;
  right: 0;
  top: 0;
  width: min(48%, 680px);
  height: 100%;
  object-fit: cover;
  opacity: .54;
  mask-image: linear-gradient(90deg, transparent, #000 24%);
}

.s9-dash-hero div {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.s9-dash-hero span {
  color: #ad7b25;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}

.s9-dash-hero h1 {
  margin: 10px 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.045em;
  color: #111;
}

.s9-dash-main > .s9-action-grid {
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .s9-card-row,
  .s9-action-grid,
  .s9-dash-main > .s9-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s9-dashboard,
  .s9-two {
    grid-template-columns: 1fr;
  }

  .s9-side {
    display: none;
  }
}

@media (max-width: 720px) {
  .s9-home-hero,
  .s9-hero {
    min-height: auto;
    padding: 54px 18px;
  }

  .s9-home-hero img,
  .s9-hero img,
  .s9-dash-hero img {
    display: none;
  }

  .s9-search-tabs,
  .s9-search-line,
  .s9-card-row,
  .s9-action-grid,
  .s9-dash-main > .s9-action-grid {
    grid-template-columns: 1fr;
  }
}


/* SIGICO hotfix 2026-06-19: force premium city + luxury car hero and readable overlay */
.hero{
  min-height:760px !important;
  background:#07080a url("/assets/sigico-hero-sharp.png?v=20260619-supercool-hero-v3") center center/cover no-repeat !important;
}
.hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:2 !important;
  background:radial-gradient(circle at 74% 44%,rgba(217,180,103,.18),transparent 34%),linear-gradient(90deg,rgba(5,6,8,.9) 0%,rgba(5,6,8,.56) 34%,rgba(5,6,8,.16) 62%,rgba(5,6,8,.32) 100%) !important;
}
.hero::after{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:2 !important;
  background:linear-gradient(180deg,rgba(5,6,8,.08) 0%,rgba(5,6,8,.04) 48%,rgba(5,6,8,.82) 100%) !important;
  pointer-events:none !important;
}
.hero-showcase{
  position:absolute !important;
  z-index:1 !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
  opacity:1 !important;
  filter:saturate(1.1) contrast(1.08) brightness(.94) !important;
  transform:scale(1.01) !important;
}


/* Definitive SIGICO brand live fix - 20260623-definitive-logo-v1 */
.sigico-logo-img{object-fit:cover;background:#050505}
