/* ============================================================
   LISTYOURBUSINESS.AE — HOMEPAGE V4 PREMIUM DESIGN SYSTEM
   Author: Antigravity / AI UX Architect
   Purpose: Ultimate SaaS-grade homepage redesign
   ============================================================ */

/* ─── ROOT DESIGN TOKENS ─────────────────────────── */
:root {
  --gold: #D4AF37;
  --gold-light: #F9E2AF;
  --gold-dark: #996515;
  --gold-glow: rgba(212,175,55,0.15);
  --dark-bg: #050505;
  --dark-card: #0a0a0a;
  --dark-card2: #111111;
  --dark-border: rgba(255,255,255,0.06);
  --dark-border-hover: rgba(212,175,55,0.35);
  --text-muted: rgba(255,255,255,0.5);
  --text-dim: rgba(255,255,255,0.35);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-card: 24px;
  --radius-pill: 50rem;
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-card: 0 20px 60px -10px rgba(0,0,0,0.7);
  --shadow-gold: 0 0 40px rgba(212,175,55,0.18);
}

/* ─── TYPOGRAPHY UTILITIES ───────────────────────── */
.font-heading { font-family: var(--font-heading); }
.text-gold { color: var(--gold) !important; }
.text-gold-gradient {
  background: linear-gradient(135deg, #F9E2AF 0%, #D4AF37 50%, #996515 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-shine {
  background: linear-gradient(90deg, #D4AF37, #fff 50%, #D4AF37);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s linear infinite;
}
@keyframes shine {
  to { background-position: 200% center; }
}

/* ─── HERO V4 ─────────────────────────────────────── */
.hero-v4 {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  background: #000;
  position: relative;
  overflow: hidden;
}

.hero-v4-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212,175,55,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(212,175,55,0.05) 0%, transparent 60%);
}

.hero-v4-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-v4-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-v4-orb-1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
}
.hero-v4-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
}

/* Hero Pill Badge */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  animation: float 4s ease-in-out infinite;
}
.hero-pill-badge .dot {
  width: 6px; height: 6px;
  background: #3ecf8e;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(62,207,142,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(62,207,142,0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Hero Headline */
.hero-v4 h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
}

/* Hero Search Bar Upgrade */
.hero-search-v4 {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  padding: 6px 6px 6px 24px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.hero-search-v4:focus-within {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1), 0 10px 40px rgba(0,0,0,0.4);
}
.hero-search-v4 input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  width: 100%;
  font-family: var(--font-body);
}
.hero-search-v4 input::placeholder { color: rgba(255,255,255,0.35); }
.hero-search-v4 .search-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.08);
  margin: 0 8px;
  flex-shrink: 0;
}
.hero-search-v4 select {
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  cursor: pointer;
  min-width: 120px;
}
.hero-search-v4 select option { background: #111; color: #fff; }
.hero-search-v4 .search-btn {
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  border: none;
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 14px 32px;
  transition: var(--transition-smooth);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.hero-search-v4 .search-btn:hover {
  background: linear-gradient(135deg, #F9E2AF, #D4AF37);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}

/* Popular Search Tags */
.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.search-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.search-tag:hover {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.3);
  color: #fff;
}

/* ─── DASHBOARD PREVIEW ───────────────────────────── */
.dashboard-preview-wrap {
  position: relative;
  perspective: 1200px;
}
.dashboard-preview-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-gold);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s ease;
}
.dashboard-preview-card:hover {
  transform: rotateY(0deg) rotateX(0deg);
}
.db-header {
  background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.db-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.db-dots .dot-red { background: #ff5f57; }
.db-dots .dot-yellow { background: #febc2e; }
.db-dots .dot-green { background: #28c840; }
.db-title {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 8px;
}
.db-body { padding: 20px; }
.db-stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.db-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.db-stat-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
}
.db-stat-label { font-size: 0.6rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.db-chart-area {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}
.db-lead-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.db-lead-row:last-child { border: none; }
.db-lead-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(212,175,55,0.1));
  border: 1px solid rgba(212,175,55,0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--gold);
}
.db-lead-info { flex: 1; }
.db-lead-name { font-size: 0.7rem; color: #fff; font-weight: 600; }
.db-lead-sub { font-size: 0.6rem; color: var(--text-dim); }
.db-lead-badge {
  font-size: 0.55rem;
  background: rgba(62,207,142,0.15);
  color: #3ecf8e;
  border: 1px solid rgba(62,207,142,0.25);
  border-radius: 4px;
  padding: 2px 7px;
  font-weight: 700;
}
.db-score-bar {
  margin-top: 4px;
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
}
.db-score-fill {
  height: 100%;
  background: linear-gradient(90deg, #D4AF37, #F9E2AF);
  border-radius: 2px;
  animation: fillBar 2s ease forwards;
}
@keyframes fillBar { from { width: 0; } }

/* Floating metric badges on dashboard */
.db-float-badge {
  position: absolute;
  background: #0d0d0d;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}
.db-float-badge-1 { top: 20px; left: -30px; animation-delay: 0s; }
.db-float-badge-2 { bottom: 60px; right: -20px; animation-delay: 1.5s; }
.db-float-badge .num { font-size: 1.1rem; font-weight: 800; color: #3ecf8e; font-family: var(--font-heading); }
.db-float-badge .lbl { font-size: 0.6rem; color: var(--text-dim); }

/* ─── SECTION COMMON ──────────────────────────────── */
.section-v4 { padding: 100px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before, .section-label::after {
  content: '';
  height: 1px;
  width: 24px;
  background: rgba(212,175,55,0.4);
}

/* ─── BENEFITS STRIP ─────────────────────────────── */
.benefits-strip {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 32px 0;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-right: 1px solid var(--dark-border);
  transition: var(--transition-smooth);
}
.benefit-item:last-child { border-right: none; }
.benefit-item:hover { background: rgba(212,175,55,0.04); }
.benefit-icon-v4 {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}
.benefit-item:hover .benefit-icon-v4 {
  background: var(--gold);
  color: #000;
  transform: rotateY(360deg);
}
.benefit-text-v4 .benefit-title { font-size: 0.85rem; font-weight: 700; color: #fff; }
.benefit-text-v4 .benefit-sub { font-size: 0.7rem; color: var(--text-muted); }

/* ─── PREMIUM DUAL MARQUEE (Businesses + Agents) ─── */
.premium-dual-marquee {
  background: #050505;
  border-bottom: 1px solid var(--dark-border);
  overflow: hidden;
}
.premium-mq-col {
  padding: 22px 0 26px;
  border-right: 1px solid rgba(255,255,255,0.06);
  min-width: 0;
}
.premium-mq-col-agents { border-right: none; }
.premium-mq-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px 14px;
}
.premium-mq-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ecf8e;
  box-shadow: 0 0 8px rgba(62,207,142,0.55);
  flex-shrink: 0;
  animation: premiumMqPulse 1.6s ease-in-out infinite;
}
@keyframes premiumMqPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.premium-mq-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
}
.premium-mq-label i { color: var(--gold); }
.premium-mq-link {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.85);
  text-decoration: none;
}
.premium-mq-link:hover { color: var(--gold); }
.premium-mq-viewport {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.premium-mq-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 2px 16px;
  will-change: transform;
}
.premium-mq-left {
  animation: premiumMqLeft 7s linear infinite;
}
.premium-mq-right {
  animation: premiumMqRight 8s linear infinite;
}
/* Pause only on card hover so clicks open the profile easily */
.premium-mq-track:has(.premium-mq-card:hover),
.premium-mq-track.is-paused {
  animation-play-state: paused !important;
}
@keyframes premiumMqLeft {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@keyframes premiumMqRight {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}
.premium-mq-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  max-width: 230px;
  padding: 10px 14px 10px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.22);
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.premium-mq-card:hover,
.premium-mq-card:focus-visible {
  border-color: rgba(212,175,55,0.75);
  background: rgba(212,175,55,0.1);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.25), 0 8px 24px rgba(0,0,0,0.35);
  outline: none;
}
.premium-mq-card:active {
  background: rgba(212,175,55,0.16);
}
.premium-mq-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.4);
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  pointer-events: none;
}
.premium-mq-card-agent .premium-mq-avatar { border-radius: 50%; }
.premium-mq-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.premium-mq-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  pointer-events: none;
}
.premium-mq-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  pointer-events: none;
}
.premium-mq-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}
.premium-mq-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

@media (max-width: 991px) {
  .premium-mq-col {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0 20px;
  }
  .premium-mq-col-agents { border-bottom: none; }
  .premium-mq-left { animation-duration: 6s; }
  .premium-mq-right { animation-duration: 6.5s; }
}

@media (prefers-reduced-motion: reduce) {
  .premium-mq-left,
  .premium-mq-right {
    animation: none !important;
    transform: none !important;
  }
  .premium-mq-viewport { overflow-x: auto; }
}

/* ─── PREMIUM BIZ CARD V4 ────────────────────────── */
.biz-card-v4 {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.biz-card-v4::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0), transparent);
  transition: all 0.5s ease;
}
.biz-card-v4:hover::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.biz-card-v4:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), var(--shadow-gold);
}
.biz-card-v4 .biz-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
  margin: 14px;
  border-radius: 16px;
}
.biz-card-v4 .biz-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.biz-card-v4:hover .biz-img-wrap img { transform: scale(1.08); }

/* Badge Stack V4 */
.badge-stack-v4 {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
}
.badge-v4 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.badge-v4-sponsored { background: #FF4B5C; color: #fff; }
.badge-v4-featured { background: linear-gradient(135deg, #0dcaf0, #0096c7); color: #fff; }
.badge-v4-premium { background: linear-gradient(135deg, #D4AF37, #B8860B); color: #000; }
.badge-v4-verified { background: rgba(46,199,112,0.9); color: #fff; }

/* Logo/Initials V4 */
.biz-logo-v4 {
  position: absolute;
  bottom: -18px;
  right: 14px;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: #111;
  border: 2px solid rgba(212,175,55,0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
}
.biz-logo-v4 img { width: 100%; height: 100%; object-fit: contain; }

/* Location tag */
.biz-loc-v4 {
  position: absolute;
  bottom: 10px; left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Fav btn */
.biz-fav-v4 {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(6px);
}
.biz-fav-v4:hover { background: rgba(255,0,0,0.3); color: #ff4444; border-color: rgba(255,0,0,0.3); }

/* Card Body */
.biz-body-v4 { padding: 24px 20px 20px; flex-grow: 1; display: flex; flex-direction: column; }
.biz-meta-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.biz-cat-v4 { font-size: 0.65rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.biz-status-v4 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.biz-status-v4.open { background: rgba(46,199,112,0.12); color: #2ec770; border: 1px solid rgba(46,199,112,0.2); }
.biz-status-v4.open::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #2ec770; animation: pulseDot 2s infinite; }
.biz-status-v4.closed { background: rgba(255,75,75,0.1); color: #ff6b6b; border: 1px solid rgba(255,75,75,0.2); }
.biz-name-v4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.biz-addr-v4 { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 14px; display: flex; align-items: flex-start; gap: 6px; }
.biz-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.biz-stars { color: var(--gold); font-size: 0.7rem; }
.biz-rating-num { font-size: 0.8rem; font-weight: 700; color: #fff; }
.biz-review-count { font-size: 0.7rem; color: var(--text-dim); }

/* Action Row V4 */
.biz-actions-v4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-top: auto;
}
.biz-btn-v4 {
  padding: 8px 4px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.biz-btn-view { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; }
.biz-btn-view:hover { background: rgba(255,255,255,0.12); color: #fff; }
.biz-btn-compare { background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.15); color: var(--gold); }
.biz-btn-compare:hover { background: rgba(212,175,55,0.15); }
.biz-btn-inquiry { background: linear-gradient(135deg, #D4AF37, #B8860B); color: #000; }
.biz-btn-inquiry:hover { background: linear-gradient(135deg, #F9E2AF, #D4AF37); transform: translateY(-1px); }

/* ─── PREMIUM AGENT CARD V4 ──────────────────────── */
.agent-card-v4 {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  position: relative;
}
.agent-card-v4:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), var(--shadow-gold);
}
.agent-cover-v4 {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #111, #0a0a0a);
}
.agent-cover-v4 img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: transform 0.6s ease; }
.agent-card-v4:hover .agent-cover-v4 img { transform: scale(1.05); }
.agent-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.8) 100%);
}
.agent-avatar-v4-wrap {
  position: absolute;
  bottom: -28px;
  left: 20px;
}
.agent-avatar-v4 {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2), 0 8px 20px rgba(0,0,0,0.5);
}
.agent-avatar-initials {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, #1a1a1a, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}
.agent-company-badge-v4 {
  position: absolute;
  bottom: -28px;
  left: 78px;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #111;
  border: 1px solid rgba(212,175,55,0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agent-company-badge-v4 img { width: 100%; height: 100%; object-fit: contain; }

.agent-body-v4 { padding: 40px 20px 20px; }
.agent-name-v4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.agent-company-v4 { font-size: 0.7rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.agent-tags-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.agent-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.agent-stats-v4 { display: flex; gap: 16px; margin-bottom: 16px; }
.agent-stat-v4 { text-align: center; }
.agent-stat-v4 .num { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: #fff; }
.agent-stat-v4 .lbl { font-size: 0.6rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.agent-divider { height: 1px; background: var(--dark-border); margin-bottom: 16px; }
.agent-actions-v4 { display: flex; gap: 8px; }
.agent-btn-view { flex: 1; padding: 9px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 10px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; text-align: center; text-decoration: none; display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); }
.agent-btn-view:hover { background: rgba(255,255,255,0.12); color: #fff; }
.agent-btn-wa { flex: 1; padding: 9px; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2); color: #25D366; border-radius: 10px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; text-align: center; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 5px; transition: var(--transition-smooth); }
.agent-btn-wa:hover { background: rgba(37,211,102,0.2); color: #25D366; }
.agent-btn-inquiry { flex: 1; padding: 9px; background: linear-gradient(135deg, #D4AF37, #B8860B); color: #000; border-radius: 10px; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; text-align: center; text-decoration: none; display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); border: none; cursor: pointer; }
.agent-btn-inquiry:hover { transform: translateY(-1px); }

/* ─── SPONSORED LISTING CARDS V4 ─────────────────── */
.sponsored-card-v4 {
  background: var(--dark-card);
  border: 1px solid rgba(255,75,75,0.15);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}
.sponsored-card-v4::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,75,92,0.04), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sponsored-card-v4:hover::after { opacity: 1; }
.sponsored-card-v4:hover {
  transform: translateY(-8px);
  border-color: rgba(255,75,92,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(255,75,92,0.08);
}

/* ─── HOW IT WORKS V4 ────────────────────────────── */
.hiw-section { background: #000; padding: 100px 0; }
.hiw-step {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}
.hiw-step:hover { transform: translateY(-6px); }
.hiw-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition-smooth);
}
.hiw-step:hover .hiw-icon-wrap {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.35);
  transform: rotateY(360deg);
}
.hiw-step-number {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-step h5 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: #fff; letter-spacing: 1px; margin-bottom: 8px; }
.hiw-step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; padding: 0 10px; }
.hiw-connector {
  position: absolute;
  top: 36px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.3), rgba(212,175,55,0.05));
  z-index: 1;
  display: none;
}
@media (min-width: 768px) {
  .hiw-connector { display: block; }
}

/* ─── SECTION HEADERS ─────────────────────────────── */
.section-header-v4 { margin-bottom: 56px; }
.section-header-v4 .eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-header-v4 h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.section-header-v4 p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ─── CTA FINAL SECTION ──────────────────────────── */
.cta-v4 {
  background: linear-gradient(135deg, #0a0800, #000);
  border-radius: 32px;
  border: 1px solid rgba(212,175,55,0.15);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.cta-v4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212,175,55,0.08), transparent 70%);
}

/* ─── BTN V4 ─────────────────────────────────────── */
.btn-v4-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  color: #000 !important;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  border: none;
  text-decoration: none !important;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.btn-v4-gold:hover {
  background: linear-gradient(135deg, #F9E2AF, #D4AF37);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.45);
  color: #000 !important;
}
.btn-v4-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none !important;
  transition: var(--transition-smooth);
}
.btn-v4-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #fff !important;
}

/* ─── STATS STRIP V4 ─────────────────────────────── */
.stats-v4 {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 40px 0;
}
.stat-v4 { text-align: center; }
.stat-v4 .num { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: #fff; }
.stat-v4 .lbl { font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-top: 4px; }
.stat-v4 i { color: var(--gold); font-size: 1.2rem; display: block; margin-bottom: 8px; }

/* ─── FEATURE GRID V4 ────────────────────────────── */
.feature-v4 {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.feature-v4::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0), transparent);
  transition: all 0.5s ease;
}
.feature-v4:hover::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.feature-v4:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), var(--shadow-gold);
}
.feature-v4-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}
.feature-v4:hover .feature-v4-icon {
  background: var(--gold);
  color: #000;
  transform: rotateY(360deg);
  border-color: var(--gold);
}
.feature-v4 h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-v4 p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ─── COMMUNITY HUB V4 ───────────────────────────── */
.comm-card-v4 {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.comm-card-v4:hover {
  border-color: rgba(212,175,55,0.25);
  background: rgba(255,255,255,0.03);
}

/* ─── SWIPER OVERRIDES V4 ────────────────────────── */
.swiper-v4 { overflow: visible !important; }
.swiper-v4 .swiper-wrapper { overflow: hidden; }
.swiper-nav-v4 {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}
.swiper-nav-v4:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* ─── MISC UTILITIES ─────────────────────────────── */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.ls-3 { letter-spacing: 3px; }
.bordered-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-card);
}

/* Premium section with bg glow */
.premium-section-v4 {
  background: #000;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.premium-section-v4::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.05), transparent 70%);
  pointer-events: none;
}

/* ─── MARQUEE PARTNER STRIP ──────────────────────── */
.partner-strip { padding: 48px 0; background: rgba(255,255,255,0.01); border-top: 1px solid var(--dark-border); }
.partner-strip-label { font-size: 0.6rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); text-align: center; margin-bottom: 28px; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 991px) {
  .hero-v4 { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
  .dashboard-preview-card { transform: none; }
  .section-v4 { padding: 70px 0; }
  .benefit-item { border-right: none; border-bottom: 1px solid var(--dark-border); }
}
@media (max-width: 767px) {
  .section-v4 { padding: 60px 0; }
  .biz-actions-v4 { grid-template-columns: 1fr 1fr; }
  .biz-btn-compare { display: none; }
  .hero-v4 h1 { font-size: 2.2rem; }
  .benefits-strip { padding: 20px 0; }
  .hero-search-v4 { border-radius: 16px; padding: 10px 16px; flex-direction: column; align-items: stretch; gap: 8px; }
  .hero-search-v4 input { font-size: 1rem; }
  .hero-search-v4 .search-divider { display: none; }
  .hero-search-v4 select { display: none; }
  .hero-search-v4 .search-btn { width: 100%; border-radius: 10px; }
  .cta-v4 { padding: 50px 24px; }
}

/* ─── LIVE ACTIVITY PULSE ────────────────────────── */
.live-pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3ecf8e;
  animation: pulseDot 2s infinite;
  display: inline-block;
  margin-right: 6px;
}
.lead-card-v4 {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  transition: var(--transition-smooth);
}
.lead-card-v4:hover {
  background: rgba(212,175,55,0.04);
  border-color: rgba(212,175,55,0.2);
}
.lead-category-v4 {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}
.lead-value-v4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
}

/* Benchmark tiles */
.metric-tile-v4 {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 16px 20px;
  transition: var(--transition-smooth);
}
.metric-tile-v4:hover { border-color: rgba(212,175,55,0.25); }

/* console */
.marketplace-console-v4 {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
}
.console-header-v4 {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── BRAND_NEW ANIMATIONS ───────────────────────── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-slide-up { animation: slideUp 0.7s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ─── COMMUNITY CARD V4 ──────────────────────────── */
.small-nav-btn-v4 {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.small-nav-btn-v4:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* Testimonial card */
.testimonial-v4 {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 28px;
  transition: var(--transition-smooth);
  height: 100%;
}
.testimonial-v4:hover { border-color: rgba(212,175,55,0.25); background: rgba(255,255,255,0.03); }

/* ─── V3 TO V4 CARD UPGRADES ──────────────────────── */
.biz-card-v3, .agent-card-v3 {
  background: var(--dark-card) !important;
  border: 1px solid var(--dark-border) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-card) !important;
  transition: var(--transition-smooth) !important;
  position: relative !important;
}

.biz-card-v3::before, .agent-card-v3::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0), transparent);
  transition: all 0.5s ease;
  z-index: 10;
}

.biz-card-v3:hover::before, .agent-card-v3:hover::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.biz-card-v3:hover, .agent-card-v3:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(212,175,55,0.3) !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), var(--shadow-gold) !important;
}

.biz-image-wrap, .agent-cover-wrap {
  border-radius: 16px !important;
  margin: 14px !important;
}

/* Badges stack styling */
.biz-badge-premium {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #000 !important;
  font-weight: 800 !important;
  font-size: 0.6rem !important;
  border-radius: 4px !important;
}

.biz-badge-sponsored {
  background: #FF4B5C !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 0.6rem !important;
  border-radius: 4px !important;
}

.biz-badge-verified, .biz-badge-licensed {
  background: rgba(46,199,112,0.9) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 0.6rem !important;
  border-radius: 4px !important;
}

.biz-badge-score {
  background: linear-gradient(135deg, #0dcaf0, #0096c7) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 0.6rem !important;
  border-radius: 4px !important;
}

/* Operational hours status pills */
.status-pill-target.open {
  background: rgba(46,199,112,0.12) !important;
  color: #2ec770 !important;
  border: 1px solid rgba(46,199,112,0.2) !important;
}

.status-pill-target.closed {
  background: rgba(255,75,75,0.1) !important;
  color: #ff6b6b !important;
  border: 1px solid rgba(255,75,75,0.2) !important;
}

/* Agent Avatar, cover and info styles */
.agent-avatar-overlap {
  border-radius: 50% !important;
  border: 3px solid var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2), 0 8px 20px rgba(0,0,0,0.5) !important;
}
.agent-company-logo-overlap {
  border-radius: 8px !important;
  background: #111 !important;
  border: 1px solid rgba(212,175,55,0.3) !important;
}
.agent-stat-pill {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: var(--radius-pill) !important;
  color: rgba(255,255,255,0.8) !important;
}

/* Button groups and action buttons alignment */
.biz-btn-group, .agent-btn-group {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 6px !important;
  margin-top: auto !important;
  padding-top: 15px !important;
}

.btn-target-outline {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #fff !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: var(--transition-smooth) !important;
}

.btn-target-outline:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: #fff !important;
}

.btn-target-compare {
  background: rgba(212,175,55,0.06) !important;
  border: 1px solid rgba(212,175,55,0.15) !important;
  color: var(--gold) !important;
}

.btn-target-compare:hover {
  background: rgba(212,175,55,0.15) !important;
  color: var(--gold) !important;
  border-color: rgba(212,175,55,0.25) !important;
}

.btn-target-gold {
  background: linear-gradient(135deg, #D4AF37, #B8860B) !important;
  color: #000 !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: var(--transition-smooth) !important;
  box-shadow: 0 4px 15px rgba(212,175,55,0.2) !important;
}

.btn-target-gold:hover {
  background: linear-gradient(135deg, #F9E2AF, #D4AF37) !important;
  color: #000 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 25px rgba(212,175,55,0.35) !important;
}

/* ─── INTERACTIVE CONSOLE SHOWCASE ────────────────── */
.console-section-v4 {
  background: #040404;
  overflow: hidden;
  border-bottom: 1px solid var(--dark-border);
  position: relative;
}

.console-v4-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 55% 55% at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 80%),
    radial-gradient(circle at 10% 20%, rgba(212,175,55,0.02) 0%, transparent 40%);
  pointer-events: none;
}

/* Side navigation tabs */
.console-tabs-wrap {
  position: relative;
  z-index: 10;
}

.console-tab-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px;
  background: rgba(15, 15, 15, 0.45) !important;
  border: 1px solid rgba(255,255,255,0.04) !important;
  border-left: 4px solid transparent !important;
  border-radius: 16px;
  padding: 16px 20px !important;
  cursor: pointer;
  width: 100%;
  color: #fff !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  text-decoration: none !important;
  outline: none !important;
  backdrop-filter: blur(10px);
}

.console-tab-item:hover {
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(212,175,55,0.2) !important;
  border-left-color: rgba(212,175,55,0.4) !important;
  transform: translateX(6px);
}

.console-tab-item.active {
  background: rgba(212,175,55,0.06) !important;
  border-color: rgba(212,175,55,0.25) !important;
  border-left-color: var(--gold) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212,175,55,0.08);
}

.console-tab-item .tab-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: rgba(212,175,55,0.8);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.console-tab-item.active .tab-icon {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.console-tab-item h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.98rem;
  transition: color 0.3s ease;
}

.console-tab-item.active h6 {
  color: var(--gold-light);
}

.console-tab-item p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
  line-height: 1.45;
}

/* Console Monitor Frame */
.console-monitor-wrapper {
  background: #090909;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.8);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.console-monitor-wrapper:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 40px 90px rgba(0,0,0,0.9), 0 0 80px rgba(212,175,55,0.07);
}

.console-monitor-screen {
  background: #060606;
  background-image:
    linear-gradient(rgba(212,175,55,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.018) 1px, transparent 1px);
  background-size: 22px 22px;
  padding: 34px;
  flex-grow: 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.console-monitor-screen::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated golden top-border sweep on active pane */
@keyframes borderSweep {
  0%   { opacity: 0; background-position: -200% center; }
  20%  { opacity: 1; }
  100% { opacity: 0; background-position: 200% center; }
}

.console-monitor-screen::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% auto;
  animation: borderSweep 4s linear infinite;
  pointer-events: none;
}

/* Screen panes switching */
.console-screen-pane {
  display: none;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}

.console-screen-pane.active {
  display: block;
}

.console-screen-pane.fade-in-pane {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Market cards */
.market-card {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 18px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.market-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.market-card:hover::before {
  opacity: 1;
}

.market-card:hover {
  background: rgba(255,255,255,0.03);
  border-color: rgba(212,175,55,0.25) !important;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.market-badge {
  font-size: 0.52rem;
  background: rgba(212,175,55,0.12) !important;
  color: var(--gold) !important;
  padding: 3px 9px;
  border-radius: 5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border: 1px solid rgba(212,175,55,0.2);
}

.market-val {
  font-weight: 900;
  color: var(--gold-light);
  font-size: 1rem;
  font-family: var(--font-heading);
}

/* AI Simulator */
.ai-simulator-wrapper {
  background: rgba(4, 4, 4, 0.7);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.ai-simulator-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,175,55,0.02) 0%, transparent 70%);
  pointer-events: none;
}

.ai-search-simulation {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gold-light);
  min-height: 42px;
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  position: relative;
}

/* Blinking text cursor */
.ai-search-simulation::after {
  content: '|';
  color: var(--gold);
  animation: blinkCursor 0.8s step-end infinite;
  margin-left: 1px;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.ai-status-loader {
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* WhatsApp chat */
.whatsapp-chat-shell {
  font-family: var(--font-body);
}

.chat-msg {
  position: relative;
  word-wrap: break-word;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.console-screen-pane.active.fade-in-pane .client-msg {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.console-screen-pane.active.fade-in-pane .provider-msg {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

/* Floating Reputation Badge */
@keyframes floatRepBadge {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

.reputation-seal-wrap {
  animation: floatRepBadge 5s ease-in-out infinite;
}

/* Live pulse dot glow animation */
@keyframes pulseLiveDot {
  0%   { box-shadow: 0 0 0 0 rgba(62,207,142,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(62,207,142,0); }
  100% { box-shadow: 0 0 0 0 rgba(62,207,142,0); }
}

.live-pulse-dot {
  width: 6px !important;
  height: 6px !important;
  background: #3ecf8e;
  border-radius: 50%;
  display: inline-block;
  animation: pulseLiveDot 2s ease-out infinite;
}

/* Section title golden gradient */
.console-section-v4 .section-label {
  border-color: rgba(212,175,55,0.25);
}

/* Animate slide-up for section heading */
@keyframes animSlideUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0);    }
}

.animate-slide-up {
  animation: animSlideUp 0.65s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.animate-delay-1 { animation-delay: 0.12s; }
.animate-delay-2 { animation-delay: 0.24s; }
.animate-delay-3 { animation-delay: 0.36s; }

/* Responsive media tags */
@media (max-width: 991px) {
  .console-tabs-wrap {
    flex-direction: row !important;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 10px !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .console-tabs-wrap::-webkit-scrollbar { display: none; }
  
  .console-tab-item {
    min-width: 220px;
    flex-shrink: 0;
    border-left-width: 2px !important;
  }

  .console-monitor-screen {
    min-height: 320px;
    padding: 22px;
  }
}
