.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: clamp(0.95rem, 0.92rem + 0.12vw, 1rem);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--lime), var(--lime-strong));
  color: #122118;
  box-shadow: 0 14px 28px rgba(199, 241, 48, 0.28);
}

.btn-secondary {
  background: rgba(18, 33, 24, 0.06);
  color: var(--text);
  border: 1px solid rgba(18, 33, 24, 0.08);
}

.promo-panel .btn-secondary,
.quick-actions-panel .btn-secondary,
.chat-demo-shell .btn-secondary {
  color: #f5f9f4;
  background: rgba(255, 255, 255, 0.08);
}

.illustrated-card {
  display: grid;
  gap: 1rem;
}

.icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 102, 64, 0.1);
}

.icon-box svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--green-700);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-list details summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.faq-list details summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 0.9rem;
}
