/* ─── Card ─── */
.lf-card {
  background: #ffffff;
  border: 1px solid #ebebef;
  border-radius: 14px;
  padding: 28px 32px 24px;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.03);
  font-family: inherit;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lf-card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Header ─── */
.lf-header {
  margin-bottom: 24px;
}

.lf-title {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #212B36;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.lf-subtitle {
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  color: #919EAB;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lf-hubspot-logo {
  height: 16px;
  width: auto;
}

/* ─── Rows ─── */
.lf-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lf-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f4f4f6;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease-out, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--row-delay);
}

.lf-row:last-child {
  border-bottom: none;
}

.lf-row-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Label ─── */
.lf-label {
  width: 190px;
  flex-shrink: 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #212B36;
}

/* ─── Bar ─── */
.lf-bar-track {
  flex: 1;
  height: 32px;
  border-radius: 8px;
  background: #f4f5f7;
  overflow: hidden;
  position: relative;
}

.lf-bar {
  width: 0;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #c084fc 0%, #a855f7 50%, #7c3aed 100%);
  transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--bar-delay);
}

.lf-bar-grow {
  width: var(--bar-target);
}

/* ─── Badge ─── */
.lf-badge {
  width: 54px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #f5f0ff;
  border: 1px solid #e9dffc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #7c3aed;
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
  .lf-card {
    padding: 20px 16px;
  }

  .lf-label {
    width: 110px;
    font-size: 13px;
  }

  .lf-bar-track {
    height: 24px;
  }

  .lf-badge {
    width: 48px;
    height: 26px;
    font-size: 12px;
  }

  .lf-row {
    gap: 10px;
    padding: 10px 0;
  }
}

