/* Branche-landings — extra styling bovenop main.css */

.pain-card {
  display: flex; flex-direction: column;
}
.pain-card .pain-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,59,59,.08); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.pain-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.pain-card p { font-size: .95rem; color: var(--text-soft); margin: 0; line-height: 1.55; }

.example-chat {
  display: flex; flex-direction: column;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.ec-msg {
  display: flex; gap: 10px; max-width: 85%;
}
.ec-msg.ec-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.ec-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.ec-user .ec-avatar { background: var(--bg-3); color: var(--text-soft); }
.ec-bot  .ec-avatar { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #1a1a1a; }

.ec-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: .95rem;
  line-height: 1.55;
}
.ec-user .ec-bubble {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  border-bottom-right-radius: 4px;
}
.ec-bot .ec-bubble {
  background: linear-gradient(135deg, var(--bg-3), rgba(168,85,247,.04));
  border: 1px solid var(--gold-soft);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.roi-tile {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
}
.roi-tile.highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg), rgba(168,85,247,.06));
  box-shadow: 0 8px 24px rgba(168,85,247,.08);
}
.roi-tile-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}
.roi-tile-lbl {
  font-size: .82rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 6px;
}

.integration-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 22px;
}
.int-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 14px;
  font-size: .85rem;
  color: var(--text-soft);
  transition: border-color .15s, color .15s;
}
.int-pill:hover { border-color: var(--gold); color: var(--gold); }
.int-pill i { color: var(--gold); font-size: 11px; }
