/* ============================================================
   Mozlead Directório — public marketplace styles
   Builds on the tokens defined in style.css (--primary, etc.)
   ============================================================ */

/* The app-wide style.css fixes the navbar and pads the body for it.
   The public site uses an in-flow sticky navbar, so reset that here. */
body.site-body {
  padding-top: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---- Public navbar (light, overrides the dark app navbar) ---- */
.site-navbar {
  position: sticky !important;
  top: 0;
  height: auto;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  padding: 0.6rem 0 !important;
}

.site-navbar .navbar-brand {
  color: var(--brand-navy) !important;
  font-weight: 800;
  font-size: 1.25rem;
  gap: 0.35rem;
}

.site-navbar .brand-sub {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.site-navbar .nav-link {
  color: var(--gray-600) !important;
  font-weight: 600;
  font-size: 0.9rem;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--primary) !important;
  background: transparent;
}

.site-navbar .navbar-toggler {
  border: none;
  color: var(--gray-700);
}

/* ---- Hero ---- */
.site-hero {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(16, 185, 129, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(6, 182, 212, 0.10) 0%, transparent 55%),
    #fff;
  padding: 4.5rem 0 4rem;
  border-bottom: 1px solid var(--gray-100);
}

.site-hero.compact { padding: 3.5rem 0 3rem; }

.hero-eyebrow {
  display: inline-block;
  background: var(--primary-50);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.hero-search { max-width: 560px; margin-bottom: 1.75rem; }
.hero-search .input-group-text {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-right: none;
  color: var(--gray-400);
}
.hero-search .form-control {
  border-left: none;
  padding-left: 0;
  box-shadow: none;
}
.hero-search .form-control:focus { box-shadow: none; }
.hero-search .input-group:focus-within {
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.hero-cta {
  display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.hero-cta > span { color: var(--gray-500); font-size: 0.92rem; font-weight: 500; }

.hero-stats { display: flex; gap: 2.5rem; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}
.hero-stats span { font-size: 0.82rem; color: var(--gray-500); margin-top: 0.2rem; }

/* Hero art (stacked floating chips) */
.hero-art { position: relative; height: 340px; }
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.25rem;
  width: 300px;
  animation: fadeInUp 0.5s ease-out both;
}
.hero-chip strong { display: block; font-size: 0.95rem; color: var(--gray-900); }
.hero-chip small { color: var(--gray-500); font-size: 0.8rem; }
.hero-chip-logo {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--biz-color, var(--primary));
  color: #fff; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.hero-chip.chip-0 { top: 10px;  right: 0;   z-index: 3; }
.hero-chip.chip-1 { top: 130px; right: 60px; z-index: 2; animation-delay: 0.1s; }
.hero-chip.chip-2 { top: 250px; right: 10px; z-index: 1; animation-delay: 0.2s; }

/* ---- Generic section ---- */
.site-section { padding: 3.5rem 0; }
.site-section.pt-0 { padding-top: 1.5rem; }
.bg-tint { background: var(--body-bg); }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
}
.section-head h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin: 0;
}
.section-link { font-weight: 600; font-size: 0.9rem; white-space: nowrap; }

/* ---- Category grid ---- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
}
.cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}
.cat-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.cat-tile strong { font-size: 0.95rem; color: var(--gray-900); }
.cat-tile small { color: var(--gray-400); font-size: 0.78rem; }

/* ---- Category chips (directory) ---- */
.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.cat-chip {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.83rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.cat-chip:hover { background: var(--primary-50); color: var(--primary-dark); }
.cat-chip.active {
  background: linear-gradient(135deg, var(--primary), var(--accent-dark));
  color: #fff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ---- Business card ---- */
.biz-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  color: inherit;
}
.biz-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
  color: inherit;
}
.biz-card.is-featured { border-color: var(--primary-200); }

.biz-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #7c2d12;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.28em 0.7em;
  border-radius: var(--radius-full);
}
.biz-badge.static { position: static; display: inline-block; margin-bottom: 0.6rem; }

.biz-card-head { display: flex; gap: 0.85rem; align-items: center; margin-bottom: 0.9rem; }
.biz-logo {
  width: 54px; height: 54px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--biz-color, var(--primary));
  color: #fff; font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.biz-card-title h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.15rem;
}
.biz-cat { font-size: 0.78rem; color: var(--gray-500); }
.biz-cat i { color: var(--primary); margin-right: 0.25rem; }

.biz-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.biz-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-100);
  padding-top: 0.85rem;
  font-size: 0.82rem;
}
.biz-city { color: var(--gray-500); }
.biz-rating { color: var(--warning); font-weight: 700; }

/* ---- Directory header ---- */
.dir-header {
  background: var(--body-bg);
  padding: 2.75rem 0 2rem;
  border-bottom: 1px solid var(--gray-100);
}
.dir-header h1 { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.02em; color: var(--gray-900); margin-bottom: 0.25rem; }
.dir-header p { color: var(--gray-500); margin-bottom: 1.25rem; }
.dir-search { max-width: 560px; }
.dir-search .input-group-text { background: #fff; border: 1.5px solid var(--gray-200); border-right: none; color: var(--gray-400); }
.dir-search .form-control { border-left: none; box-shadow: none; }

/* ---- Detail page ---- */
.detail-hero {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--biz-color, #10B981) 12%, #fff) 0%, #fff 60%);
  padding: 2rem 0 2.25rem;
  border-bottom: 1px solid var(--gray-100);
}
.detail-breadcrumb { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.detail-breadcrumb a { color: var(--gray-500); }
.detail-breadcrumb i { font-size: 0.6rem; }
.detail-hero-inner { display: flex; align-items: center; gap: 1.25rem; }
.detail-logo {
  width: 82px; height: 82px; flex-shrink: 0;
  border-radius: var(--radius-lg);
  background: var(--biz-color, var(--primary));
  color: #fff; font-weight: 800; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.detail-hero-text h1 { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; color: var(--gray-900); margin: 0.15rem 0 0.5rem; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 1.15rem; font-size: 0.88rem; color: var(--gray-500); }

.detail-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
}
.detail-card h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.85rem; color: var(--gray-900); }
.detail-about { color: var(--gray-600); line-height: 1.7; font-size: 0.95rem; }
.detail-tags { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* Mission / Vision / Values */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.mvv-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 1.4rem; border-top: 3px solid var(--primary); transition: transform var(--transition-base), box-shadow var(--transition-base); }
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mvv-mission { border-top-color: #10B981; }
.mvv-vision { border-top-color: #2563EB; }
.mvv-values { border-top-color: #F59E0B; }
.mvv-ic { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 0.75rem; }
.mvv-mission .mvv-ic { background: var(--primary-50); color: #10B981; }
.mvv-vision .mvv-ic { background: #EFF4FF; color: #2563EB; }
.mvv-values .mvv-ic { background: #FEF3C7; color: #D97706; }
.mvv-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.4rem; }
.mvv-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; margin: 0; white-space: pre-line; }
@media (max-width: 767.98px) { .mvv-grid { grid-template-columns: 1fr; } }

/* Contact sidebar */
.contact-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}
.contact-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; color: var(--gray-900); }
.contact-row {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row.static { cursor: default; }
.contact-row small { display: block; font-size: 0.72rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.04em; }
.contact-row strong { font-size: 0.88rem; font-weight: 600; color: var(--gray-800); word-break: break-word; }
.contact-ic {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}

.promo-card {
  background: linear-gradient(135deg, var(--brand-navy), var(--sidebar-bg-end));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.25rem;
}
.promo-card i { font-size: 1.6rem; color: var(--accent-light); margin-bottom: 0.6rem; }
.promo-card strong { display: block; font-size: 1rem; margin-bottom: 0.35rem; }
.promo-card p { font-size: 0.83rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--sidebar-bg-end) 55%, var(--primary-dark) 100%);
  padding: 3rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; font-size: 1.7rem; font-weight: 800; margin-bottom: 0.5rem; }
.cta-inner p { color: rgba(255,255,255,0.75); margin: 0; max-width: 560px; }

/* ---- Advertise: steps ---- */
.steps .step {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  padding: 1.75rem;
  height: 100%;
  text-align: center;
}
.step-n {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--accent-dark));
  color: #fff; font-weight: 800; font-size: 1.2rem;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: var(--gray-500); margin: 0; }

/* ---- Pricing ---- */
.plan-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.plan-card.popular {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.18);
  transform: translateY(-6px);
}
.plan-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent-dark));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 0.3em 0.9em; border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--gray-700); margin-bottom: 0.5rem; }
.plan-price { font-size: 1.9rem; font-weight: 800; color: var(--gray-900); letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.plan-price span { font-size: 0.85rem; font-weight: 500; color: var(--gray-400); }
.plan-feats { list-style: none; padding: 0; margin: 0 0 1.5rem; flex-grow: 1; }
.plan-feats li { font-size: 0.88rem; color: var(--gray-600); padding: 0.4rem 0; display: flex; align-items: flex-start; gap: 0.6rem; }
.plan-feats i { color: var(--primary); margin-top: 0.2rem; }

/* ---- Footer ---- */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}
.footer-brand { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.9rem; }
.footer-brand span { color: var(--primary-light); }
.footer-about { font-size: 0.87rem; line-height: 1.6; color: rgba(255,255,255,0.6); }
.site-footer h6 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer ul a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.site-footer ul a:hover { color: var(--primary-light); }
.site-footer hr { border-color: rgba(255,255,255,0.1); margin: 2rem 0 1.25rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; color: rgba(255,255,255,0.5); }

/* Clickable logo (links to website) */
.detail-logo-link { position: relative; text-decoration: none; transition: transform var(--transition-base); }
.detail-logo-link:hover { transform: translateY(-3px); }
.logo-link-hint {
  position: absolute; bottom: -6px; right: -6px;
  width: 24px; height: 24px;
  background: #fff; color: var(--biz-color, var(--primary));
  border-radius: 50%; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.detail-web-link { color: var(--primary-dark); font-weight: 600; }

/* Member benefit block (the privilege) */
.benefit-card {
  background: linear-gradient(135deg, var(--primary-50), #fff);
  border: 1.5px solid var(--primary-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}
.benefit-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.benefit-head i { color: var(--primary); font-size: 1.2rem; }
.benefit-head h2 { font-size: 1.15rem; margin: 0; color: var(--primary-dark); }
.benefit-item { padding: 0.75rem 0; border-top: 1px solid var(--primary-100); }
.benefit-item:first-of-type { border-top: none; padding-top: 0; }
.benefit-item strong { display: block; color: var(--gray-900); font-size: 1rem; }
.benefit-item p { margin: 0.3rem 0 0; color: var(--gray-600); font-size: 0.9rem; }

.benefit-locked, .contact-locked { text-align: center; padding: 0.5rem 0; }
.benefit-locked i, .contact-locked i {
  font-size: 1.5rem; color: var(--gray-300); margin-bottom: 0.6rem; display: block;
}
.benefit-locked p, .contact-locked p { color: var(--gray-500); font-size: 0.88rem; margin-bottom: 0.9rem; }

/* ===== Community feed ===== */

/* Banner */
.feed-banner {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(120deg, var(--brand-navy) 0%, var(--sidebar-bg-end) 60%, var(--primary-dark) 130%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  overflow: hidden;
  position: relative;
}
.feed-banner h2 { color: #fff; font-weight: 800; letter-spacing: -0.02em; }
.feed-banner p { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.feed-banner-icon { font-size: 3.5rem; color: rgba(255,255,255,0.14); }

/* Composer */
.composer-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 1.4rem;
  transition: box-shadow var(--transition-base);
}
.composer-card:focus-within { box-shadow: var(--shadow-md); }

/* Filter pills */
.feed-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.feed-filter {
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  background: #fff;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 0.82rem; font-weight: 600;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.feed-filter:hover { border-color: var(--primary-200); color: var(--primary-dark); }
.feed-filter.active {
  background: linear-gradient(135deg, var(--primary), var(--accent-dark));
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

/* Post cards */
.post-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.1rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  animation: fadeInUp 0.35s ease-out both;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-card.post-promo { border-left-color: #10B981; }
.post-card.post-need  { border-left-color: #F59E0B; }
.post-card.post-news  { border-left-color: #6366F1; }

.post-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.7rem; }
.min-w-0 { min-width: 0; }
.post-avatar {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--biz-color, var(--primary));
  color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
}
/* keep author/avatar/delete clickable above the stretched-link */
.post-card .linkable, .post-card .post-delete { position: relative; z-index: 2; }
.post-avatar.linkable:hover { transform: scale(1.05); }
.post-author {
  font-weight: 700; color: var(--gray-900); display: inline-block; line-height: 1.15;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.post-author:hover { color: var(--primary-dark); }
.post-meta { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; }
.post-meta .dot, .feed-crumb .dot { color: var(--gray-300); }
.post-type {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--tag-color, var(--primary));
  background: color-mix(in srgb, var(--tag-color, #10B981) 12%, #fff);
  padding: 0.15em 0.6em; border-radius: var(--radius-full);
}
.post-type.solo { font-size: 0.78rem; display: inline-block; margin-bottom: 0.75rem; }
.post-title { font-size: 1.15rem; font-weight: 700; color: var(--gray-900); margin: 0 0 0.35rem; letter-spacing: -0.01em; }
.post-title a { color: inherit; }
.post-card:hover .post-title { color: var(--primary-dark); }
.post-body { color: var(--gray-600); font-size: 0.9rem; line-height: 1.55; margin: 0 0 0.9rem; }
.post-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--gray-100); padding-top: 0.7rem;
  font-size: 0.78rem;
}
.post-cat { color: var(--gray-400); }
.post-open { color: var(--primary); font-weight: 600; }
.post-card:hover .post-open i { transform: translateX(3px); }
.post-open i { transition: transform var(--transition-fast); }

/* Solo announcement page */
.feed-crumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--gray-500); }
.feed-crumb a { color: var(--gray-600); font-weight: 500; }
.post-solo {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-top: 4px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem 2.25rem;
  animation: fadeInUp 0.35s ease-out both;
}
.post-solo.post-promo { border-top-color: #10B981; }
.post-solo.post-need  { border-top-color: #F59E0B; }
.post-solo.post-news  { border-top-color: #6366F1; }
.post-solo-title { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.02em; color: var(--gray-900); margin: 0 0 1.25rem; line-height: 1.2; }
.post-solo-author {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1rem 0; margin-bottom: 1rem;
  border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
}
.post-solo-author .post-avatar { width: 52px; height: 52px; font-size: 1.15rem; }
.post-solo-body { color: var(--gray-700); font-size: 1.02rem; line-height: 1.75; white-space: pre-line; }
.post-solo-cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }

.section-mini-head { font-weight: 700; font-size: 1.05rem; color: var(--gray-800); margin-bottom: 0.85rem; }
.mini-post {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 0.6rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  color: inherit;
}
.mini-post:hover { background: var(--primary-50); color: inherit; }
.mini-post strong { display: block; font-size: 0.88rem; color: var(--gray-900); line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-post small { color: var(--gray-500); font-size: 0.76rem; }
.mini-post .flex-grow-1 { min-width: 0; }
.mini-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mini-logo {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: var(--radius-sm);
  background: var(--biz-color, var(--primary)); color: #fff; font-weight: 800; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}
.stats-card { background: linear-gradient(135deg, #fff, var(--primary-50)); }
.advertise-cta { border: 1.5px solid var(--primary-200); background: linear-gradient(135deg, var(--primary-50), #fff); }
.request-ad-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--primary-50), #fff);
  border: 1.5px solid var(--primary-200);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
}

/* Target-segment chips (profile form) */
.target-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.target-chip {
  display: inline-flex; align-items: center;
  padding: 0.45rem 0.9rem; border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200); background: #fff;
  color: var(--gray-600); font-size: 0.83rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition-fast); user-select: none;
}
.target-chip:hover { border-color: var(--primary-200); }
.target-chip input { display: none; }
.target-chip.checked {
  background: linear-gradient(135deg, var(--primary), var(--accent-dark));
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

/* Lead cards */
.lead-card {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border: 1px solid var(--gray-100); border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 1.1rem 1.25rem; margin-bottom: 1rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.lead-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lead-logo {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: var(--radius-md);
  background: var(--biz-color, var(--primary)); color: #fff; font-weight: 800; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
}
.lead-body { flex-grow: 1; min-width: 0; }
.lead-body h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 0.15rem; color: var(--gray-900); }
.lead-body h3 a { color: inherit; }
.lead-meta { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 0.4rem; }
.lead-reason {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; font-weight: 600; padding: 0.2em 0.6em; border-radius: var(--radius-full);
  margin: 0 0.3rem 0.3rem 0;
}
.lead-reason.need { background: #FEF3C7; color: #92400E; }
.lead-reason.segment { background: var(--primary-100); color: var(--primary-dark); }
.lead-score {
  flex-shrink: 0; text-align: center; padding-left: 0.5rem;
}
.lead-score .num { font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.lead-score .lbl { font-size: 0.65rem; text-transform: uppercase; color: var(--gray-400); letter-spacing: 0.04em; }

/* ===== Facebook-style post cards ===== */
.fb-post {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  overflow: hidden;
  animation: fadeInUp 0.35s ease-out both;
  transition: box-shadow var(--transition-base);
}
.fb-post:hover { box-shadow: var(--shadow-md); }
.fb-post-head { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem 0.5rem; }
.fb-avatar {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--biz-color, var(--primary));
  color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-fast);
}
.fb-avatar:hover { transform: scale(1.06); }
.fb-author {
  display: block; font-weight: 700; color: var(--gray-900); line-height: 1.15;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fb-author:hover { color: var(--gray-900); text-decoration: underline; }
.fb-meta { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; }
.fb-meta .dot { color: var(--gray-300); }
.fb-post-del { position: relative; z-index: 2; }

.fb-post-content { display: block; padding: 0.15rem 1.25rem 0.85rem; color: inherit; text-decoration: none; }
.fb-post-content:hover { color: inherit; }
.fb-title { font-size: 1.12rem; font-weight: 700; color: var(--gray-900); margin: 0 0 0.35rem; letter-spacing: -0.01em; }
.fb-post-content:hover .fb-title { color: var(--primary-dark); }
.fb-text { color: var(--gray-700); font-size: 0.95rem; line-height: 1.55; margin: 0; white-space: pre-line; }

.fb-media { display: block; background: var(--gray-100); line-height: 0; }
.fb-media img { width: 100%; max-height: 480px; object-fit: cover; display: block; transition: opacity var(--transition-base); }
.fb-media:hover img { opacity: 0.96; }

.fb-actions { display: flex; gap: 0.25rem; padding: 0.4rem 0.75rem; border-top: 1px solid var(--gray-100); }
.fb-action {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.55rem; border-radius: var(--radius-sm);
  color: var(--gray-600); font-weight: 600; font-size: 0.88rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.fb-action:hover { background: var(--gray-100); color: var(--primary-dark); }
.fb-action i { font-size: 1rem; }
.fb-action .fa-whatsapp { color: #25D366; }

/* Composer image button */
.composer-image {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border: 1.5px dashed var(--gray-300); border-radius: var(--radius-sm);
  color: var(--gray-600); font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: all var(--transition-fast);
}
.composer-image:hover { border-color: var(--primary); color: var(--primary-dark); background: var(--primary-50); }
.composer-image i { color: var(--primary); }

/* Solo page media */
.post-solo-media { margin: 0.25rem 0 1.25rem; }
.post-solo-media img { width: 100%; border-radius: var(--radius-md); display: block; box-shadow: var(--shadow-sm); }

/* B2B match rows */
.match-row {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.55rem 0.6rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  color: inherit;
}
.match-row:hover { background: var(--primary-50); color: inherit; }
.match-logo {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--biz-color, var(--primary));
  color: #fff; font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.match-row strong { display: block; font-size: 0.88rem; color: var(--gray-900); line-height: 1.15; }
.match-row small { color: var(--gray-500); font-size: 0.76rem; }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .hero-stats { gap: 1.75rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .contact-card { position: static; }
  .plan-card.popular { transform: none; }
}
@media (max-width: 575.98px) {
  .site-hero { padding: 3rem 0 2.5rem; }
  .hero-stats { gap: 1.25rem; }
  .detail-hero-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
