/* =========================================
   Jason AI SDR — Wall of Love v2
   Design: Stripe-inspired clean aesthetic
   ========================================= */

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

/* ---- Design tokens ---- */
:root {
  --brand:       #5B4CF5;
  --brand-dark:  #4338CA;
  --brand-light: #EEF2FF;
  --navy:        #0A2540;
  --slate:       #425466;
  --muted:       #697386;
  --surface:     #F6F9FC;
  --border:      #E3E8EE;
  --shadow-xs:   0 1px 3px rgba(10,37,64,0.06);
  --shadow-sm:   0 2px 8px rgba(10,37,64,0.08);
  --shadow-md:   0 4px 20px rgba(10,37,64,0.10);
  --shadow-lg:   0 12px 40px rgba(10,37,64,0.13);
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
}

/* ---- Hero — dark mesh gradient ---- */
.hero-v2 {
  background: #0A2540;
  position: relative;
  overflow: hidden;
  padding: 100px 16px 88px;
}
@media (min-width: 640px) { .hero-v2 { padding: 120px 24px 108px; } }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.hero-blob-1 {
  width: 520px; height: 520px;
  top: -160px; right: -80px;
  background: radial-gradient(circle, rgba(91,76,245,0.75) 0%, transparent 68%);
}
.hero-blob-2 {
  width: 480px; height: 480px;
  bottom: -140px; left: -80px;
  background: radial-gradient(circle, rgba(6,182,212,0.55) 0%, transparent 68%);
}
.hero-blob-3 {
  width: 360px; height: 360px;
  top: 28%; left: 38%;
  background: radial-gradient(circle, rgba(139,92,246,0.42) 0%, transparent 68%);
}

/* ---- Badge variants ---- */
.badge-g2,
.badge-trustpilot,
.badge-linkedin,
.badge-gartner,
.badge-ph,
.badge-twitter,
.badge-reply,
.badge-reddit {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: var(--r-xs);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-g2         { background: #FF492C; color: #fff; }
.badge-trustpilot { background: #00B67A; color: #fff; }
.badge-linkedin   { background: #0A66C2; color: #fff; }
.badge-gartner    { background: #DF2121; color: #fff; }
.badge-ph         { background: #DA552F; color: #fff; }
.badge-twitter    { background: #111;    color: #fff; }
.badge-reply      { background: var(--brand); color: #fff; }
.badge-reddit     { background: #FF4500; color: #fff; }

/* Glass badge for dark hero */
.badge-glass {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: var(--r-xs);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  white-space: nowrap;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(91,76,245,0.28);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(91,76,245,0.34);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  background: transparent;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}

/* White ghost button for dark hero */
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.06);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--r-sm);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.50);
  color: #fff;
  transform: translateY(-1px);
}

/* ---- Section label chip ---- */
.section-label {
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--brand);
  background: var(--brand-light);
  padding: 4px 12px;
  border-radius: var(--r-xs);
}

/* ---- Section headings & subtitles ---- */
.section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--slate);
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ---- Logo marquee ---- */
.logos-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logos-scroll 28s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logo-placeholder {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #CBD5E0;
  flex-shrink: 0;
}
.logo-bullet {
  color: #E2E8F0;
  font-size: 20px;
  margin: 0 28px;
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}
@keyframes logos-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Favicon badges ---- */
.badge-g2 {
  background: #fff1f0;
  border: 1px solid rgba(255,73,44,0.25);
  color: #FF492C;
  gap: 5px;
}
.badge-g2::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url('https://www.g2.com/favicon.ico') center/contain no-repeat;
  flex-shrink: 0;
}
.badge-reddit {
  background: #fff3ef;
  border: 1px solid rgba(255,69,0,0.25);
  color: #CC3700;
  gap: 5px;
}
.badge-reddit::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url('https://www.reddit.com/favicon.ico') center/contain no-repeat;
  flex-shrink: 0;
}
.badge-reply {
  background: #f0eeff;
  border: 1px solid rgba(91,76,245,0.25);
  color: var(--brand);
  gap: 5px;
}
.badge-reply::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url('https://reply.io/favicon.ico') center/contain no-repeat;
  flex-shrink: 0;
}

/* ---- Video lightbox ---- */
.video-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.video-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.video-modal-box { position: relative; width: 90vw; max-width: 840px; background: #000; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.55); }
.video-modal-box iframe { display: block; width: 100%; aspect-ratio: 16/9; border: none; }
.video-modal-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: #fff; font-size: 32px; line-height: 1; cursor: pointer; padding: 4px 8px; opacity: 0.75; transition: opacity 0.15s; }
.video-modal-close:hover { opacity: 1; }

/* ---- Demo video ---- */
.video-wrapper {
  margin-top: 2rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10,37,64,0.16);
  aspect-ratio: 16 / 9;
  background: var(--navy);
}
.video-thumb-link {
  display: block; width: 100%; height: 100%;
  position: relative; overflow: hidden; text-decoration: none;
  border-radius: var(--r-lg); cursor: pointer;
  background: none; border: none; padding: 0;
}
.video-thumb-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center; display: block;
  transition: transform 0.3s ease;
}
.video-thumb-link:hover .video-thumb-img { transform: scale(1.02); }
.play-overlay {
  position: absolute; inset: 0;
  background: rgba(10,37,64,0.45);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s;
  border-radius: var(--r-lg);
}
.video-thumb-link:hover .play-overlay { background: rgba(10,37,64,0.60); }
.play-btn {
  width: 68px; height: 68px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--brand);
  padding-left: 4px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.20);
  transition: transform 0.2s;
}
.video-thumb-link:hover .play-btn { transform: scale(1.06); }
.play-label { color: #fff; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; }
.video-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ---- Reviews masonry grid ---- */
.reviews-masonry {
  columns: 3;
  column-gap: 1.25rem;
}
@media (max-width: 1024px) { .reviews-masonry { columns: 2; } }
@media (max-width: 600px)  { .reviews-masonry { columns: 1; } }

/* ---- Review card ---- */
.review-card {
  break-inside: avoid;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-xs);
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.review-card.hidden { display: none; }

.review-stars {
  color: #F59E0B;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.review-card blockquote {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--navy);
  font-style: normal;
  flex: 1;
  margin: 0 0 14px;
  font-weight: 400;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.reviewer-meta {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}
.review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.source-link {
  font-size: 14px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.15s;
}
.source-link:hover { transform: translateX(2px); }

/* ---- Filter tabs ---- */
.filter-btn {
  padding: 7px 16px;
  border-radius: var(--r-xs);
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ---- Feature cards ---- */
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-icon { font-size: 1.75rem; margin-bottom: 14px; }
.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.feature-quote {
  background: var(--surface);
  border-radius: var(--r-sm);
  padding: 14px;
  border-left: 3px solid var(--brand);
  font-size: 0.8rem;
  color: #374151;
  font-style: italic;
}
.feature-quote p { margin: 6px 0; line-height: 1.5; }

/* ---- Platform cards ---- */
.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: center;
}
.platform-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* ---- Case study cards ---- */
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.case-card p { flex: 1; }
.case-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #06B6D4);
}
.case-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand);
  background: var(--brand-light);
  padding: 3px 9px;
  border-radius: var(--r-xs);
  margin-bottom: 16px;
}
.case-metric {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.035em;
}
.case-metric-label {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 4px;
  margin-bottom: 14px;
}

/* ---- FAQ accordion — clean Stripe-style lines ---- */
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  padding: 18px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] .faq-question::after { content: '−'; }

.faq-answer {
  padding: 0 0 18px;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.75;
}
.faq-answer p { margin-top: 0; }

/* ---- Bottom CTA banner — dark navy with gradient blobs ---- */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(91,76,245,0.45) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(6,182,212,0.35) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* ---- Exit-intent popup ---- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,37,64,0.60);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}
.popup-box {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px 32px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.30s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 40px 80px rgba(10,37,64,0.30);
}
.popup-overlay.is-visible .popup-box {
  transform: scale(1) translateY(0);
}
.popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: var(--r-xs);
  border: none;
  background: var(--surface);
  color: var(--slate);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}
.popup-close:hover { background: var(--border); }
.popup-emoji { font-size: 2.5rem; margin-bottom: 10px; }
.popup-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.popup-body {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 22px;
}
.popup-cta-btn {
  display: block;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: var(--r-sm);
  text-decoration: none;
  margin-bottom: 12px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(91,76,245,0.28);
}
.popup-cta-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}
.popup-dismiss {
  background: none;
  border: none;
  font-size: 0.76rem;
  color: #9CA3AF;
  cursor: pointer;
  padding: 4px 8px;
  text-decoration: underline;
  transition: color 0.15s;
}
.popup-dismiss:hover { color: var(--slate); }

/* ---- Clickable badge chips ---- */
a.badge-g2, a.badge-reply, a.badge-reddit { text-decoration: none; cursor: pointer; }

/* ---- Comparison table ---- */
.comparison-table {
  width: 100%; border-collapse: collapse; font-size: 0.85rem;
  background: #fff; border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), var(--shadow-sm);
}
.comparison-table thead tr { background: var(--navy); color: #fff; }
.comparison-table th { padding: 14px 16px; text-align: left; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.comparison-table th.col-highlight { background: var(--brand); }
.comparison-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--slate); line-height: 1.5; vertical-align: top; }
.comparison-table td:first-child { font-weight: 600; color: var(--navy); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--surface); }
.comparison-table td.col-highlight { background: #F5F3FF; font-weight: 600; color: var(--brand-dark); }
.comparison-table tr:nth-child(even) td.col-highlight { background: var(--brand-light); }
.comparison-table td.val-pos::before { content: "✓ "; color: #059669; font-weight: 700; }
.comparison-table td.val-neg::before { content: "✗ "; color: #DC2626; font-weight: 700; }
.comparison-table td.val-mid::before { content: "~ "; color: #D97706; font-weight: 700; }
@media (max-width: 768px) { .comparison-table { font-size: 0.75rem; } .comparison-table th, .comparison-table td { padding: 10px; } }

/* ---- ROI Calculator ---- */
.roi-card {
  background: #fff; border-radius: var(--r-lg); padding: 40px;
  box-shadow: 0 0 0 1px var(--border), var(--shadow-sm);
}
.roi-inputs { display: grid; gap: 28px; margin-bottom: 36px; }
.roi-input-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.roi-slider-row { display: flex; align-items: center; gap: 16px; }
.roi-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 4px; background: var(--border); border-radius: 2px; outline: none; cursor: pointer; }
.roi-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; background: var(--brand); border-radius: 50%; cursor: pointer; box-shadow: 0 2px 6px rgba(91,76,245,0.40); }
.roi-slider::-moz-range-thumb { width: 20px; height: 20px; background: var(--brand); border-radius: 50%; cursor: pointer; border: none; }
.roi-value { font-size: 1rem; font-weight: 700; color: var(--brand); min-width: 70px; text-align: right; }
.roi-plan-picker { display: flex; gap: 10px; flex-wrap: wrap; }
.roi-plan-btn { padding: 7px 16px; border-radius: var(--r-xs); border: 1.5px solid var(--border); background: #fff; font-size: 0.85rem; font-weight: 600; color: var(--slate); cursor: pointer; transition: all 0.15s; }
.roi-plan-btn.active, .roi-plan-btn:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.roi-output {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  background: var(--navy); border-radius: var(--r-md); padding: 28px;
  margin-bottom: 28px; text-align: center; position: relative; overflow: hidden;
}
.roi-output::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(91,76,245,0.50) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.roi-metric-num { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
.roi-metric-label { font-size: 0.72rem; color: rgba(255,255,255,0.60); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.roi-cta { text-align: center; }
@media (max-width: 640px) { .roi-output { grid-template-columns: 1fr; } .roi-card { padding: 24px; } }

/* ---- Pricing cards ---- */
.pricing-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 28px;
  display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pricing-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.pricing-card.featured { border-color: var(--brand); background: var(--navy); position: relative; }
.pricing-card.featured .pricing-plan-name { color: #fff; }
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-card.featured .pricing-price span { color: rgba(255,255,255,0.55); }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.60); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.80); border-bottom-color: rgba(255,255,255,0.10); }
.pricing-card.featured .pricing-features li::before { color: #34D399; }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: var(--r-xs); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.08em; }
.pricing-plan-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pricing-price { font-size: 2.4rem; font-weight: 800; color: var(--brand); line-height: 1; letter-spacing: -0.03em; }
.pricing-price span { font-size: 0.85rem; font-weight: 500; color: var(--slate); }
.pricing-desc { font-size: 0.85rem; color: var(--slate); margin: 12px 0 20px; line-height: 1.55; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pricing-features li { font-size: 0.85rem; color: #374151; padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: '✓'; color: #059669; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ---- Results by industry cards ---- */
.result-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow-xs); }
.result-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.result-img-wrapper { overflow: hidden; height: 150px; background: var(--surface); cursor: pointer; }
.result-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.3s ease; }
.result-card:hover .result-img-wrapper img { transform: scale(1.02); }
.result-body { padding: 16px; }
.result-industry { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--brand); background: var(--brand-light); padding: 3px 9px; border-radius: var(--r-xs); margin-bottom: 12px; }
.result-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.result-stat { flex: 1; min-width: 60px; }
.result-stat-num { font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.02em; }
.result-stat-label { font-size: 10px; color: var(--muted); margin-top: 2px; line-height: 1.3; }
.result-channel { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: var(--r-xs); margin-bottom: 10px; margin-left: 4px; }
.result-channel-email { background: #DCFCE7; color: #166534; }
.result-channel-linkedin { background: #DBEAFE; color: #1D4ED8; }

/* ---- Platform score row ---- */
.platform-score { display: flex; align-items: center; gap: 6px; }

/* ---- Mid-reviews CTA card ---- */
.review-cta-insert {
  background: var(--navy); border-radius: var(--r-lg); padding: 20px 32px;
  display: grid;
  grid-template-areas: "eyebrow btn" "title btn" "body btn";
  grid-template-columns: 1fr auto;
  column-gap: 32px; row-gap: 10px;
  align-items: center;
  break-inside: avoid; column-span: all; margin-top: 1.25rem; margin-bottom: 1.25rem;
}
.review-cta-eyebrow { grid-area: eyebrow; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin: 0; }
.review-cta-title { grid-area: title; font-size: 1.25rem; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -0.02em; margin: 0; }
.review-cta-body { grid-area: body; font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.5; margin: 0; }
.review-cta-btn { grid-area: btn; display: inline-block; text-align: center; background: #fff; color: var(--brand); font-weight: 700; font-size: 0.875rem; padding: 10px 24px; border-radius: var(--r-sm); text-decoration: none; white-space: nowrap; transition: opacity 0.15s; }
.review-cta-btn:hover { opacity: 0.92; }
@media (max-width: 600px) {
  .review-cta-insert { grid-template-areas: "eyebrow" "title" "body" "btn"; grid-template-columns: 1fr; column-gap: 0; }
}

/* ---- Sticky sidebar ---- */
.sticky-sidebar { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); width: 220px; background: var(--navy); border-radius: var(--r-lg); padding: 20px 16px; z-index: 40; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.sticky-sidebar.is-visible { opacity: 1; pointer-events: auto; }
.sticky-sidebar-title { font-size: 13px; font-weight: 700; color: #fff; margin: 0; }
.sticky-sidebar-desc { font-size: 11px; color: rgba(255,255,255,0.65); line-height: 1.5; margin: 0; }
@media (max-width: 1280px) { .sticky-sidebar { display: none !important; } }
