/* ============================================
   REDDIT-TO-AI VISIBILITY AGENCY — GLOBAL STYLES
   Bold & Modern Dark Theme
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a26;
  --bg-card-hover: #22222f;
  --text-primary: #f0f0f5;
  --text-secondary: #9999aa;
  --text-muted: #666678;
  --accent: #ff4500;
  --accent-hover: #ff5a1f;
  --accent-glow: rgba(255, 69, 0, 0.25);
  --blue: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.2);
  --green: #22c55e;
  --purple: #a855f7;
  --border: #2a2a3a;
  --border-light: #3a3a4a;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--text-secondary); font-size: 1.05rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blue-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Layout ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent), #ff8c00);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.nav-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 24px var(--accent-glow);
  color: #fff !important;
}

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 30px var(--accent-glow);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 14px 16px;
}
.btn-ghost:hover { color: var(--accent-hover); }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.card-icon.orange { background: rgba(255, 69, 0, 0.12); color: var(--accent); }
.card-icon.blue { background: rgba(59, 130, 246, 0.12); color: var(--blue); }
.card-icon.green { background: rgba(34, 197, 94, 0.12); color: var(--green); }
.card-icon.purple { background: rgba(168, 85, 247, 0.12); color: var(--purple); }

.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.95rem; }

/* ---------- Hero Section ---------- */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(255, 69, 0, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 85% 15%, rgba(59, 130, 246, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 45% 55% at 10% 70%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
    var(--bg-primary);
}

/* dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 75%);
}

/* accent glow orb */
.hero::after {
  content: '';
  position: absolute;
  top: -25%;
  right: -5%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.3) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
  animation: heroFloat 8s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, 35px) scale(1.08); }
}

.hero-content { position: relative; z-index: 1; }

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-light) 25%, var(--accent) 50%, var(--border-light) 75%, transparent 100%);
  opacity: 0.8;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.25);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero h1 { margin-bottom: 24px; max-width: 780px; }
.hero p.hero-sub {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero stacked floating cards */
.hero-float-stack {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-55%);
  width: 300px;
  height: 420px;
  z-index: 2;
  animation: stackFloat 6s ease-in-out infinite alternate;
}

@keyframes stackFloat {
  0%   { transform: translateY(-55%); }
  100% { transform: translateY(calc(-55% - 12px)); }
}

.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  width: 280px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

/* Back card — top of stack, peeking above */
.hfc-back {
  top: 0;
  left: 14px;
  transform: rotate(4deg);
  z-index: 1;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0.6;
}

/* Middle card — offset down, readable title visible */
.hfc-mid {
  top: 100px;
  left: 6px;
  transform: rotate(2deg);
  z-index: 2;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.25);
  opacity: 0.8;
}

/* Front card — full view at bottom */
.hfc-front {
  top: 195px;
  left: 0;
  transform: rotate(-1deg);
  z-index: 3;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(255, 69, 0, 0.08);
}

/* Hover: fan out wider */
.hero-float-stack:hover .hfc-back {
  transform: rotate(6deg) translate(16px, -12px);
  opacity: 0.75;
}

.hero-float-stack:hover .hfc-mid {
  transform: rotate(3deg) translate(8px, -4px);
  opacity: 0.9;
}

.hero-float-stack:hover .hfc-front {
  transform: rotate(-1deg) translateY(6px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(255, 69, 0, 0.12);
}

.hfc-bar {
  height: 4px;
  background: linear-gradient(90deg, #ff4500, #ff8c00);
}

.hfc-body {
  padding: 16px;
}

.hfc-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.hfc-sub {
  font-size: 0.7rem;
  color: #888;
  font-weight: 500;
}

.hfc-tag {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 600;
  background: rgba(255, 69, 0, 0.12);
  color: #ea580c;
  padding: 2px 8px;
  border-radius: 4px;
}

.hfc-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.hfc-excerpt {
  font-size: 0.72rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}

.hfc-brand {
  background: linear-gradient(135deg, #ff4500, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hfc-stats {
  display: flex;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #999;
}

.hfc-ai {
  color: #ea580c;
  background: rgba(255, 69, 0, 0.08);
  padding: 1px 6px;
  border-radius: 3px;
}

/* Hide stacked cards on smaller screens */
@media (max-width: 1100px) {
  .hero-float-stack {
    display: none;
  }
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat h4 {
  font-size: 2rem;
  margin-bottom: 4px;
}

.hero-stat p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Badges / Pills ---------- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-orange { background: rgba(255, 69, 0, 0.15); color: var(--accent); }
.badge-blue { background: rgba(59, 130, 246, 0.15); color: var(--blue); }
.badge-green { background: rgba(34, 197, 94, 0.15); color: var(--green); }

/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 40px 32px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 48px;
  right: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, var(--border-light), transparent);
}

.process-step:last-child::after { display: none; }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff8c00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.process-step h3 { margin-bottom: 12px; }

/* ---------- Pricing Cards ---------- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-light);
}

.pricing-card h3 { margin-bottom: 8px; }
.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0 4px;
  color: var(--text-primary);
}
.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  margin: 28px 0;
}
.pricing-features li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pricing-features li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font);
  text-align: left;
  padding: 0;
}

.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #cc3700 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-banner h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.1rem; position: relative; }

.cta-banner .btn {
  background: #fff;
  color: var(--accent);
  position: relative;
}
.cta-banner .btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Testimonial ---------- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.testimonial-card .stars { color: #f59e0b; margin-bottom: 16px; font-size: 1.1rem; }
.testimonial-card blockquote {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { font-weight: 600; color: var(--text-primary); font-size: 0.9rem; }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Metric Row ---------- */
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.metric-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.metric-item .metric-value {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.metric-item p { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header .section-label {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ---------- Contact Form ---------- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Mention Activity Feed ---------- */
.bh-wrapper {
  display: flex;
  justify-content: center;
}

.bh-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  max-width: 620px;
  width: 100%;
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(255, 69, 0, 0.06);
  position: relative;
}

.bh-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bh-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bh-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.15), rgba(255, 140, 0, 0.15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
}

.bh-subtitle {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

.bh-score {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a2e;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 6px 14px;
  border-radius: 100px;
}

.bh-score-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

.bh-divider {
  height: 1px;
  background: #eee;
  margin-bottom: 20px;
}

/* Mention cards */
.bh-mention {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid transparent;
  transition: transform 0.2s ease;
}

.bh-mention:last-child {
  margin-bottom: 0;
}

.bh-mention--placed {
  border-left-color: #ff4500;
  background: linear-gradient(90deg, #fff7ed 0%, #fafafa 30%);
}

.bh-mention--trust {
  border-left-color: #3b82f6;
  background: linear-gradient(90deg, #eff6ff 0%, #fafafa 30%);
}

.bh-mention-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bh-mention-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
}

.bh-reddit-icon {
  display: flex;
  align-items: center;
}

.bh-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: capitalize;
  white-space: nowrap;
}

.bh-tag--placed {
  background: rgba(255, 69, 0, 0.12);
  color: #ea580c;
}

.bh-tag--trust {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

.bh-mention-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.bh-highlight {
  background: linear-gradient(135deg, #ff4500, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.bh-mention-excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* Meta stats row under each mention */
.bh-mention-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.bh-meta-item {
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bh-meta-ai {
  color: #ea580c;
  background: rgba(255, 69, 0, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
}

.bh-meta-trust {
  color: #2563eb;
  background: rgba(59, 130, 246, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .bh-card {
    padding: 20px;
  }
  .bh-mention {
    padding: 16px;
  }
  .bh-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 968px) {
  .grid-3, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .metric-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .process-step::after { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }
  .grid-2, .grid-3, .grid-4, .process-steps, .metric-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 60px; }
  .section { padding: 64px 0; }
  .cta-banner { padding: 40px 24px; }
  .pricing-card { padding: 28px; }
}
