:root {
  --bg: #07111f;
  --bg-soft: #0b1730;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ebf3ff;
  --muted: #9fb1cf;
  --blue: #6cbcff;
  --cyan: #88f5ff;
  --glow: 0 0 32px rgba(108, 188, 255, 0.18);
  --radius: 22px;
  --radius-lg: 30px;
  --max: 1180px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(108, 188, 255, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(136, 245, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #081523 44%, #0a1930 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(6, 13, 24, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(136, 245, 255, 0.18), rgba(108, 188, 255, 0.16));
  box-shadow: var(--glow);
  font-size: 18px;
  font-weight: 700;
}

.brand-copy { min-width: 0; }
.brand-copy strong { display: block; font-size: 16px; letter-spacing: 0.02em; }
.brand-copy span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; white-space: nowrap; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a { transition: 0.2s ease; }
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 600;
  transition: 0.22s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, rgba(108, 188, 255, 0.24), rgba(136, 245, 255, 0.13));
  box-shadow: var(--glow);
}

.btn-secondary { background: rgba(255, 255, 255, 0.05); }
.btn-block { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(136, 245, 255, 0.05);
  border: 1px solid rgba(136, 245, 255, 0.15);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

.hero { padding: 78px 0 48px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.category-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 16px 0 16px;
}

.hero-copy p,
.page-hero p,
.category-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 740px;
  margin: 0;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.card,
.panel,
.glass {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.hero-card h3,
.section-title {
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

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

.mini-card,
.info-card,
.stat-card,
.listing-card,
.service-card,
.quick-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.mini-card h3,
.info-card h3,
.service-card strong,
.quick-card strong { margin: 0 0 8px; }

.mini-card p,
.info-card p,
.service-card span,
.quick-card span,
.meta,
.small-text {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.section { padding: 26px 0 66px; }

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-header h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.section-header p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.7;
}

.stat-card strong {
  display: block;
  font-size: 30px;
  margin-bottom: 6px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip,
.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #dfeaff;
  font-size: 12px;
}

.badge { margin-bottom: 14px; }

.toolbar {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.85fr;
  gap: 12px;
  margin: 24px 0 24px;
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  outline: none;
  font: inherit;
}

.input::placeholder,
.textarea::placeholder { color: #8ea2c3; }

.textarea {
  min-height: 130px;
  resize: vertical;
}

.listings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.listing-card h3 { margin: 0 0 8px; }
.listing-card .meta { min-height: 68px; margin-bottom: 16px; }

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

.link-accent {
  color: var(--cyan);
  font-weight: 600;
}

.empty-state {
  display: none;
  text-align: center;
  padding: 30px;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: var(--muted);
  margin-top: 16px;
}

.cover-card {
  min-height: 360px;
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.24), rgba(5, 10, 18, 0.88)),
    radial-gradient(circle at top right, rgba(108,188,255,.20), transparent 32%),
    url("../media/ellen-borglund-GJgPjD32NQg-unsplash.jpg") center 68% / cover no-repeat;
}

.cover-card h1,
.cover-card h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.05em;
}

.cover-card p {
  color: #d9e9ff;
  line-height: 1.7;
  max-width: 720px;
  margin: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

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

.form-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0 40px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.category-hero { padding: 54px 0 24px; }

.category-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
  padding-bottom: 70px;
}

.category-main {
  display: grid;
  gap: 18px;
}

.category-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.category-block { padding: 24px; }
.category-list { display: grid; gap: 14px; }

.company-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}

.company-row h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.company-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.category-intro { margin-top: 10px; }

.rfq-box {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.muted-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.category-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.category-tile {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  transition: 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(136,245,255,0.28);
}

.category-tile h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.category-tile p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.2s ease;
}

.link-list a:hover {
  border-color: rgba(108,188,255,0.28);
  color: var(--text);
}

.link-list span {
  color: var(--muted);
  font-size: 14px;
}

.directory-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 24px 0 30px;
}

.shortcut-card {
  position: relative;
  overflow: hidden;
  min-height: 316px;
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.16), rgba(5, 10, 18, 0.86)),
    linear-gradient(90deg, rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.52)),
    radial-gradient(circle at top right, rgba(108, 188, 255, 0.16), transparent 34%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.shortcut-card:hover {
  transform: translateY(-3px);
  border-color: rgba(136,245,255,0.25);
}

.shortcut-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.shortcut-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.18), rgba(5, 10, 18, 0.82)),
    linear-gradient(90deg, rgba(7, 17, 31, 0.90), rgba(7, 17, 31, 0.42)),
    radial-gradient(circle at top right, rgba(108, 188, 255, 0.16), transparent 34%);
  z-index: 1;
}

.shortcut-card > * {
  position: relative;
  z-index: 2;
}

.shortcut-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.shortcut-card p {
  margin: 0;
  color: #d7e5fb;
  font-size: 14px;
  line-height: 1.6;
  max-width: 28ch;
}

.shortcut-cafes::before {
  background-image: url("../media/main-cat-cafes.jpg");
  background-position: center 58%;
}

.shortcut-surf::before {
  background-image: url("../media/main-cat-surf.jpg");
  background-position: center center;
}

.shortcut-packaging::before {
  background-image: url("../media/main-cat-packaging.jpg");
  background-position: center center;
}

.shortcut-hotels::before {
  background-image: url("../media/main-cat-hotels.jpg");
  background-position: center center;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s ease;
}

.lang-pill:hover,
.lang-pill.active {
  color: var(--text);
  border-color: rgba(136,245,255,0.3);
  background: linear-gradient(135deg, rgba(108,188,255,0.16), rgba(136,245,255,0.1));
}

.tile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shortcut-card .btn-secondary {
  background: rgba(12, 23, 42, 0.54);
  backdrop-filter: blur(8px);
}

.availability-note {
  display: block;
  margin-top: 18px;
  color: #d8e5fb;
  font-size: 13px;
  line-height: 1.6;
}


.rfq-panel { padding: 24px; }

.rfq-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.rfq-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.dual-card-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.soft-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 18px 0;
}

.locale-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid,
  .split-layout,
  .grid-2,
  .grid-3,
  .grid-4,
  .toolbar,
  .listings,
  .category-layout,
  .company-row,
  .category-hub-grid,
  .directory-shortcuts,
  .dual-card-grid { grid-template-columns: 1fr; }

  .hero { padding-top: 56px; }
  .hero-copy h1,
  .page-hero h1,
  .category-hero h1 { font-size: clamp(36px, 9vw, 52px); }
  .brand-copy span { white-space: normal; }
  .lang-switch { display: none; }
  .tile-actions { flex-direction: column; }
}

.form-help {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.form-error[data-check-error],
.form-error[data-report-missing] {
  margin-top: 10px;
  color: #ff8b7a;
  font-size: 13px;
  line-height: 1.6;
}


main,
.site-footer {
  position: relative;
  z-index: 1;
}

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(136, 245, 255, 0.72);
  box-shadow: 0 0 18px rgba(136, 245, 255, 0.42);
  opacity: 0.48;
  animation: particleFloat 18s linear infinite;
}

.particle:nth-child(2n) {
  background: rgba(108, 188, 255, 0.7);
}

.particle:nth-child(3n) {
  width: 2px;
  height: 2px;
}

@keyframes particleFloat {
  from {
    transform: translateY(120vh) translateX(0);
  }
  to {
    transform: translateY(-20vh) translateX(28px);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card {
  padding: 24px;
}

.pricing-card.featured-plan {
  border-color: rgba(136, 245, 255, 0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  box-shadow: 0 0 36px rgba(108, 188, 255, 0.16);
}

.pricing-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-card.featured-plan .pricing-label {
  color: var(--text);
  border-color: rgba(136, 245, 255, 0.28);
  background: linear-gradient(135deg, rgba(108,188,255,0.18), rgba(136,245,255,0.1));
}

.pricing-price {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
}

.pricing-subtitle {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px;
}

.pricing-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.pricing-list li + li {
  margin-top: 4px;
}

.pricing-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

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


.pricing-hero-copy {
  max-width: 760px;
}

.pricing-highlight {
  border-color: rgba(136, 245, 255, 0.3);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
}

.pricing-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 980px) {
  .pricing-meta-grid {
    grid-template-columns: 1fr;
  }
}


.map-panel {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.map-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.map-card-header .section-title {
  margin: 0;
}

.map-embed-frame {
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}

.map-embed-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.04);
}


@media (max-width: 1200px) {
  .directory-shortcuts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .directory-shortcuts {
    grid-template-columns: 1fr;
  }

  .shortcut-card {
    min-height: 280px;
  }
}


.profile-snapshot-panel {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.profile-snapshot-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.profile-identity-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  gap: 14px;
}

.profile-identity-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(108,188,255,0.22), rgba(136,245,255,0.12));
  border: 1px solid rgba(136,245,255,0.18);
  box-shadow: 0 0 26px rgba(108, 188, 255, 0.14);
  font-size: 24px;
}

.profile-identity-top h3 {
  margin: 0 0 4px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.profile-identity-top p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.profile-rating-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-rating-line strong {
  font-size: 32px;
  line-height: 1;
}

.profile-stars {
  color: #ffd66b;
  letter-spacing: 0.08em;
  font-size: 15px;
}

.profile-rating-copy {
  color: var(--muted);
  font-size: 14px;
}

.profile-status-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dff8e9;
  font-size: 14px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #64e39c;
  box-shadow: 0 0 14px rgba(100, 227, 156, 0.4);
}

.profile-detail-list {
  display: grid;
  gap: 10px;
}

.profile-detail-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.profile-detail-item strong {
  font-size: 13px;
}

.profile-detail-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.profile-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-action-row .btn {
  flex: 1 1 120px;
}

.profile-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.profile-mini-card {
  min-height: 118px;
}

.profile-review-stack {
  display: grid;
  gap: 12px;
}

.review-chip-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}

.review-chip-card strong {
  display: block;
  margin-bottom: 8px;
}

.review-chip-card span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 980px) {
  .profile-mini-grid {
    grid-template-columns: 1fr;
  }
}



/* StarDAO SEO rebuild extensions */
.page-hero {
  max-width: 900px;
}

.page-hero h1 {
  margin: 16px 0 16px;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cover-card {
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.28), rgba(5, 10, 18, 0.88)),
    radial-gradient(circle at top right, rgba(108,188,255,.22), transparent 34%),
    radial-gradient(circle at left center, rgba(136,245,255,.08), transparent 28%),
    linear-gradient(135deg, rgba(9, 20, 36, 0.96), rgba(9, 28, 48, 0.88));
}

.cover-card .badge {
  width: fit-content;
}

.listing-card h3 {
  min-height: 52px;
}

.listing-card .btn {
  min-height: 40px;
  padding: 10px 14px;
}

.rfq-panel h2 {
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.profile-detail-item strong {
  color: var(--text);
}

.link-list a {
  color: var(--text);
}

.hero-copy p + p {
  margin-top: 16px;
}

.site-footer .footer-links a:first-child {
  color: var(--text);
}

@media (max-width: 980px) {
  .listing-card h3 {
    min-height: 0;
  }
}


.media-panel {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.media-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.profile-gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}

.profile-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.profile-gallery-card figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.source-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.source-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .profile-gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* Featured page layout refresh */
.featured-shell .brand-mark,
.featured-shell .profile-avatar {
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
}

.featured-shell .brand-mark img,
.featured-shell .profile-avatar img {
  width: 22px;
  height: 22px;
  display: block;
}

.featured-shell .profile-avatar img {
  width: 28px;
  height: 28px;
}

.featured-shell .profile-avatar {
  box-shadow: 0 0 30px rgba(66, 133, 244, 0.18);
}

.featured-shell .cover-card {
  min-height: 380px;
}

.featured-shell .profile-snapshot-panel,
.featured-shell .media-panel,
.featured-shell .optimized-services-panel,
.featured-shell .rfq-panel,
.featured-shell .map-panel {
  padding: 24px;
}

.featured-shell .profile-snapshot-head .badge,
.featured-shell .map-card-header .badge {
  margin-bottom: 10px;
}

.featured-shell .profile-identity-card {
  gap: 16px;
}

.featured-shell .profile-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-shell .profile-gallery-card {
  border-radius: 24px;
}

.featured-shell .profile-gallery-card figcaption {
  display: none;
}

.featured-shell .profile-gallery-card img {
  aspect-ratio: 1 / 1;
}

.featured-shell .optimized-services-panel .grid-2 {
  align-items: stretch;
}

.featured-shell .optimized-services-panel .service-card {
  min-height: 150px;
}

.featured-shell .intro-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.featured-shell .map-embed-frame {
  min-height: 320px;
}

.featured-shell .cta-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.featured-shell .sample-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.featured-shell .sample-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 12px;
}

.featured-shell .sample-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.featured-shell .sample-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .featured-shell .profile-gallery-grid,
  .featured-shell .sample-grid {
    grid-template-columns: 1fr;
  }
}



.page-intro {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.hero-tight {
  padding-top: 42px;
  padding-bottom: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--muted);
  transition: 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.breadcrumbs span[aria-current="page"] {
  color: var(--text);
}

.breadcrumb-sep {
  opacity: 0.6;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.trust-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text);
  font-size: 14px;
}

.cta-banner {
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cta-banner p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.featured-shell .brand-mark img,
.brand-mark img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.page-intro h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.page-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 820px;
}

@media (max-width: 980px) {
  .trust-strip,
  .cta-banner {
    grid-template-columns: 1fr;
  }
}



.showcase-band {
  margin-top: 10px;
}

.showcase-band .section-header {
  margin-bottom: 16px;
}

.showcase-band .directory-shortcuts {
  margin-top: 0;
}

.shortcut-card h3 {
  max-width: 18ch;
}

.shortcut-card .tile-actions {
  margin-top: 16px;
}

.featured-shell .hero-tight {
  padding: 20px 0 8px;
}

.featured-shell .page-intro {
  padding-bottom: 4px;
}

.featured-shell .split-layout {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.featured-shell .cover-card {
  min-height: 250px;
  padding: 22px;
  background-position: center 60%;
}

.featured-shell .cover-card h1,
.cover-card h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.featured-shell .cover-card p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 42ch;
}

.featured-shell .cover-card .hero-actions {
  margin-top: 18px;
}

.featured-shell .profile-snapshot-panel,
.featured-shell .map-panel {
  padding: 20px;
}

.featured-shell .map-embed-frame,
.featured-shell .map-embed-frame iframe {
  min-height: 300px;
}

.featured-shell .profile-gallery-grid {
  min-height: 0;
}

.featured-shell .media-panel,
.featured-shell .optimized-services-panel,
.featured-shell .rfq-panel {
  padding: 20px;
}

.featured-shell .rfq-panel .faq-grid {
  gap: 12px;
}

.featured-shell .service-card span,
.featured-shell .faq-item p,
.featured-shell .cta-note,
.featured-shell .intro-copy {
  font-size: 14px;
}

@media (max-width: 980px) {
  .featured-shell .split-layout {
    grid-template-columns: 1fr;
  }
}


/* 2026-03 compact layout refresh */
.nav-links:empty,
.footer-links:empty { display:none; }

.info-card,
.service-card,
.listing-card,
.category-tile,
.pricing-card,
.rfq-panel,
.media-panel,
.optimized-services-panel {
  display: flex;
  flex-direction: column;
}

.tile-actions,
.pricing-actions,
.row-between {
  margin-top: auto;
}

.listing-card .meta {
  min-height: 0;
}

.directory-shortcuts {
  margin: 14px 0 18px;
}

.shortcut-card {
  min-height: 280px;
  padding: 24px;
}

.hero-card {
  padding: 20px;
}

.hero-card .info-card,
.grid-3 .service-card,
.category-hub-grid .category-tile,
.listings .listing-card {
  height: 100%;
}

.pricing-cycle {
  font-size: 16px;
  color: var(--muted);
  margin-left: 6px;
  letter-spacing: 0;
}

.featured-shell .hero-tight {
  padding: 14px 0 6px;
}

.featured-shell .page-intro {
  max-width: 720px;
  gap: 10px;
  padding-bottom: 0;
}

.featured-shell .page-intro h1 {
  font-size: clamp(30px, 4.5vw, 48px);
}

.featured-shell .page-intro p {
  font-size: 16px;
  line-height: 1.65;
}

.featured-shell .trust-strip {
  margin-top: 16px;
}

.featured-shell .split-layout.profile-page-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 18px;
}

.featured-shell .profile-main-column,
.featured-shell .profile-side-column {
  gap: 18px;
}

.featured-shell .cover-card {
  min-height: 205px;
  padding: 20px;
  border-radius: 24px;
}

.featured-shell .cover-card h1,
.cover-card h2 {
  font-size: clamp(26px, 3.3vw, 34px);
  margin-bottom: 8px;
}

.featured-shell .cover-card p {
  font-size: 14px;
  line-height: 1.55;
  max-width: 38ch;
}

.featured-shell .cover-card .hero-actions {
  margin-top: 14px;
}

.featured-shell .profile-snapshot-panel,
.featured-shell .map-panel,
.featured-shell .media-panel,
.featured-shell .optimized-services-panel,
.featured-shell .rfq-panel {
  padding: 18px;
}

.featured-shell .map-embed-frame,
.featured-shell .map-embed-frame iframe {
  min-height: 280px;
}

.featured-shell .media-panel {
  order: 2;
}

.featured-shell .profile-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.featured-shell .profile-gallery-card img {
  aspect-ratio: 1 / 1;
}

.featured-shell .optimized-services-panel .service-card {
  min-height: 0;
}

.featured-shell .gallery-head p,
.featured-shell .service-card span,
.featured-shell .faq-item p,
.featured-shell .cta-note,
.featured-shell .intro-copy,
.featured-shell .rfq-panel p {
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .featured-shell .split-layout.profile-page-layout {
    grid-template-columns: 1fr;
  }
}


/* Directory and category keyword search */
.search-panel {
  padding: 18px;
  display: grid;
  gap: 14px;
}
.search-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.search-input-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}
.search-icon { font-size: 18px; line-height: 1; opacity: 0.8; }
.search-input {
  width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font: inherit;
}
.search-input::placeholder { color: rgba(255,255,255,0.48); }
.search-clear {
  border: 0; background: transparent; color: var(--muted); font: inherit; cursor: pointer; padding: 4px 6px;
}
.search-clear:hover { color: var(--text); }
.search-meta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
}
.search-help, .search-count {
  margin: 0; color: var(--muted); font-size: 14px;
}
.search-chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.search-chip-btn {
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: var(--text);
  border-radius: 999px; padding: 9px 12px; cursor: pointer; font: inherit;
}
.search-chip-btn:hover, .search-chip-btn.active {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18);
}
.search-empty {
  padding: 16px 18px; border-radius: 18px; border: 1px dashed rgba(255,255,255,0.14); color: var(--muted);
}
[data-search-item].is-hidden, [data-search-item][hidden] { display: none !important; }
.related-businesses-panel .link-list { display: grid; gap: 12px; }
.related-business-link {
  display: grid; gap: 6px; padding: 14px 16px; border-radius: 18px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.related-business-link strong { color: var(--text); font-size: 16px; }
.related-business-link span { color: var(--muted); font-size: 14px; line-height: 1.5; }
.featured-shell .profile-page-layout { grid-template-columns: 1fr 1fr; gap: 16px; }
.featured-shell .cover-card { min-height: 240px; padding: 18px; }
.featured-shell .map-embed-frame, .featured-shell .map-embed-frame iframe { min-height: 260px; }
.featured-shell .dual-card-grid { grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.featured-shell .dual-card-grid > .panel, .featured-shell .stack > .panel, .featured-shell .stack > article { height: 100%; }
.featured-shell .media-panel, .featured-shell .related-businesses-panel, .featured-shell .profile-snapshot-panel,
.featured-shell .map-panel, .featured-shell .optimized-services-panel, .featured-shell .rfq-panel { padding: 18px; }
@media (max-width: 980px) { .search-toolbar { grid-template-columns: 1fr; } }

.search-toolbar { grid-template-columns: minmax(0, 1fr) minmax(220px, 260px) auto; }
.search-select-wrap {
  display: flex; align-items: center; padding: 0 14px; min-height: 52px;
  border-radius: 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
}
.search-select {
  width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font: inherit; cursor: pointer;
}
.search-select option { color: #111827; }
@media (max-width: 980px) { .search-toolbar { grid-template-columns: 1fr; } .search-select-wrap { min-height: 48px; } }


/* Search panel width and gallery lightbox updates */
.search-panel.search-panel-wide {
  width: 100%;
  max-width: none;
  margin-top: 22px;
}

.search-panel.search-panel-wide h2 {
  margin: 0;
}

.search-panel.search-panel-wide .search-help {
  max-width: 78ch;
}

.search-toolbar {
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, 320px) auto;
}

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

.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 316px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.16), rgba(5, 10, 18, 0.86)),
    linear-gradient(90deg, rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.52)),
    radial-gradient(circle at top right, rgba(108, 188, 255, 0.16), transparent 34%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.category-overview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(136,245,255,0.25);
}

.category-overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.category-overview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.22), rgba(5, 10, 18, 0.82)),
    linear-gradient(90deg, rgba(7, 17, 31, 0.90), rgba(7, 17, 31, 0.42)),
    radial-gradient(circle at top right, rgba(108, 188, 255, 0.16), transparent 34%);
  z-index: 1;
}

.category-overview-card > * {
  position: relative;
  z-index: 2;
}

.category-overview-card h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.category-overview-card p,
.category-overview-card .availability-note {
  margin: 0;
  color: #d7e5fb;
  line-height: 1.7;
}

.category-overview-card .tile-actions {
  margin-top: 4px;
}

.sector-cafes::before {
  background-image: url("../media/main-cat-cafes.jpg");
  background-position: center center;
}

.sector-surf::before {
  background-image: url("../media/main-cat-surf.jpg");
  background-position: center center;
}

.sector-packaging::before {
  background-image: url("../media/main-cat-packaging.jpg");
  background-position: center center;
}

.sector-hotels::before {
  background-image: url("../media/main-cat-hotels.jpg");
  background-position: center center;
}


.profile-gallery-card {
  position: relative;
}

.profile-gallery-card img {
  cursor: zoom-in;
}

.profile-gallery-card img:focus-visible {
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: -2px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 10, 24, 0.86);
  backdrop-filter: blur(8px);
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox-dialog {
  width: min(96vw, 1100px);
  max-height: 92vh;
  display: grid;
  gap: 12px;
}

.gallery-lightbox-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(5, 12, 26, 0.96);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.gallery-lightbox-frame img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  background: #030b18;
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(4, 12, 24, 0.78);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox-caption {
  margin: 0;
  color: rgba(255,255,255,0.84);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .search-panel.search-panel-wide {
    margin-top: 18px;
  }

  .category-overview-grid {
    grid-template-columns: 1fr;
  }
}


.featured-shell .profile-page-layout,
.featured-shell .dual-card-grid { align-items: start; }
.featured-shell .dual-card-grid > .panel, .featured-shell .stack > .panel, .featured-shell .stack > article { height: auto; }


.page-hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(28px, 4vw, 42px);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,15,31,0.14) 0%, rgba(5,15,31,0.38) 40%, rgba(5,15,31,0.88) 100%),
    linear-gradient(90deg, rgba(4,16,34,0.88) 0%, rgba(4,16,34,0.58) 45%, rgba(4,16,34,0.30) 100%);
}

.page-hero-banner .page-intro {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.page-hero-banner .eyebrow,
.page-hero-banner h1,
.page-hero-banner p,
.page-hero-banner .trust-item {
  text-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.page-hero-banner .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(10,26,51,0.54);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
}

.page-hero-banner .page-intro h1 {
  max-width: 12ch;
}

@media (max-width: 980px) {
  .page-hero-banner {
    min-height: 360px;
    padding: 24px;
    align-items: end;
  }

  .page-hero-banner .page-intro h1 {
    max-width: none;
  }
}


/* Packed business profile layout */
.featured-shell .split-layout.profile-page-layout.profile-page-packed {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
  align-items: start;
}

.featured-shell .profile-page-packed > .profile-main-column,
.featured-shell .profile-page-packed > .profile-side-column {
  display: grid;
  gap: 16px;
  align-content: start;
}

.featured-shell .profile-page-packed .cover-card {
  min-height: 0;
}

.featured-shell .profile-page-packed .panel-compact {
  margin: 0;
}

.featured-shell .profile-page-packed .profile-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.featured-shell .profile-page-packed .gallery-head,
.featured-shell .profile-page-packed .profile-snapshot-head,
.featured-shell .profile-page-packed .map-card-header {
  margin-bottom: 10px;
}

.featured-shell .profile-page-packed .faq-grid,
.featured-shell .profile-page-packed .link-list {
  gap: 10px;
}

.featured-shell .profile-page-packed .profile-action-row {
  gap: 10px;
}

.featured-shell .profile-page-packed .profile-detail-list {
  gap: 10px;
}

.featured-shell .profile-page-packed .rfq-panel p:last-child,
.featured-shell .profile-page-packed .intro-copy:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .featured-shell .split-layout.profile-page-layout.profile-page-packed {
    grid-template-columns: 1fr;
  }
}



/* Directory and index image-backed profile cards */
.listing-card.listing-card-image {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  justify-content: space-between;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.18), rgba(5, 10, 18, 0.88)),
    linear-gradient(90deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.48)),
    radial-gradient(circle at top right, rgba(108, 188, 255, 0.16), transparent 34%),
    rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.listing-card.listing-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.listing-card.listing-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.16), rgba(5, 10, 18, 0.86)),
    linear-gradient(90deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.44)),
    radial-gradient(circle at top right, rgba(108, 188, 255, 0.16), transparent 34%);
  z-index: 1;
}

.listing-card.listing-card-image > * {
  position: relative;
  z-index: 2;
}

.listing-card.listing-card-image h3,
.listing-card.listing-card-image .locale-chip,
.listing-card.listing-card-image .chip {
  color: var(--text);
}

.listing-card.listing-card-image .meta {
  color: #d7e5fb;
  max-width: 34ch;
}

.listing-card.listing-card-image .btn-secondary {
  background: rgba(12, 23, 42, 0.58);
  backdrop-filter: blur(8px);
}

.listing-img-matata::before { background-image: url("../media/directory-matata.jpg"); background-position: center 38%; }
.listing-img-do3::before { background-image: url("../media/directory-do3.jpg"); background-position: center 52%; }
.listing-img-tiptoe::before { background-image: url("../media/directory-tiptoe.jpg"); background-position: center 44%; }
.listing-img-houlang::before { background-image: url("../media/directory-houlang.jpg"); background-position: center 46%; }
.listing-img-shaka::before { background-image: url("../media/directory-shaka.jpg"); background-position: center 46%; }
.listing-img-beachsurf::before { background-image: url("../media/directory-beach-surfing.jpg"); background-position: center 46%; }
.listing-img-sanyaedition::before { background-image: url("../media/directory-sanya-edition.jpg"); background-position: center 46%; }
.listing-img-shanhaitian::before { background-image: url("../media/directory-shanhaitian.jpg"); background-position: center 50%; }
.listing-img-westin::before { background-image: url("../media/directory-westin.jpg"); background-position: center 52%; }
.listing-img-mst::before { background-image: url("../media/directory-mst.jpg"); background-position: center 46%; }
.listing-img-mingching::before { background-image: url("../media/directory-mingching.jpg"); background-position: center 50%; }
.listing-img-jinguan::before { background-image: url("../media/directory-jinguan.jpg"); background-position: center 48%; }

@media (max-width: 980px) {
  .listing-card.listing-card-image {
    min-height: 300px;
  }
}

/* Targeted landing page image cards */
.category-hub-grid .category-tile.landing-card {
  position: relative;
  overflow: hidden;
  min-height: 284px;
  justify-content: space-between;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.16), rgba(5, 10, 18, 0.86)),
    linear-gradient(90deg, rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.52)),
    radial-gradient(circle at top right, rgba(108, 188, 255, 0.16), transparent 34%),
    rgba(255,255,255,0.04);
}

.category-hub-grid .category-tile.landing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.category-hub-grid .category-tile.landing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.16), rgba(5, 10, 18, 0.84)),
    linear-gradient(90deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.44)),
    radial-gradient(circle at top right, rgba(108, 188, 255, 0.16), transparent 34%);
  z-index: 1;
}

.category-hub-grid .category-tile.landing-card > * {
  position: relative;
  z-index: 2;
}

.category-hub-grid .category-tile.landing-card p {
  color: #d7e5fb;
}

.landing-haikou-city::before {
  background-image: url("../media/landing-haikou-city.jpg");
  background-position: center center;
}

.landing-beach-seating::before {
  background-image: url("../media/landing-beach-seating.jpg");
  background-position: center 58%;
}

.landing-surfboards::before {
  background-image: url("../media/landing-surfboards.jpg");
  background-position: center center;
}

.landing-sanya-resort::before {
  background-image: url("../media/landing-sanya-resort.jpg");
  background-position: center 54%;
}

.landing-packaging-factory::before {
  background-image: url("../media/landing-packaging-factory.jpg");
  background-position: center center;
}

.landing-export-office::before {
  background-image: url("../media/landing-export-office.jpg");
  background-position: center center;
}

@media (max-width: 900px) {
  .category-hub-grid .category-tile.landing-card {
    min-height: 250px;
  }
}


/* page type image cards */
.service-card.service-card-image {
  position: relative;
  overflow: hidden;
  min-height: 258px;
  justify-content: flex-start;
  background: rgba(10, 22, 42, 0.28);
  border: 1px solid rgba(166, 231, 255, 0.16);
  backdrop-filter: blur(10px);
}

.service-card.service-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  opacity: 0.62;
}

.service-card.service-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 36, 0.26) 0%, rgba(7, 18, 36, 0.56) 36%, rgba(4, 12, 28, 0.92) 100%),
    linear-gradient(135deg, rgba(0, 132, 255, 0.18) 0%, rgba(7, 18, 36, 0.18) 45%, rgba(7, 18, 36, 0.82) 100%);
}

.service-card.service-card-image > * {
  position: relative;
  z-index: 1;
}

.service-card.service-card-image strong,
.service-card.service-card-image span {
  color: #f4f8ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.28);
}

.service-card.service-card-image span {
  max-width: 30ch;
}

.service-card-business-profile::before { background-image: url("../media/page-type-business-profile.jpg"); background-position: center 48%; }
.service-card-category::before { background-image: url("../media/page-type-category.jpg"); background-position: center 52%; }
.service-card-landing::before { background-image: url("../media/page-type-landing-cluster.jpg"); background-position: center 58%; }
.service-card-directory::before { background-image: url("../media/page-type-directory.jpg"); background-position: center 52%; }
.service-card-pricing::before { background-image: url("../media/page-type-pricing.jpg"); background-position: center 46%; }
.service-card-onboarding::before { background-image: url("../media/page-type-onboarding.jpg"); background-position: center 46%; }

@media (max-width: 980px) {
  .service-card.service-card-image { min-height: 228px; }
}


/* hero first-impression cards */
.info-card.info-card-image {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 148px;
  background: rgba(10, 22, 42, 0.28);
  border: 1px solid rgba(166, 231, 255, 0.16);
  backdrop-filter: blur(10px);
}

.info-card.info-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  opacity: 0.56;
  z-index: -2;
}

.info-card.info-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 36, 0.2) 0%, rgba(7, 18, 36, 0.52) 38%, rgba(4, 12, 28, 0.9) 100%),
    linear-gradient(135deg, rgba(0, 132, 255, 0.16) 0%, rgba(7, 18, 36, 0.18) 48%, rgba(7, 18, 36, 0.82) 100%);
  z-index: -1;
}

.info-card.info-card-image > * {
  position: relative;
  z-index: 1;
}

.info-card.info-card-image h3,
.info-card.info-card-image p {
  color: #f4f8ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.28);
}

.info-card-visitors::before { background-image: url("../media/first-impressions-visitors.jpg"); background-position: center 54%; }
.info-card-owners::before { background-image: url("../media/first-impressions-owners.jpg"); background-position: center 52%; }
.info-card-tourism::before { background-image: url("../media/first-impressions-tourism.jpg"); background-position: center 58%; }
.info-card-suppliers::before { background-image: url("../media/first-impressions-suppliers.jpg"); background-position: center 48%; }

@media (max-width: 980px) {
  .info-card.info-card-image { min-height: 134px; }
}

/* Day 2 — homepage + check flow */
.btn-primary-lg {
  min-height: 56px;
  padding: 16px 28px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.home-hero .hero-copy h1 {
  max-width: 16ch;
}

.home-trust .trust-item {
  display: grid;
  gap: 6px;
}

.home-trust .trust-item span,
.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.home-primary-actions {
  margin-top: 28px;
}

.home-secondary-actions {
  margin-top: 12px;
}

.home-hero-card .home-steps {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.home-steps li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.home-steps strong {
  display: block;
  color: var(--text);
  margin-bottom: 2px;
}

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

.field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .btn-primary-lg {
    width: 100%;
  }
}
