/* Products landing page (ViKeLaAi Research) */

.research-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.research-hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}

.section {
  padding: 6rem 0;
}

.section--tight {
  padding: 4.5rem 0;
}

.objective-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.objective-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
}

.objective-card--sales {
  border-left: 6px solid var(--primary);
}

.objective-card--risk {
  border-left: 6px solid var(--accent);
}

.objective-eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.55);
  margin-bottom: 0.5rem;
}

.objective-question {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.objective-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.objective-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray);
  font-size: 1.05rem;
}

.objective-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
  flex: 0 0 auto;
}

.objective-goal {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.03);
  color: rgba(15, 23, 42, 0.75);
  font-weight: 600;
}

.features-grid--research {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card .feature-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 1.15rem 1.25rem;
  vertical-align: top;
}

.compare-table thead th {
  font-size: 1.05rem;
  color: white;
}

.compare-table thead th:first-child {
  background: rgba(15, 23, 42, 0.92);
}

.compare-table thead th:last-child {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
}

.compare-table tbody tr:nth-child(even) td {
  background: rgba(2, 6, 23, 0.02);
}

.compare-table tbody td {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--gray);
  font-size: 1.05rem;
}

.compare-table tbody td strong {
  color: var(--secondary);
}

.hero-sidecard {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.08);
}

.hero-sidecard h3 {
  margin-bottom: 0.75rem;
}

.hero-sidecard ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-sidecard li {
  display: flex;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--gray);
}

.hero-sidecard li:last-child {
  border-bottom: none;
}

.hero-sidecard li::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
}

@media (max-width: 900px) {
  .objective-grid {
    grid-template-columns: 1fr;
  }

  .features-grid--research {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 4.5rem 0;
  }

  .compare-table th,
  .compare-table td {
    padding: 1rem;
  }
}

/* ── Trust Bar ─────────────────────────────────────────── */
.trust-bar {
  padding: 4.5rem 0;
  background: #f8fafc;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.trust-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.trust-intro h2 {
  margin-bottom: 1rem;
  color: var(--secondary);
}

.trust-intro p:last-child {
  margin-bottom: 0;
  color: #475569;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}

.trust-item {
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.trust-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.5rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.trust-logo-frame img {
  display: block;
  width: 100%;
  max-width: 11.5rem;
  height: 4.25rem;
  object-fit: contain;
  object-position: center;
  filter: grayscale(12%);
  transition: filter 0.2s, transform 0.2s;
}

.trust-logo-frame img.trust-logo-cyvision {
  transform: scale(1.16);
  transform-origin: center;
}

.trust-item:hover .trust-logo-frame img {
  filter: grayscale(0%);
  transform: translateY(-1px);
}

.trust-item:hover .trust-logo-frame img.trust-logo-cyvision {
  transform: scale(1.16) translateY(-1px);
}

.trust-item .trust-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.trust-item h3 {
  margin-bottom: 0.65rem;
  color: var(--secondary);
}

.trust-item p {
  margin-bottom: 0;
  color: #475569;
  font-size: 1rem;
}

.trust-disclosure {
  max-width: 760px;
  margin: 1.4rem auto 0;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .trust-bar {
    padding: 3.5rem 0;
  }

  .trust-logos {
    grid-template-columns: 1fr;
  }
}
